diff --git a/grammar.js b/grammar.js index 2190e82..0f5ff88 100644 --- a/grammar.js +++ b/grammar.js @@ -780,19 +780,55 @@ module.exports = grammar(Python, { ), ), - for_statement: $ => + _comprehension_for_clause: $ => + choice($.for_in_clause, + seq(optional("async"), + "for", + $.for_from_loop), + ), + + _comprehension_clauses: $ => seq( + $._comprehension_for_clause, + repeat(choice( + $._comprehension_for_clause, + $.if_clause, + )), + ), + + for_in_loop: $ => seq( - optional("async"), - "for", - optional(seq( - field("left", $._left_hand_side), - choice("in", "from"), - )), - field("right", $._expressions), + field("left", $._left_hand_side), + "in", + field("right", commaSep1($.primary_expression)), + ), + + for_from_relation: $ => + choice("<", "<=", ">", ">="), + + for_from_loop: $ => + seq( + optional( + seq( + field("left", $.identifier), + "from", + ), + ), + field("lower", choice($.primary_expression)), + $.for_from_relation, + field("var", $.identifier), + $.for_from_relation, + field("upper", choice($.primary_expression)), optional(seq( "by", $._expressions, )), + ), + + for_statement: $ => + seq( + optional("async"), + "for", + choice($.for_from_loop, $.for_in_loop), ":", field("body", $._suite), field("alternative", optional($.else_clause)), diff --git a/queries/locals.scm b/queries/locals.scm index eac828e..ec038f7 100644 --- a/queries/locals.scm +++ b/queries/locals.scm @@ -65,15 +65,15 @@ ; Loops ; not a scope! -(for_statement +(for_in_loop left: (pattern_list (identifier) @local.definition)) -(for_statement +(for_in_loop left: (tuple_pattern (identifier) @local.definition)) -(for_statement +(for_in_loop left: (identifier) @local.definition) ; not a scope! diff --git a/src/grammar.json b/src/grammar.json index d47d7cd..27252bb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1178,62 +1178,12 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_left_hand_side" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "STRING", - "value": "from" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expressions" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "by" - }, - { - "type": "SYMBOL", - "name": "_expressions" - } - ] + "type": "SYMBOL", + "name": "for_from_loop" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "for_in_loop" } ] }, @@ -5560,7 +5510,7 @@ "members": [ { "type": "SYMBOL", - "name": "for_in_clause" + "name": "_comprehension_for_clause" }, { "type": "REPEAT", @@ -5569,7 +5519,7 @@ "members": [ { "type": "SYMBOL", - "name": "for_in_clause" + "name": "_comprehension_for_clause" }, { "type": "SYMBOL", @@ -9590,6 +9540,200 @@ } ] } + }, + "_comprehension_for_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "for_in_clause" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "SYMBOL", + "name": "for_from_loop" + } + ] + } + ] + }, + "for_in_loop": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_left_hand_side" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + } + ] + } + } + ] + }, + "for_from_relation": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": ">=" + } + ] + }, + "for_from_loop": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "from" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "lower", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "for_from_relation" + }, + { + "type": "FIELD", + "name": "var", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "for_from_relation" + }, + { + "type": "FIELD", + "name": "upper", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "by" + }, + { + "type": "SYMBOL", + "name": "_expressions" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] } }, "extras": [ diff --git a/src/node-types.json b/src/node-types.json index b09e41f..f6fc5a1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2012,8 +2012,12 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ + { + "type": "for_from_loop", + "named": true + }, { "type": "for_in_clause", "named": true @@ -2373,6 +2377,75 @@ ] } }, + { + "type": "for_from_loop", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "lower": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + }, + "upper": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + }, + "var": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + }, + { + "type": "for_from_relation", + "named": true + } + ] + } + }, + { + "type": "for_from_relation", + "named": true, + "fields": {} + }, { "type": "for_in_clause", "named": true, @@ -2408,53 +2481,59 @@ } }, { - "type": "for_statement", + "type": "for_in_loop", "named": true, "fields": { - "alternative": { + "left": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "else_clause", + "type": "pattern", + "named": true + }, + { + "type": "pattern_list", "named": true } ] }, - "body": { - "multiple": false, + "right": { + "multiple": true, "required": true, "types": [ { - "type": "block", + "type": ",", + "named": false + }, + { + "type": "primary_expression", "named": true } ] - }, - "left": { + } + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "alternative": { "multiple": false, "required": false, "types": [ { - "type": "pattern", - "named": true - }, - { - "type": "pattern_list", + "type": "else_clause", "named": true } ] }, - "right": { + "body": { "multiple": false, "required": true, "types": [ { - "type": "expression", - "named": true - }, - { - "type": "expression_list", + "type": "block", "named": true } ] @@ -2462,14 +2541,14 @@ }, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "expression", + "type": "for_from_loop", "named": true }, { - "type": "expression_list", + "type": "for_in_loop", "named": true } ] @@ -2665,8 +2744,12 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ + { + "type": "for_from_loop", + "named": true + }, { "type": "for_in_clause", "named": true @@ -3120,8 +3203,12 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ + { + "type": "for_from_loop", + "named": true + }, { "type": "for_in_clause", "named": true @@ -3720,8 +3807,12 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ + { + "type": "for_from_loop", + "named": true + }, { "type": "for_in_clause", "named": true diff --git a/src/parser.c b/src/parser.c index daac9be..2a99bf1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7000 -#define LARGE_STATE_COUNT 2192 -#define SYMBOL_COUNT 424 +#define STATE_COUNT 7344 +#define LARGE_STATE_COUNT 2212 +#define SYMBOL_COUNT 429 #define ALIAS_COUNT 3 #define TOKEN_COUNT 184 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 33 +#define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 280 +#define PRODUCTION_ID_COUNT 255 enum ts_symbol_identifiers { sym_identifier = 1, @@ -54,152 +54,152 @@ enum ts_symbol_identifiers { anon_sym_case = 28, anon_sym_async = 29, anon_sym_for = 30, - anon_sym_in = 31, - anon_sym_by = 32, - anon_sym_while = 33, - anon_sym_try = 34, - anon_sym_except = 35, - anon_sym_except_STAR = 36, - anon_sym_finally = 37, - anon_sym_with = 38, - anon_sym_def = 39, - anon_sym_DASH_GT = 40, - anon_sym_STAR_STAR = 41, - anon_sym_global = 42, - anon_sym_nonlocal = 43, - anon_sym_exec = 44, - anon_sym_type = 45, - anon_sym_EQ = 46, - anon_sym_class = 47, - anon_sym_LBRACK = 48, - anon_sym_RBRACK = 49, - anon_sym_AT = 50, - anon_sym_DASH = 51, - anon_sym__ = 52, - anon_sym_PIPE = 53, - anon_sym_LBRACE = 54, - anon_sym_RBRACE = 55, - anon_sym_PLUS = 56, - anon_sym_not = 57, - anon_sym_and = 58, - anon_sym_or = 59, - anon_sym_SLASH = 60, - anon_sym_PERCENT = 61, - anon_sym_SLASH_SLASH = 62, - anon_sym_AMP = 63, - anon_sym_CARET = 64, - anon_sym_LT_LT = 65, - anon_sym_TILDE = 66, - anon_sym_is = 67, - anon_sym_LT = 68, - anon_sym_LT_EQ = 69, - anon_sym_EQ_EQ = 70, - anon_sym_BANG_EQ = 71, - anon_sym_GT_EQ = 72, - anon_sym_GT = 73, - anon_sym_LT_GT = 74, - anon_sym_lambda = 75, - anon_sym_PLUS_EQ = 76, - anon_sym_DASH_EQ = 77, - anon_sym_STAR_EQ = 78, - anon_sym_SLASH_EQ = 79, - anon_sym_AT_EQ = 80, - anon_sym_SLASH_SLASH_EQ = 81, - anon_sym_PERCENT_EQ = 82, - anon_sym_STAR_STAR_EQ = 83, - anon_sym_GT_GT_EQ = 84, - anon_sym_LT_LT_EQ = 85, - anon_sym_AMP_EQ = 86, - anon_sym_CARET_EQ = 87, - anon_sym_PIPE_EQ = 88, - anon_sym_yield = 89, - anon_sym_DOT_DOT_DOT = 90, - anon_sym_None = 91, - sym_escape_sequence = 92, - anon_sym_BSLASH = 93, - aux_sym_format_specifier_token1 = 94, - sym_type_conversion = 95, - 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, + anon_sym_while = 31, + anon_sym_try = 32, + anon_sym_except = 33, + anon_sym_except_STAR = 34, + anon_sym_finally = 35, + anon_sym_with = 36, + anon_sym_def = 37, + anon_sym_DASH_GT = 38, + anon_sym_STAR_STAR = 39, + anon_sym_global = 40, + anon_sym_nonlocal = 41, + anon_sym_exec = 42, + anon_sym_in = 43, + anon_sym_type = 44, + anon_sym_EQ = 45, + anon_sym_class = 46, + anon_sym_LBRACK = 47, + anon_sym_RBRACK = 48, + anon_sym_AT = 49, + anon_sym_DASH = 50, + anon_sym__ = 51, + anon_sym_PIPE = 52, + anon_sym_LBRACE = 53, + anon_sym_RBRACE = 54, + anon_sym_PLUS = 55, + anon_sym_not = 56, + anon_sym_and = 57, + anon_sym_or = 58, + anon_sym_SLASH = 59, + anon_sym_PERCENT = 60, + anon_sym_SLASH_SLASH = 61, + anon_sym_AMP = 62, + anon_sym_CARET = 63, + anon_sym_LT_LT = 64, + anon_sym_TILDE = 65, + anon_sym_is = 66, + anon_sym_LT = 67, + anon_sym_LT_EQ = 68, + anon_sym_EQ_EQ = 69, + anon_sym_BANG_EQ = 70, + anon_sym_GT_EQ = 71, + anon_sym_GT = 72, + anon_sym_LT_GT = 73, + anon_sym_lambda = 74, + anon_sym_PLUS_EQ = 75, + anon_sym_DASH_EQ = 76, + anon_sym_STAR_EQ = 77, + anon_sym_SLASH_EQ = 78, + anon_sym_AT_EQ = 79, + anon_sym_SLASH_SLASH_EQ = 80, + anon_sym_PERCENT_EQ = 81, + anon_sym_STAR_STAR_EQ = 82, + anon_sym_GT_GT_EQ = 83, + anon_sym_LT_LT_EQ = 84, + anon_sym_AMP_EQ = 85, + anon_sym_CARET_EQ = 86, + anon_sym_PIPE_EQ = 87, + anon_sym_yield = 88, + anon_sym_DOT_DOT_DOT = 89, + anon_sym_None = 90, + sym_escape_sequence = 91, + anon_sym_BSLASH = 92, + aux_sym_format_specifier_token1 = 93, + sym_type_conversion = 94, + anon_sym_0x = 95, + anon_sym_0X = 96, + aux_sym_integer_token1 = 97, + anon_sym_0o = 98, + anon_sym_0O = 99, + aux_sym_integer_token2 = 100, + anon_sym_0b = 101, + anon_sym_0B = 102, + aux_sym_integer_token3 = 103, + aux_sym_integer_token4 = 104, + aux_sym_integer_token5 = 105, + sym_float = 106, + anon_sym_await = 107, + anon_sym_api = 108, + sym_true = 109, + sym_false = 110, + sym_comment = 111, + sym_line_continuation = 112, + anon_sym_PYTHON = 113, + aux_sym_run_directive_token1 = 114, + sym_c_integer_signedness = 115, + aux_sym_c_integer_type_token1 = 116, + anon_sym_object = 117, + anon_sym_property = 118, + anon_sym_include = 119, + anon_sym_DEF = 120, + anon_sym_IF = 121, + anon_sym_ELIF = 122, + anon_sym_ELSE = 123, + anon_sym_cdef = 124, + anon_sym_cpdef = 125, + anon_sym_extern = 126, + anon_sym_namespace = 127, + anon_sym_nogil = 128, + anon_sym_int = 129, + anon_sym_double = 130, + anon_sym_complex = 131, + anon_sym_operator = 132, + anon_sym_co_await = 133, + anon_sym_BANG = 134, + anon_sym_LT_EQ_GT = 135, + anon_sym_AMP_AMP = 136, + anon_sym_PIPE_PIPE = 137, + anon_sym_PLUS_PLUS = 138, + anon_sym_DASH_DASH = 139, + anon_sym_DASH_GT_STAR = 140, + anon_sym_LPAREN_RPAREN = 141, + anon_sym_LBRACK_RBRACK = 142, + anon_sym_xor = 143, + anon_sym_bitand = 144, + anon_sym_bitor = 145, + anon_sym_compl = 146, + anon_sym_xor_eq = 147, + anon_sym_and_eq = 148, + anon_sym_or_eq = 149, + anon_sym_not_eq = 150, + anon_sym_new = 151, + anon_sym_delete = 152, + anon_sym_DQUOTE_DQUOTE = 153, + anon_sym_signed = 154, + anon_sym_unsigned = 155, + anon_sym_char = 156, + anon_sym_short = 157, + anon_sym_long = 158, + anon_sym_const = 159, + anon_sym_volatile = 160, + anon_sym___stdcall = 161, + anon_sym_ctypedef = 162, + anon_sym_gil = 163, + anon_sym_QMARK = 164, + anon_sym_noexcept = 165, + anon_sym_struct = 166, + anon_sym_union = 167, + anon_sym_enum = 168, + anon_sym_cppclass = 169, + anon_sym_fused = 170, + anon_sym_public = 171, + anon_sym_packed = 172, + anon_sym_inline = 173, + anon_sym_readonly = 174, + anon_sym_sizeof = 175, + anon_sym_by = 176, sym__newline = 177, sym__indent = 178, sym__dedent = 179, @@ -393,63 +393,68 @@ enum ts_symbol_identifiers { 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, + sym__comprehension_for_clause = 370, + sym_for_in_loop = 371, + sym_for_from_relation = 372, + sym_for_from_loop = 373, + aux_sym_module_repeat1 = 374, + aux_sym__simple_statements_repeat1 = 375, + aux_sym_import_prefix_repeat1 = 376, + aux_sym__import_list_repeat1 = 377, + aux_sym_print_statement_repeat1 = 378, + aux_sym_assert_statement_repeat1 = 379, + aux_sym_if_statement_repeat1 = 380, + aux_sym_match_statement_repeat1 = 381, + aux_sym__match_block_repeat1 = 382, + aux_sym_case_clause_repeat1 = 383, + aux_sym_try_statement_repeat1 = 384, + aux_sym_try_statement_repeat2 = 385, + aux_sym_with_clause_repeat1 = 386, + aux_sym_global_statement_repeat1 = 387, + aux_sym_class_definition_repeat1 = 388, + aux_sym_class_definition_repeat2 = 389, + aux_sym_type_parameter_repeat1 = 390, + aux_sym_argument_list_repeat1 = 391, + aux_sym_decorated_definition_repeat1 = 392, + aux_sym_union_pattern_repeat1 = 393, + aux_sym_dict_pattern_repeat1 = 394, + aux_sym__parameters_repeat1 = 395, + aux_sym__patterns_repeat1 = 396, + aux_sym_comparison_operator_repeat1 = 397, + aux_sym_subscript_repeat1 = 398, + aux_sym_dictionary_repeat1 = 399, + aux_sym__comprehension_clauses_repeat1 = 400, + aux_sym__collection_elements_repeat1 = 401, + aux_sym_for_in_clause_repeat1 = 402, + aux_sym_concatenated_string_repeat1 = 403, + aux_sym_string_repeat1 = 404, + aux_sym_string_content_repeat1 = 405, + aux_sym_format_specifier_repeat1 = 406, + aux_sym_integer_repeat1 = 407, + aux_sym_integer_repeat2 = 408, + aux_sym_integer_repeat3 = 409, + aux_sym_integer_repeat4 = 410, + aux_sym_external_definition_repeat1 = 411, + aux_sym_IF_statement_repeat1 = 412, + aux_sym_cdef_definition_block_repeat1 = 413, + aux_sym_cvar_def_repeat1 = 414, + aux_sym_extern_suite_repeat1 = 415, + aux_sym_cvar_decl_repeat1 = 416, + aux_sym_cvar_decl_repeat2 = 417, + aux_sym_function_pointer_type_repeat1 = 418, + aux_sym_c_type_repeat1 = 419, + aux_sym_type_qualifier_repeat1 = 420, + aux_sym_type_index_repeat1 = 421, + aux_sym_type_index_repeat2 = 422, + aux_sym_template_params_repeat1 = 423, + aux_sym__typedargslist_repeat1 = 424, + aux_sym_struct_suite_repeat1 = 425, + aux_sym__cppclass_suite_repeat1 = 426, + aux_sym_fused_repeat1 = 427, + aux_sym_for_in_loop_repeat1 = 428, + alias_sym_as_pattern_target = 429, + alias_sym_format_expression = 430, + anon_alias_sym_longlong = 431, }; static const char * const ts_symbol_names[] = { @@ -484,8 +489,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_case] = "case", [anon_sym_async] = "async", [anon_sym_for] = "for", - [anon_sym_in] = "in", - [anon_sym_by] = "by", [anon_sym_while] = "while", [anon_sym_try] = "try", [anon_sym_except] = "except", @@ -498,6 +501,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_global] = "global", [anon_sym_nonlocal] = "nonlocal", [anon_sym_exec] = "exec", + [anon_sym_in] = "in", [anon_sym_type] = "type", [anon_sym_EQ] = "=", [anon_sym_class] = "class", @@ -630,6 +634,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_inline] = "inline", [anon_sym_readonly] = "readonly", [anon_sym_sizeof] = "sizeof", + [anon_sym_by] = "by", [sym__newline] = "_newline", [sym__indent] = "_indent", [sym__dedent] = "_dedent", @@ -823,6 +828,10 @@ static const char * const ts_symbol_names[] = { [sym_new_expression] = "new_expression", [sym_sizeof_expression] = "sizeof_expression", [sym_cast_expression] = "cast_expression", + [sym__comprehension_for_clause] = "_comprehension_for_clause", + [sym_for_in_loop] = "for_in_loop", + [sym_for_from_relation] = "for_from_relation", + [sym_for_from_loop] = "for_from_loop", [aux_sym_module_repeat1] = "module_repeat1", [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", [aux_sym_import_prefix_repeat1] = "import_prefix_repeat1", @@ -877,6 +886,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_struct_suite_repeat1] = "struct_suite_repeat1", [aux_sym__cppclass_suite_repeat1] = "_cppclass_suite_repeat1", [aux_sym_fused_repeat1] = "fused_repeat1", + [aux_sym_for_in_loop_repeat1] = "for_in_loop_repeat1", [alias_sym_as_pattern_target] = "as_pattern_target", [alias_sym_format_expression] = "format_expression", [anon_alias_sym_longlong] = "long long", @@ -914,8 +924,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_case] = anon_sym_case, [anon_sym_async] = anon_sym_async, [anon_sym_for] = anon_sym_for, - [anon_sym_in] = anon_sym_in, - [anon_sym_by] = anon_sym_by, [anon_sym_while] = anon_sym_while, [anon_sym_try] = anon_sym_try, [anon_sym_except] = anon_sym_except, @@ -928,6 +936,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_global] = anon_sym_global, [anon_sym_nonlocal] = anon_sym_nonlocal, [anon_sym_exec] = anon_sym_exec, + [anon_sym_in] = anon_sym_in, [anon_sym_type] = anon_sym_type, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_class] = anon_sym_class, @@ -1060,6 +1069,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_inline] = anon_sym_inline, [anon_sym_readonly] = anon_sym_readonly, [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym_by] = anon_sym_by, [sym__newline] = sym__newline, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, @@ -1253,6 +1263,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_new_expression] = sym_new_expression, [sym_sizeof_expression] = sym_sizeof_expression, [sym_cast_expression] = sym_cast_expression, + [sym__comprehension_for_clause] = sym__comprehension_for_clause, + [sym_for_in_loop] = sym_for_in_loop, + [sym_for_from_relation] = sym_for_from_relation, + [sym_for_from_loop] = sym_for_from_loop, [aux_sym_module_repeat1] = aux_sym_module_repeat1, [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, [aux_sym_import_prefix_repeat1] = aux_sym_import_prefix_repeat1, @@ -1307,6 +1321,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_struct_suite_repeat1] = aux_sym_struct_suite_repeat1, [aux_sym__cppclass_suite_repeat1] = aux_sym__cppclass_suite_repeat1, [aux_sym_fused_repeat1] = aux_sym_fused_repeat1, + [aux_sym_for_in_loop_repeat1] = aux_sym_for_in_loop_repeat1, [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, [alias_sym_format_expression] = alias_sym_format_expression, [anon_alias_sym_longlong] = anon_alias_sym_longlong, @@ -1437,14 +1452,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_by] = { - .visible = true, - .named = false, - }, [anon_sym_while] = { .visible = true, .named = false, @@ -1493,6 +1500,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, [anon_sym_type] = { .visible = true, .named = false, @@ -2021,6 +2032,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_by] = { + .visible = true, + .named = false, + }, [sym__newline] = { .visible = false, .named = true, @@ -2797,6 +2812,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__comprehension_for_clause] = { + .visible = false, + .named = true, + }, + [sym_for_in_loop] = { + .visible = true, + .named = true, + }, + [sym_for_from_relation] = { + .visible = true, + .named = true, + }, + [sym_for_from_loop] = { + .visible = true, + .named = true, + }, [aux_sym_module_repeat1] = { .visible = false, .named = false, @@ -3013,6 +3044,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_for_in_loop_repeat1] = { + .visible = false, + .named = false, + }, [alias_sym_as_pattern_target] = { .visible = true, .named = true, @@ -3045,22 +3080,25 @@ enum ts_field_identifiers { field_guard = 15, field_key = 16, field_left = 17, - field_module_name = 18, - field_name = 19, - field_name_specification = 20, - field_object = 21, - field_operator = 22, - field_operators = 23, - field_parameters = 24, - field_return_type = 25, - field_right = 26, - field_subject = 27, - field_subscript = 28, - field_superclasses = 29, - field_type = 30, - field_type_conversion = 31, - field_type_parameters = 32, - field_value = 33, + field_lower = 18, + field_module_name = 19, + field_name = 20, + field_name_specification = 21, + field_object = 22, + field_operator = 23, + field_operators = 24, + field_parameters = 25, + field_return_type = 26, + field_right = 27, + field_subject = 28, + field_subscript = 29, + field_superclasses = 30, + field_type = 31, + field_type_conversion = 32, + field_type_parameters = 33, + field_upper = 34, + field_value = 35, + field_var = 36, }; static const char * const ts_field_names[] = { @@ -3082,6 +3120,7 @@ static const char * const ts_field_names[] = { [field_guard] = "guard", [field_key] = "key", [field_left] = "left", + [field_lower] = "lower", [field_module_name] = "module_name", [field_name] = "name", [field_name_specification] = "name_specification", @@ -3097,7 +3136,9 @@ static const char * const ts_field_names[] = { [field_type] = "type", [field_type_conversion] = "type_conversion", [field_type_parameters] = "type_parameters", + [field_upper] = "upper", [field_value] = "value", + [field_var] = "var", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { @@ -3141,229 +3182,204 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [43] = {.index = 55, .length = 1}, [44] = {.index = 56, .length = 3}, [45] = {.index = 59, .length = 2}, - [46] = {.index = 61, .length = 2}, - [47] = {.index = 63, .length = 2}, + [46] = {.index = 61, .length = 1}, + [47] = {.index = 62, .length = 2}, [48] = {.index = 22, .length = 1}, - [49] = {.index = 65, .length = 1}, + [49] = {.index = 64, .length = 2}, [50] = {.index = 66, .length = 2}, [51] = {.index = 68, .length = 2}, - [52] = {.index = 70, .length = 2}, - [53] = {.index = 72, .length = 1}, + [52] = {.index = 70, .length = 1}, + [53] = {.index = 71, .length = 2}, [54] = {.index = 73, .length = 2}, - [55] = {.index = 75, .length = 2}, - [57] = {.index = 77, .length = 2}, - [59] = {.index = 79, .length = 2}, - [60] = {.index = 81, .length = 1}, - [61] = {.index = 82, .length = 2}, + [56] = {.index = 75, .length = 2}, + [58] = {.index = 77, .length = 2}, + [59] = {.index = 79, .length = 1}, + [60] = {.index = 80, .length = 2}, + [62] = {.index = 82, .length = 2}, [63] = {.index = 84, .length = 2}, - [64] = {.index = 86, .length = 2}, - [65] = {.index = 88, .length = 1}, - [66] = {.index = 89, .length = 3}, - [67] = {.index = 92, .length = 3}, - [68] = {.index = 95, .length = 3}, - [69] = {.index = 98, .length = 3}, - [70] = {.index = 101, .length = 4}, - [71] = {.index = 105, .length = 2}, - [72] = {.index = 107, .length = 1}, - [73] = {.index = 108, .length = 3}, + [64] = {.index = 86, .length = 1}, + [65] = {.index = 87, .length = 3}, + [66] = {.index = 90, .length = 3}, + [67] = {.index = 93, .length = 3}, + [68] = {.index = 96, .length = 3}, + [69] = {.index = 99, .length = 4}, + [70] = {.index = 103, .length = 1}, + [71] = {.index = 104, .length = 3}, + [72] = {.index = 107, .length = 2}, + [73] = {.index = 109, .length = 2}, [74] = {.index = 111, .length = 3}, [75] = {.index = 114, .length = 3}, - [76] = {.index = 117, .length = 3}, - [77] = {.index = 120, .length = 2}, - [78] = {.index = 122, .length = 2}, - [79] = {.index = 124, .length = 3}, - [80] = {.index = 127, .length = 3}, - [81] = {.index = 130, .length = 3}, + [76] = {.index = 117, .length = 2}, + [77] = {.index = 119, .length = 3}, + [78] = {.index = 122, .length = 3}, + [79] = {.index = 125, .length = 3}, + [80] = {.index = 128, .length = 3}, + [81] = {.index = 131, .length = 2}, [82] = {.index = 133, .length = 3}, [83] = {.index = 136, .length = 2}, - [84] = {.index = 138, .length = 3}, - [85] = {.index = 141, .length = 2}, - [86] = {.index = 143, .length = 2}, - [87] = {.index = 34, .length = 1}, - [89] = {.index = 145, .length = 1}, - [90] = {.index = 146, .length = 2}, - [91] = {.index = 148, .length = 3}, - [92] = {.index = 25, .length = 2}, - [93] = {.index = 151, .length = 1}, - [94] = {.index = 152, .length = 3}, - [95] = {.index = 155, .length = 2}, - [96] = {.index = 157, .length = 2}, - [97] = {.index = 159, .length = 2}, - [98] = {.index = 161, .length = 2}, - [99] = {.index = 163, .length = 2}, - [100] = {.index = 165, .length = 3}, - [101] = {.index = 168, .length = 1}, - [102] = {.index = 169, .length = 2}, - [103] = {.index = 171, .length = 2}, - [104] = {.index = 173, .length = 4}, - [105] = {.index = 177, .length = 2}, - [106] = {.index = 179, .length = 4}, + [84] = {.index = 138, .length = 2}, + [85] = {.index = 34, .length = 1}, + [87] = {.index = 140, .length = 1}, + [88] = {.index = 141, .length = 2}, + [89] = {.index = 143, .length = 3}, + [90] = {.index = 25, .length = 2}, + [91] = {.index = 146, .length = 1}, + [92] = {.index = 147, .length = 3}, + [93] = {.index = 150, .length = 2}, + [94] = {.index = 152, .length = 2}, + [95] = {.index = 154, .length = 2}, + [96] = {.index = 156, .length = 2}, + [97] = {.index = 158, .length = 2}, + [98] = {.index = 160, .length = 3}, + [99] = {.index = 163, .length = 1}, + [100] = {.index = 164, .length = 2}, + [101] = {.index = 166, .length = 2}, + [102] = {.index = 168, .length = 4}, + [103] = {.index = 172, .length = 2}, + [104] = {.index = 174, .length = 4}, + [105] = {.index = 178, .length = 4}, + [106] = {.index = 182, .length = 1}, [107] = {.index = 183, .length = 4}, - [108] = {.index = 187, .length = 1}, - [109] = {.index = 188, .length = 4}, - [110] = {.index = 192, .length = 3}, - [111] = {.index = 195, .length = 3}, - [112] = {.index = 198, .length = 2}, - [113] = {.index = 200, .length = 3}, - [114] = {.index = 203, .length = 4}, - [115] = {.index = 207, .length = 2}, - [116] = {.index = 209, .length = 3}, - [117] = {.index = 212, .length = 4}, - [118] = {.index = 216, .length = 4}, - [119] = {.index = 220, .length = 4}, - [120] = {.index = 224, .length = 2}, - [121] = {.index = 226, .length = 4}, - [122] = {.index = 230, .length = 4}, - [123] = {.index = 234, .length = 4}, - [124] = {.index = 238, .length = 3}, - [125] = {.index = 241, .length = 3}, - [126] = {.index = 244, .length = 3}, - [127] = {.index = 247, .length = 3}, - [128] = {.index = 250, .length = 2}, - [129] = {.index = 252, .length = 2}, - [131] = {.index = 254, .length = 1}, - [132] = {.index = 255, .length = 2}, - [133] = {.index = 257, .length = 1}, - [134] = {.index = 258, .length = 3}, - [135] = {.index = 261, .length = 3}, - [136] = {.index = 264, .length = 3}, - [137] = {.index = 267, .length = 2}, - [138] = {.index = 269, .length = 3}, - [139] = {.index = 272, .length = 2}, - [140] = {.index = 274, .length = 3}, - [141] = {.index = 277, .length = 5}, - [142] = {.index = 282, .length = 4}, - [143] = {.index = 286, .length = 2}, - [144] = {.index = 288, .length = 3}, - [145] = {.index = 291, .length = 4}, - [146] = {.index = 295, .length = 4}, - [147] = {.index = 299, .length = 3}, - [148] = {.index = 302, .length = 3}, - [149] = {.index = 305, .length = 4}, - [150] = {.index = 309, .length = 4}, - [151] = {.index = 313, .length = 4}, - [152] = {.index = 317, .length = 5}, - [153] = {.index = 322, .length = 2}, - [154] = {.index = 324, .length = 5}, - [155] = {.index = 329, .length = 2}, - [156] = {.index = 331, .length = 4}, - [157] = {.index = 335, .length = 4}, - [158] = {.index = 339, .length = 4}, - [159] = {.index = 343, .length = 2}, - [161] = {.index = 345, .length = 1}, - [162] = {.index = 346, .length = 2}, - [163] = {.index = 348, .length = 2}, - [164] = {.index = 350, .length = 2}, - [165] = {.index = 352, .length = 1}, - [166] = {.index = 353, .length = 2}, - [167] = {.index = 355, .length = 4}, + [108] = {.index = 187, .length = 2}, + [109] = {.index = 189, .length = 2}, + [110] = {.index = 191, .length = 3}, + [111] = {.index = 194, .length = 3}, + [112] = {.index = 197, .length = 3}, + [113] = {.index = 200, .length = 4}, + [114] = {.index = 204, .length = 4}, + [115] = {.index = 208, .length = 4}, + [116] = {.index = 212, .length = 2}, + [117] = {.index = 214, .length = 4}, + [118] = {.index = 218, .length = 4}, + [119] = {.index = 222, .length = 4}, + [120] = {.index = 226, .length = 3}, + [121] = {.index = 229, .length = 3}, + [122] = {.index = 232, .length = 3}, + [123] = {.index = 235, .length = 3}, + [124] = {.index = 238, .length = 2}, + [125] = {.index = 240, .length = 2}, + [127] = {.index = 242, .length = 1}, + [128] = {.index = 243, .length = 2}, + [129] = {.index = 245, .length = 1}, + [130] = {.index = 246, .length = 3}, + [131] = {.index = 249, .length = 3}, + [132] = {.index = 252, .length = 3}, + [133] = {.index = 255, .length = 2}, + [134] = {.index = 257, .length = 3}, + [135] = {.index = 260, .length = 2}, + [136] = {.index = 262, .length = 3}, + [137] = {.index = 265, .length = 5}, + [138] = {.index = 270, .length = 3}, + [139] = {.index = 273, .length = 4}, + [140] = {.index = 277, .length = 4}, + [141] = {.index = 281, .length = 4}, + [142] = {.index = 285, .length = 5}, + [143] = {.index = 290, .length = 2}, + [144] = {.index = 292, .length = 5}, + [145] = {.index = 297, .length = 2}, + [146] = {.index = 299, .length = 4}, + [147] = {.index = 303, .length = 4}, + [148] = {.index = 307, .length = 4}, + [149] = {.index = 311, .length = 2}, + [151] = {.index = 313, .length = 1}, + [152] = {.index = 314, .length = 2}, + [153] = {.index = 316, .length = 2}, + [154] = {.index = 318, .length = 2}, + [155] = {.index = 320, .length = 1}, + [156] = {.index = 321, .length = 2}, + [157] = {.index = 323, .length = 4}, + [158] = {.index = 327, .length = 4}, + [159] = {.index = 331, .length = 4}, + [160] = {.index = 335, .length = 3}, + [161] = {.index = 338, .length = 3}, + [162] = {.index = 341, .length = 3}, + [163] = {.index = 344, .length = 3}, + [164] = {.index = 347, .length = 2}, + [165] = {.index = 349, .length = 1}, + [166] = {.index = 350, .length = 4}, + [167] = {.index = 354, .length = 5}, [168] = {.index = 359, .length = 4}, - [169] = {.index = 363, .length = 4}, - [170] = {.index = 367, .length = 3}, - [171] = {.index = 370, .length = 3}, - [172] = {.index = 373, .length = 3}, - [173] = {.index = 376, .length = 3}, - [174] = {.index = 379, .length = 2}, - [175] = {.index = 381, .length = 1}, - [176] = {.index = 382, .length = 3}, - [177] = {.index = 385, .length = 3}, - [178] = {.index = 388, .length = 4}, - [179] = {.index = 392, .length = 4}, - [180] = {.index = 396, .length = 4}, - [181] = {.index = 400, .length = 5}, - [182] = {.index = 405, .length = 4}, - [183] = {.index = 409, .length = 5}, - [184] = {.index = 414, .length = 3}, - [185] = {.index = 417, .length = 5}, - [186] = {.index = 422, .length = 5}, - [187] = {.index = 427, .length = 3}, - [188] = {.index = 430, .length = 3}, - [189] = {.index = 433, .length = 3}, - [190] = {.index = 436, .length = 2}, - [191] = {.index = 438, .length = 5}, - [193] = {.index = 443, .length = 2}, - [194] = {.index = 445, .length = 1}, - [195] = {.index = 446, .length = 2}, - [196] = {.index = 448, .length = 3}, - [197] = {.index = 451, .length = 2}, - [198] = {.index = 453, .length = 2}, - [199] = {.index = 455, .length = 2}, - [200] = {.index = 457, .length = 5}, - [201] = {.index = 462, .length = 2}, - [202] = {.index = 464, .length = 4}, - [203] = {.index = 468, .length = 4}, - [204] = {.index = 472, .length = 4}, - [205] = {.index = 476, .length = 4}, - [206] = {.index = 480, .length = 4}, - [207] = {.index = 484, .length = 2}, - [208] = {.index = 486, .length = 1}, - [209] = {.index = 487, .length = 2}, - [210] = {.index = 489, .length = 2}, - [211] = {.index = 491, .length = 4}, - [212] = {.index = 495, .length = 5}, - [213] = {.index = 500, .length = 3}, - [214] = {.index = 503, .length = 5}, - [215] = {.index = 508, .length = 5}, - [216] = {.index = 513, .length = 4}, - [217] = {.index = 517, .length = 4}, - [218] = {.index = 521, .length = 6}, - [219] = {.index = 527, .length = 4}, - [220] = {.index = 531, .length = 4}, - [221] = {.index = 535, .length = 4}, - [222] = {.index = 539, .length = 3}, - [223] = {.index = 542, .length = 3}, - [224] = {.index = 545, .length = 3}, - [226] = {.index = 548, .length = 2}, - [227] = {.index = 550, .length = 2}, - [228] = {.index = 552, .length = 1}, - [229] = {.index = 553, .length = 3}, - [230] = {.index = 556, .length = 2}, - [231] = {.index = 558, .length = 3}, - [232] = {.index = 561, .length = 3}, - [233] = {.index = 564, .length = 3}, - [234] = {.index = 567, .length = 3}, - [235] = {.index = 570, .length = 2}, - [236] = {.index = 572, .length = 5}, - [237] = {.index = 577, .length = 2}, - [238] = {.index = 579, .length = 2}, - [239] = {.index = 581, .length = 3}, - [240] = {.index = 584, .length = 1}, - [241] = {.index = 585, .length = 4}, - [242] = {.index = 589, .length = 4}, - [243] = {.index = 593, .length = 6}, - [244] = {.index = 599, .length = 5}, - [245] = {.index = 604, .length = 5}, - [246] = {.index = 609, .length = 4}, - [247] = {.index = 613, .length = 4}, - [248] = {.index = 617, .length = 4}, - [250] = {.index = 621, .length = 2}, - [251] = {.index = 623, .length = 3}, - [252] = {.index = 626, .length = 2}, - [253] = {.index = 628, .length = 2}, - [254] = {.index = 630, .length = 1}, - [255] = {.index = 631, .length = 3}, - [256] = {.index = 634, .length = 4}, - [257] = {.index = 638, .length = 4}, - [258] = {.index = 642, .length = 4}, - [259] = {.index = 646, .length = 3}, - [260] = {.index = 649, .length = 3}, - [261] = {.index = 652, .length = 3}, - [262] = {.index = 655, .length = 3}, - [263] = {.index = 658, .length = 2}, - [264] = {.index = 660, .length = 2}, - [265] = {.index = 662, .length = 5}, - [266] = {.index = 667, .length = 5}, - [268] = {.index = 672, .length = 3}, - [269] = {.index = 675, .length = 2}, - [270] = {.index = 677, .length = 3}, - [271] = {.index = 680, .length = 2}, - [272] = {.index = 682, .length = 5}, - [273] = {.index = 687, .length = 4}, - [274] = {.index = 691, .length = 4}, - [275] = {.index = 695, .length = 4}, - [276] = {.index = 699, .length = 3}, - [278] = {.index = 702, .length = 3}, - [279] = {.index = 705, .length = 5}, + [169] = {.index = 363, .length = 5}, + [170] = {.index = 368, .length = 5}, + [171] = {.index = 373, .length = 3}, + [172] = {.index = 376, .length = 3}, + [173] = {.index = 379, .length = 3}, + [174] = {.index = 382, .length = 2}, + [175] = {.index = 384, .length = 5}, + [177] = {.index = 389, .length = 2}, + [178] = {.index = 391, .length = 1}, + [179] = {.index = 392, .length = 2}, + [180] = {.index = 394, .length = 3}, + [181] = {.index = 397, .length = 2}, + [182] = {.index = 399, .length = 2}, + [183] = {.index = 401, .length = 2}, + [184] = {.index = 403, .length = 5}, + [185] = {.index = 408, .length = 2}, + [186] = {.index = 410, .length = 4}, + [187] = {.index = 414, .length = 4}, + [188] = {.index = 418, .length = 4}, + [189] = {.index = 422, .length = 4}, + [190] = {.index = 426, .length = 4}, + [191] = {.index = 430, .length = 2}, + [192] = {.index = 432, .length = 1}, + [193] = {.index = 433, .length = 2}, + [194] = {.index = 435, .length = 2}, + [195] = {.index = 437, .length = 5}, + [196] = {.index = 442, .length = 5}, + [197] = {.index = 447, .length = 6}, + [198] = {.index = 453, .length = 4}, + [199] = {.index = 457, .length = 4}, + [200] = {.index = 461, .length = 4}, + [201] = {.index = 465, .length = 3}, + [202] = {.index = 468, .length = 3}, + [203] = {.index = 471, .length = 3}, + [205] = {.index = 474, .length = 2}, + [206] = {.index = 476, .length = 2}, + [207] = {.index = 478, .length = 1}, + [208] = {.index = 479, .length = 3}, + [209] = {.index = 482, .length = 2}, + [210] = {.index = 484, .length = 3}, + [211] = {.index = 487, .length = 3}, + [212] = {.index = 490, .length = 3}, + [213] = {.index = 493, .length = 3}, + [214] = {.index = 496, .length = 2}, + [215] = {.index = 498, .length = 5}, + [216] = {.index = 503, .length = 2}, + [217] = {.index = 505, .length = 2}, + [218] = {.index = 507, .length = 3}, + [219] = {.index = 510, .length = 1}, + [220] = {.index = 511, .length = 6}, + [221] = {.index = 517, .length = 5}, + [222] = {.index = 522, .length = 4}, + [223] = {.index = 526, .length = 4}, + [224] = {.index = 530, .length = 4}, + [226] = {.index = 534, .length = 2}, + [227] = {.index = 536, .length = 3}, + [228] = {.index = 539, .length = 2}, + [229] = {.index = 541, .length = 2}, + [230] = {.index = 543, .length = 1}, + [231] = {.index = 544, .length = 3}, + [232] = {.index = 547, .length = 4}, + [233] = {.index = 551, .length = 4}, + [234] = {.index = 555, .length = 4}, + [235] = {.index = 559, .length = 3}, + [236] = {.index = 562, .length = 3}, + [237] = {.index = 565, .length = 3}, + [238] = {.index = 568, .length = 3}, + [239] = {.index = 571, .length = 2}, + [240] = {.index = 573, .length = 2}, + [241] = {.index = 575, .length = 5}, + [243] = {.index = 580, .length = 3}, + [244] = {.index = 583, .length = 2}, + [245] = {.index = 585, .length = 3}, + [246] = {.index = 588, .length = 2}, + [247] = {.index = 590, .length = 5}, + [248] = {.index = 595, .length = 4}, + [249] = {.index = 599, .length = 4}, + [250] = {.index = 603, .length = 4}, + [251] = {.index = 607, .length = 3}, + [253] = {.index = 610, .length = 3}, + [254] = {.index = 613, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3470,868 +3486,751 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_subject, 1, .inherited = true}, [61] = {field_body, 3}, - {field_right, 1}, - [63] = + [62] = {field_body, 3}, {field_condition, 1}, - [65] = - {field_body, 3}, - [66] = + [64] = {field_body, 3}, {field_name, 1}, - [68] = + [66] = {field_name, 1}, {field_name_specification, 3}, - [70] = + [68] = {field_key, 0}, {field_value, 2}, - [72] = + [70] = {field_type, 2}, - [73] = + [71] = {field_body, 3}, {field_parameters, 1}, - [75] = + [73] = {field_name, 2}, {field_type, 0}, - [77] = + [75] = {field_name, 2}, {field_type, 1}, - [79] = + [77] = {field_subscript, 2}, {field_value, 0}, - [81] = + [79] = {field_name, 2}, - [82] = + [80] = {field_name, 2}, {field_name_specification, 3}, - [84] = + [82] = {field_expression, 1}, {field_type_conversion, 2}, - [86] = + [84] = {field_expression, 1}, {field_format_specifier, 2}, - [88] = + [86] = {field_alternative, 0}, - [89] = + [87] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [92] = + [90] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [95] = + [93] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [98] = + [96] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, - [101] = + [99] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [105] = + [103] = {field_body, 4}, + [104] = + {field_left, 0}, {field_right, 2}, + {field_right, 3}, [107] = - {field_body, 4}, - [108] = {field_alternative, 4}, {field_body, 3}, - {field_right, 1}, - [111] = + [109] = {field_body, 3}, {field_body, 4}, - {field_right, 1}, - [114] = + [111] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [117] = + [114] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [120] = + [117] = {field_body, 2}, {field_body, 3}, - [122] = - {field_body, 3}, - {field_body, 4}, - [124] = + [119] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [127] = + [122] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [130] = + [125] = {field_body, 4}, {field_name, 1}, {field_superclasses, 2}, - [133] = + [128] = {field_body, 4}, {field_name, 1}, {field_name_specification, 2}, - [136] = + [131] = {field_body, 4}, {field_name, 1}, - [138] = + [133] = {field_name, 1}, {field_type, 0}, {field_value, 3}, - [141] = + [136] = {field_name, 3}, {field_type, 0}, - [143] = + [138] = {field_name, 3}, {field_type, 1}, - [145] = + [140] = {field_alias, 2, .inherited = true}, - [146] = + [141] = {field_alias, 0, .inherited = true}, {field_alias, 1, .inherited = true}, - [148] = + [143] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [151] = + [146] = {field_subscript, 1}, - [152] = + [147] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [155] = + [150] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [157] = + [152] = {field_body, 4}, {field_name, 2}, - [159] = + [154] = {field_name, 2}, {field_name_specification, 4}, - [161] = + [156] = {field_expression, 1}, {field_type_conversion, 3}, - [163] = + [158] = {field_expression, 1}, {field_format_specifier, 3}, - [165] = + [160] = {field_expression, 1}, {field_format_specifier, 3}, {field_type_conversion, 2}, - [168] = + [163] = {field_name, 4, .inherited = true}, - [169] = + [164] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [171] = + [166] = {field_left, 1}, {field_right, 3}, - [173] = + [168] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [177] = + [172] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [179] = + [174] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [183] = + [178] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [187] = + [182] = {field_alternative, 1, .inherited = true}, - [188] = + [183] = {field_alternative, 5, .inherited = true}, {field_body, 5}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [192] = + [187] = {field_alternative, 5}, {field_body, 4}, - {field_right, 2}, - [195] = - {field_body, 4}, - {field_body, 5}, - {field_right, 2}, - [198] = + [189] = {field_body, 4}, {field_body, 5}, - [200] = + [191] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [203] = + [194] = + {field_lower, 0}, + {field_upper, 4}, + {field_var, 2}, + [197] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, - {field_right, 1}, - [207] = - {field_body, 5}, - {field_right, 1}, - [209] = - {field_body, 5}, - {field_left, 1}, - {field_right, 3}, - [212] = + [200] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [216] = + [204] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [220] = + [208] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [224] = + [212] = {field_name, 1}, {field_name_specification, 5}, - [226] = + [214] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [230] = + [218] = {field_body, 5}, {field_name, 1}, {field_name_specification, 3}, {field_superclasses, 2}, - [234] = + [222] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_name_specification, 2}, - [238] = + [226] = {field_body, 4}, {field_body, 5}, {field_name, 1}, - [241] = + [229] = {field_body, 5}, {field_name, 1}, {field_superclasses, 3}, - [244] = + [232] = {field_body, 5}, {field_name, 1}, {field_name_specification, 3}, - [247] = + [235] = {field_name, 1}, {field_type, 0}, {field_value, 4}, - [250] = + [238] = {field_name, 4}, {field_type, 0}, - [252] = + [240] = {field_name, 4}, {field_type, 1}, - [254] = + [242] = {field_alias, 3}, - [255] = + [243] = {field_alias, 2}, {field_alias, 3, .inherited = true}, - [257] = + [245] = {field_alias, 3, .inherited = true}, - [258] = + [246] = {field_body, 4}, {field_body, 5}, {field_name, 2}, - [261] = + [249] = {field_body, 5}, {field_name, 2}, {field_superclasses, 3}, - [264] = + [252] = {field_body, 5}, {field_name, 2}, {field_name_specification, 3}, - [267] = + [255] = {field_body, 5}, {field_name, 2}, - [269] = + [257] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [272] = + [260] = {field_left, 2}, {field_right, 4}, - [274] = + [262] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [277] = + [265] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [282] = + [270] = {field_alternative, 6}, {field_body, 4}, {field_body, 5}, - {field_right, 2}, - [286] = - {field_body, 6}, - {field_right, 2}, - [288] = - {field_body, 6}, - {field_left, 2}, - {field_right, 4}, - [291] = + [273] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [295] = + [277] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [299] = - {field_alternative, 6}, - {field_body, 5}, - {field_right, 1}, - [302] = - {field_body, 5}, - {field_body, 6}, - {field_right, 1}, - [305] = - {field_alternative, 6}, - {field_body, 5}, - {field_left, 1}, - {field_right, 3}, - [309] = - {field_body, 5}, - {field_body, 6}, - {field_left, 1}, - {field_right, 3}, - [313] = + [281] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [317] = + [285] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [322] = + [290] = {field_body, 6}, {field_name, 1}, - [324] = + [292] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_name_specification, 3}, {field_superclasses, 2}, - [329] = + [297] = {field_name, 1}, {field_name_specification, 6}, - [331] = + [299] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, - [335] = + [303] = {field_body, 6}, {field_name, 1}, {field_name_specification, 4}, {field_superclasses, 3}, - [339] = + [307] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_name_specification, 3}, - [343] = + [311] = {field_name, 5}, {field_type, 1}, - [345] = + [313] = {field_alias, 4, .inherited = true}, - [346] = + [314] = {field_alias, 2}, {field_alias, 4, .inherited = true}, - [348] = + [316] = {field_alias, 3}, {field_alias, 4, .inherited = true}, - [350] = + [318] = {field_alias, 2}, {field_alias, 4}, - [352] = + [320] = {field_alias, 4}, - [353] = + [321] = {field_name, 2}, {field_name_specification, 6}, - [355] = + [323] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_superclasses, 3}, - [359] = + [327] = {field_body, 6}, {field_name, 2}, {field_name_specification, 4}, {field_superclasses, 3}, - [363] = + [331] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_name_specification, 3}, - [367] = + [335] = {field_body, 5}, {field_body, 6}, {field_name, 2}, - [370] = + [338] = {field_body, 6}, {field_name, 2}, {field_superclasses, 4}, - [373] = + [341] = {field_body, 6}, {field_name, 2}, {field_name_specification, 4}, - [376] = + [344] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [379] = + [347] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [381] = + [349] = {field_consequence, 3}, - [382] = - {field_alternative, 7}, - {field_body, 6}, - {field_right, 2}, - [385] = - {field_body, 6}, - {field_body, 7}, - {field_right, 2}, - [388] = - {field_alternative, 7}, - {field_body, 6}, - {field_left, 2}, - {field_right, 4}, - [392] = - {field_body, 6}, - {field_body, 7}, - {field_left, 2}, - {field_right, 4}, - [396] = + [350] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [400] = + [354] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [405] = - {field_alternative, 7}, - {field_body, 5}, - {field_body, 6}, - {field_right, 1}, - [409] = - {field_alternative, 7}, - {field_body, 5}, - {field_body, 6}, - {field_left, 1}, - {field_right, 3}, - [414] = - {field_body, 7}, - {field_left, 1}, - {field_right, 3}, - [417] = + [359] = + {field_left, 0}, + {field_lower, 2}, + {field_upper, 6}, + {field_var, 4}, + [363] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [422] = + [368] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [427] = + [373] = {field_body, 6}, {field_body, 7}, {field_name, 1}, - [430] = + [376] = {field_body, 7}, {field_name, 1}, {field_superclasses, 5}, - [433] = + [379] = {field_body, 7}, {field_name, 1}, {field_name_specification, 5}, - [436] = + [382] = {field_body, 7}, {field_name, 1}, - [438] = + [384] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_name_specification, 4}, {field_superclasses, 3}, - [443] = + [389] = {field_alias, 2}, {field_alias, 5, .inherited = true}, - [445] = + [391] = {field_alias, 5, .inherited = true}, - [446] = + [392] = {field_alias, 3}, {field_alias, 5, .inherited = true}, - [448] = + [394] = {field_alias, 2}, {field_alias, 4}, {field_alias, 5, .inherited = true}, - [451] = + [397] = {field_alias, 4}, {field_alias, 5, .inherited = true}, - [453] = + [399] = {field_alias, 3}, {field_alias, 5}, - [455] = + [401] = {field_body, 7}, {field_name, 2}, - [457] = + [403] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_name_specification, 4}, {field_superclasses, 3}, - [462] = + [408] = {field_name, 2}, {field_name_specification, 7}, - [464] = + [410] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_superclasses, 4}, - [468] = + [414] = {field_body, 7}, {field_name, 2}, {field_name_specification, 5}, {field_superclasses, 4}, - [472] = + [418] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_name_specification, 4}, - [476] = + [422] = {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [480] = + [426] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [484] = + [430] = {field_key, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [486] = + [432] = {field_consequence, 4}, - [487] = + [433] = {field_consequence, 3}, {field_consequence, 4}, - [489] = + [435] = {field_consequence, 4}, {field_guard, 2}, - [491] = - {field_alternative, 8}, - {field_body, 6}, - {field_body, 7}, - {field_right, 2}, - [495] = - {field_alternative, 8}, - {field_body, 6}, - {field_body, 7}, - {field_left, 2}, - {field_right, 4}, - [500] = - {field_body, 8}, - {field_left, 2}, - {field_right, 4}, - [503] = + [437] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [508] = + [442] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [513] = - {field_alternative, 8}, - {field_body, 7}, - {field_left, 1}, - {field_right, 3}, - [517] = - {field_body, 7}, - {field_body, 8}, - {field_left, 1}, - {field_right, 3}, - [521] = + [447] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [527] = + [453] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_superclasses, 5}, - [531] = + [457] = {field_body, 8}, {field_name, 1}, {field_name_specification, 6}, {field_superclasses, 5}, - [535] = + [461] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_name_specification, 5}, - [539] = + [465] = {field_body, 7}, {field_body, 8}, {field_name, 1}, - [542] = + [468] = {field_body, 8}, {field_name, 1}, {field_superclasses, 6}, - [545] = + [471] = {field_body, 8}, {field_name, 1}, {field_name_specification, 6}, - [548] = + [474] = {field_alias, 2}, {field_alias, 6, .inherited = true}, - [550] = + [476] = {field_alias, 3}, {field_alias, 6, .inherited = true}, - [552] = + [478] = {field_alias, 6, .inherited = true}, - [553] = + [479] = {field_alias, 2}, {field_alias, 4}, {field_alias, 6, .inherited = true}, - [556] = + [482] = {field_alias, 4}, {field_alias, 6, .inherited = true}, - [558] = + [484] = {field_alias, 3}, {field_alias, 5}, {field_alias, 6, .inherited = true}, - [561] = + [487] = {field_body, 7}, {field_body, 8}, {field_name, 2}, - [564] = + [490] = {field_body, 8}, {field_name, 2}, {field_superclasses, 6}, - [567] = + [493] = {field_body, 8}, {field_name, 2}, {field_name_specification, 6}, - [570] = + [496] = {field_body, 8}, {field_name, 2}, - [572] = + [498] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_name_specification, 5}, {field_superclasses, 4}, - [577] = + [503] = {field_consequence, 4}, {field_consequence, 5}, - [579] = + [505] = {field_consequence, 5}, {field_guard, 3}, - [581] = + [507] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - [584] = + [510] = {field_consequence, 5}, - [585] = - {field_alternative, 9}, - {field_body, 8}, - {field_left, 2}, - {field_right, 4}, - [589] = - {field_body, 8}, - {field_body, 9}, - {field_left, 2}, - {field_right, 4}, - [593] = + [511] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [599] = - {field_alternative, 9}, - {field_body, 7}, - {field_body, 8}, - {field_left, 1}, - {field_right, 3}, - [604] = + [517] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_name_specification, 6}, {field_superclasses, 5}, - [609] = + [522] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_superclasses, 6}, - [613] = + [526] = {field_body, 9}, {field_name, 1}, {field_name_specification, 7}, {field_superclasses, 6}, - [617] = + [530] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_name_specification, 6}, - [621] = + [534] = {field_alias, 3}, {field_alias, 7, .inherited = true}, - [623] = + [536] = {field_alias, 2}, {field_alias, 4}, {field_alias, 7, .inherited = true}, - [626] = + [539] = {field_alias, 2}, {field_alias, 7, .inherited = true}, - [628] = + [541] = {field_alias, 4}, {field_alias, 7, .inherited = true}, - [630] = + [543] = {field_alias, 7, .inherited = true}, - [631] = + [544] = {field_alias, 3}, {field_alias, 5}, {field_alias, 7, .inherited = true}, - [634] = + [547] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_superclasses, 6}, - [638] = + [551] = {field_body, 9}, {field_name, 2}, {field_name_specification, 7}, {field_superclasses, 6}, - [642] = + [555] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_name_specification, 6}, - [646] = + [559] = {field_body, 8}, {field_body, 9}, {field_name, 2}, - [649] = + [562] = {field_body, 9}, {field_name, 2}, {field_superclasses, 7}, - [652] = + [565] = {field_body, 9}, {field_name, 2}, {field_name_specification, 7}, - [655] = + [568] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - [658] = + [571] = {field_consequence, 5}, {field_consequence, 6}, - [660] = + [573] = {field_consequence, 6}, {field_guard, 4}, - [662] = - {field_alternative, 10}, - {field_body, 8}, - {field_body, 9}, - {field_left, 2}, - {field_right, 4}, - [667] = + [575] = {field_body, 9}, {field_body, 10}, {field_name, 1}, {field_name_specification, 7}, {field_superclasses, 6}, - [672] = + [580] = {field_alias, 2}, {field_alias, 4}, {field_alias, 8, .inherited = true}, - [675] = + [583] = {field_alias, 4}, {field_alias, 8, .inherited = true}, - [677] = + [585] = {field_alias, 3}, {field_alias, 5}, {field_alias, 8, .inherited = true}, - [680] = + [588] = {field_alias, 3}, {field_alias, 8, .inherited = true}, - [682] = + [590] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_name_specification, 7}, {field_superclasses, 6}, - [687] = + [595] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_superclasses, 7}, - [691] = + [599] = {field_body, 10}, {field_name, 2}, {field_name_specification, 8}, {field_superclasses, 7}, - [695] = + [603] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_name_specification, 7}, - [699] = + [607] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, - [702] = + [610] = {field_alias, 3}, {field_alias, 5}, {field_alias, 9, .inherited = true}, - [705] = + [613] = {field_body, 10}, {field_body, 11}, {field_name, 2}, @@ -4375,238 +4274,196 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [49] = { [3] = sym_block, }, - [50] = { - [3] = sym_block, - }, - [56] = { + [55] = { [0] = sym_block, }, - [58] = { + [57] = { [2] = sym_block, }, - [62] = { + [61] = { [0] = alias_sym_format_expression, }, - [66] = { + [65] = { [3] = sym_block, }, - [67] = { + [66] = { [3] = sym_block, }, - [71] = { + [70] = { [4] = sym_block, }, [72] = { - [4] = sym_block, - }, - [73] = { [3] = sym_block, }, - [75] = { + [74] = { [3] = sym_block, }, - [79] = { + [77] = { [4] = sym_block, }, - [81] = { + [79] = { [4] = sym_block, }, - [82] = { + [80] = { [4] = sym_block, }, - [83] = { + [81] = { [4] = sym_block, }, - [88] = { + [86] = { [3] = sym_block, }, - [92] = { + [90] = { [0] = sym_identifier, }, - [96] = { + [94] = { [4] = sym_block, }, - [104] = { + [102] = { [3] = sym_block, }, - [110] = { + [108] = { [4] = sym_block, }, - [113] = { + [110] = { [5] = sym_block, }, [115] = { [5] = sym_block, }, - [116] = { + [118] = { [5] = sym_block, }, - [119] = { + [121] = { [5] = sym_block, }, [122] = { [5] = sym_block, }, - [125] = { - [5] = sym_block, - }, [126] = { - [5] = sym_block, - }, - [130] = { [4] = sym_block, }, - [135] = { + [131] = { [5] = sym_block, }, - [136] = { + [132] = { [5] = sym_block, }, - [137] = { + [133] = { [5] = sym_block, }, - [143] = { + [140] = { [6] = sym_block, }, - [144] = { + [141] = { [6] = sym_block, }, - [146] = { + [143] = { [6] = sym_block, }, [147] = { - [5] = sym_block, - }, - [149] = { - [5] = sym_block, - }, - [151] = { - [6] = sym_block, - }, - [153] = { - [6] = sym_block, - }, - [157] = { [6] = sym_block, }, - [160] = { + [150] = { [5] = sym_block, }, - [168] = { + [158] = { [6] = sym_block, }, - [171] = { + [161] = { [6] = sym_block, }, - [172] = { + [162] = { [6] = sym_block, }, - [175] = { + [165] = { [3] = sym_block, }, - [176] = { - [6] = sym_block, - }, - [178] = { - [6] = sym_block, - }, - [180] = { - [7] = sym_block, - }, - [184] = { + [166] = { [7] = sym_block, }, - [186] = { + [170] = { [7] = sym_block, }, - [188] = { + [172] = { [7] = sym_block, }, - [189] = { + [173] = { [7] = sym_block, }, - [190] = { + [174] = { [7] = sym_block, }, - [192] = { + [176] = { [6] = sym_block, }, - [199] = { + [183] = { [7] = sym_block, }, - [203] = { + [187] = { [7] = sym_block, }, - [208] = { + [192] = { [4] = sym_block, }, - [210] = { + [194] = { [4] = sym_block, }, - [213] = { - [8] = sym_block, - }, - [215] = { + [196] = { [8] = sym_block, }, - [216] = { - [7] = sym_block, - }, - [220] = { + [199] = { [8] = sym_block, }, - [223] = { + [202] = { [8] = sym_block, }, - [224] = { + [203] = { [8] = sym_block, }, - [225] = { + [204] = { [7] = sym_block, }, - [233] = { + [212] = { [8] = sym_block, }, - [234] = { + [213] = { [8] = sym_block, }, - [235] = { + [214] = { [8] = sym_block, }, - [238] = { + [217] = { [5] = sym_block, }, - [240] = { + [219] = { [5] = sym_block, }, - [241] = { - [8] = sym_block, - }, - [247] = { + [223] = { [9] = sym_block, }, - [249] = { + [225] = { [8] = sym_block, }, - [257] = { + [233] = { [9] = sym_block, }, - [260] = { + [236] = { [9] = sym_block, }, - [261] = { + [237] = { [9] = sym_block, }, - [264] = { + [240] = { [6] = sym_block, }, - [267] = { + [242] = { [9] = sym_block, }, - [274] = { + [249] = { [10] = sym_block, }, - [277] = { + [252] = { [10] = sym_block, }, }; @@ -4635,7 +4492,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 5, [6] = 6, [7] = 7, @@ -4691,8 +4548,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [57] = 57, [58] = 58, [59] = 59, - [60] = 2, - [61] = 61, + [60] = 60, + [61] = 2, [62] = 62, [63] = 63, [64] = 64, @@ -4714,229 +4571,229 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 80, [81] = 81, [82] = 82, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 3, - [89] = 5, - [90] = 6, - [91] = 7, - [92] = 8, - [93] = 9, - [94] = 10, - [95] = 11, - [96] = 12, - [97] = 13, - [98] = 14, - [99] = 15, - [100] = 16, - [101] = 17, - [102] = 18, - [103] = 19, - [104] = 20, - [105] = 21, - [106] = 22, - [107] = 23, - [108] = 24, - [109] = 25, - [110] = 26, - [111] = 27, - [112] = 28, - [113] = 29, - [114] = 30, - [115] = 31, - [116] = 32, - [117] = 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] = 259, - [261] = 259, - [262] = 259, - [263] = 263, - [264] = 264, - [265] = 259, + [83] = 5, + [84] = 6, + [85] = 7, + [86] = 8, + [87] = 9, + [88] = 10, + [89] = 11, + [90] = 12, + [91] = 13, + [92] = 14, + [93] = 15, + [94] = 16, + [95] = 17, + [96] = 18, + [97] = 19, + [98] = 20, + [99] = 21, + [100] = 22, + [101] = 23, + [102] = 24, + [103] = 25, + [104] = 26, + [105] = 27, + [106] = 28, + [107] = 29, + [108] = 30, + [109] = 31, + [110] = 32, + [111] = 33, + [112] = 34, + [113] = 35, + [114] = 36, + [115] = 37, + [116] = 38, + [117] = 39, + [118] = 40, + [119] = 41, + [120] = 42, + [121] = 43, + [122] = 44, + [123] = 45, + [124] = 46, + [125] = 47, + [126] = 49, + [127] = 50, + [128] = 51, + [129] = 52, + [130] = 53, + [131] = 54, + [132] = 55, + [133] = 56, + [134] = 57, + [135] = 58, + [136] = 62, + [137] = 63, + [138] = 65, + [139] = 66, + [140] = 67, + [141] = 68, + [142] = 69, + [143] = 70, + [144] = 71, + [145] = 74, + [146] = 75, + [147] = 76, + [148] = 77, + [149] = 78, + [150] = 80, + [151] = 81, + [152] = 82, + [153] = 9, + [154] = 12, + [155] = 16, + [156] = 17, + [157] = 18, + [158] = 19, + [159] = 20, + [160] = 21, + [161] = 26, + [162] = 27, + [163] = 28, + [164] = 29, + [165] = 30, + [166] = 31, + [167] = 32, + [168] = 33, + [169] = 39, + [170] = 40, + [171] = 42, + [172] = 43, + [173] = 44, + [174] = 45, + [175] = 46, + [176] = 51, + [177] = 52, + [178] = 53, + [179] = 55, + [180] = 56, + [181] = 57, + [182] = 58, + [183] = 64, + [184] = 65, + [185] = 66, + [186] = 67, + [187] = 68, + [188] = 69, + [189] = 70, + [190] = 71, + [191] = 74, + [192] = 75, + [193] = 76, + [194] = 77, + [195] = 78, + [196] = 80, + [197] = 81, + [198] = 82, + [199] = 9, + [200] = 12, + [201] = 16, + [202] = 17, + [203] = 18, + [204] = 19, + [205] = 20, + [206] = 21, + [207] = 26, + [208] = 27, + [209] = 28, + [210] = 29, + [211] = 30, + [212] = 31, + [213] = 32, + [214] = 33, + [215] = 39, + [216] = 40, + [217] = 42, + [218] = 43, + [219] = 44, + [220] = 45, + [221] = 46, + [222] = 51, + [223] = 52, + [224] = 53, + [225] = 55, + [226] = 56, + [227] = 57, + [228] = 58, + [229] = 64, + [230] = 65, + [231] = 66, + [232] = 67, + [233] = 68, + [234] = 69, + [235] = 70, + [236] = 71, + [237] = 74, + [238] = 75, + [239] = 76, + [240] = 77, + [241] = 78, + [242] = 80, + [243] = 81, + [244] = 82, + [245] = 64, + [246] = 246, + [247] = 247, + [248] = 247, + [249] = 249, + [250] = 250, + [251] = 247, + [252] = 247, + [253] = 246, + [254] = 254, + [255] = 247, + [256] = 247, + [257] = 247, + [258] = 247, + [259] = 247, + [260] = 247, + [261] = 247, + [262] = 262, + [263] = 262, + [264] = 262, + [265] = 265, [266] = 266, - [267] = 264, - [268] = 259, - [269] = 259, - [270] = 259, - [271] = 259, - [272] = 259, - [273] = 259, - [274] = 274, - [275] = 274, - [276] = 276, - [277] = 274, - [278] = 278, - [279] = 278, - [280] = 280, - [281] = 276, - [282] = 280, - [283] = 283, - [284] = 283, - [285] = 283, - [286] = 280, - [287] = 278, - [288] = 276, - [289] = 276, - [290] = 280, - [291] = 291, - [292] = 278, - [293] = 291, - [294] = 291, - [295] = 274, - [296] = 283, - [297] = 291, + [267] = 265, + [268] = 268, + [269] = 266, + [270] = 270, + [271] = 270, + [272] = 272, + [273] = 266, + [274] = 270, + [275] = 265, + [276] = 266, + [277] = 272, + [278] = 268, + [279] = 272, + [280] = 265, + [281] = 262, + [282] = 272, + [283] = 268, + [284] = 268, + [285] = 270, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 286, + [290] = 290, + [291] = 287, + [292] = 290, + [293] = 288, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, [298] = 298, [299] = 299, - [300] = 299, + [300] = 300, [301] = 301, - [302] = 301, + [302] = 302, [303] = 303, - [304] = 298, - [305] = 303, + [304] = 304, + [305] = 305, [306] = 306, [307] = 307, [308] = 308, @@ -4948,7 +4805,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [314] = 314, [315] = 315, [316] = 316, - [317] = 317, + [317] = 294, [318] = 318, [319] = 319, [320] = 320, @@ -4960,855 +4817,855 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [326] = 326, [327] = 327, [328] = 328, - [329] = 329, + [329] = 296, [330] = 330, - [331] = 331, - [332] = 332, + [331] = 299, + [332] = 300, [333] = 333, - [334] = 334, - [335] = 335, + [334] = 295, + [335] = 309, [336] = 336, [337] = 337, - [338] = 338, + [338] = 314, [339] = 339, - [340] = 340, - [341] = 341, + [340] = 316, + [341] = 320, [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, + [343] = 323, + [344] = 333, + [345] = 297, + [346] = 336, + [347] = 337, + [348] = 339, + [349] = 298, [350] = 350, - [351] = 312, + [351] = 351, [352] = 352, - [353] = 314, - [354] = 318, - [355] = 355, + [353] = 350, + [354] = 351, + [355] = 352, [356] = 356, - [357] = 357, - [358] = 323, - [359] = 325, - [360] = 360, - [361] = 331, + [357] = 356, + [358] = 358, + [359] = 358, + [360] = 301, + [361] = 361, [362] = 362, - [363] = 340, + [363] = 361, [364] = 364, - [365] = 365, + [365] = 362, [366] = 366, - [367] = 345, - [368] = 368, + [367] = 303, + [368] = 364, [369] = 369, - [370] = 348, - [371] = 307, - [372] = 355, - [373] = 356, + [370] = 304, + [371] = 371, + [372] = 372, + [373] = 305, [374] = 374, - [375] = 308, + [375] = 375, [376] = 376, - [377] = 309, - [378] = 362, - [379] = 364, - [380] = 310, - [381] = 366, - [382] = 368, - [383] = 369, - [384] = 311, - [385] = 313, - [386] = 386, + [377] = 369, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 371, + [384] = 306, + [385] = 374, + [386] = 375, [387] = 387, - [388] = 388, - [389] = 386, - [390] = 390, - [391] = 316, - [392] = 390, - [393] = 317, + [388] = 307, + [389] = 389, + [390] = 378, + [391] = 391, + [392] = 379, + [393] = 308, [394] = 394, - [395] = 394, - [396] = 396, + [395] = 395, + [396] = 380, [397] = 397, - [398] = 396, - [399] = 399, - [400] = 397, - [401] = 321, + [398] = 381, + [399] = 382, + [400] = 400, + [401] = 401, [402] = 402, - [403] = 403, + [403] = 310, [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, + [405] = 319, + [406] = 295, + [407] = 311, + [408] = 303, + [409] = 304, + [410] = 305, + [411] = 312, + [412] = 306, + [413] = 307, + [414] = 308, + [415] = 315, + [416] = 387, + [417] = 313, + [418] = 294, + [419] = 318, + [420] = 389, + [421] = 321, + [422] = 322, + [423] = 315, + [424] = 324, + [425] = 325, + [426] = 326, + [427] = 309, + [428] = 391, + [429] = 314, + [430] = 430, + [431] = 320, + [432] = 394, + [433] = 323, + [434] = 395, + [435] = 318, [436] = 333, - [437] = 335, + [437] = 437, [438] = 336, - [439] = 349, + [439] = 337, [440] = 350, - [441] = 312, - [442] = 365, - [443] = 323, - [444] = 325, - [445] = 331, - [446] = 348, - [447] = 355, - [448] = 356, + [441] = 351, + [442] = 352, + [443] = 397, + [444] = 358, + [445] = 321, + [446] = 446, + [447] = 322, + [448] = 361, [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] = 365, - [477] = 307, - [478] = 308, - [479] = 321, - [480] = 480, - [481] = 481, - [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] = 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, + [450] = 400, + [451] = 451, + [452] = 364, + [453] = 324, + [454] = 325, + [455] = 371, + [456] = 402, + [457] = 374, + [458] = 375, + [459] = 326, + [460] = 430, + [461] = 378, + [462] = 379, + [463] = 380, + [464] = 381, + [465] = 382, + [466] = 327, + [467] = 387, + [468] = 389, + [469] = 391, + [470] = 394, + [471] = 395, + [472] = 397, + [473] = 400, + [474] = 319, + [475] = 295, + [476] = 303, + [477] = 304, + [478] = 305, + [479] = 306, + [480] = 307, + [481] = 308, + [482] = 315, + [483] = 294, + [484] = 318, + [485] = 321, + [486] = 322, + [487] = 324, + [488] = 325, + [489] = 326, + [490] = 309, + [491] = 314, + [492] = 320, + [493] = 323, + [494] = 333, + [495] = 495, + [496] = 336, + [497] = 337, + [498] = 350, + [499] = 351, + [500] = 352, + [501] = 358, + [502] = 361, + [503] = 362, + [504] = 364, + [505] = 371, + [506] = 374, + [507] = 375, + [508] = 378, + [509] = 379, + [510] = 380, + [511] = 381, + [512] = 382, + [513] = 387, + [514] = 389, + [515] = 391, + [516] = 394, + [517] = 395, + [518] = 397, + [519] = 400, + [520] = 402, + [521] = 446, + [522] = 451, + [523] = 495, + [524] = 302, + [525] = 319, + [526] = 328, + [527] = 330, + [528] = 366, + [529] = 402, + [530] = 530, + [531] = 530, + [532] = 532, + [533] = 532, + [534] = 534, + [535] = 534, + [536] = 532, + [537] = 534, + [538] = 532, + [539] = 534, + [540] = 532, + [541] = 534, + [542] = 532, + [543] = 534, + [544] = 532, + [545] = 534, + [546] = 532, + [547] = 534, + [548] = 534, + [549] = 532, + [550] = 534, + [551] = 532, + [552] = 534, + [553] = 532, [554] = 554, - [555] = 554, - [556] = 556, - [557] = 556, - [558] = 556, - [559] = 556, - [560] = 556, + [555] = 555, + [556] = 555, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 559, [561] = 561, - [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] = 579, - [581] = 581, - [582] = 582, - [583] = 582, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 587, - [589] = 587, - [590] = 587, - [591] = 587, - [592] = 587, - [593] = 593, - [594] = 587, - [595] = 587, - [596] = 587, - [597] = 585, - [598] = 587, + [562] = 562, + [563] = 563, + [564] = 563, + [565] = 563, + [566] = 563, + [567] = 562, + [568] = 568, + [569] = 563, + [570] = 563, + [571] = 563, + [572] = 572, + [573] = 563, + [574] = 563, + [575] = 563, + [576] = 563, + [577] = 563, + [578] = 563, + [579] = 563, + [580] = 563, + [581] = 563, + [582] = 563, + [583] = 563, + [584] = 572, + [585] = 568, + [586] = 561, + [587] = 562, + [588] = 572, + [589] = 568, + [590] = 561, + [591] = 562, + [592] = 572, + [593] = 568, + [594] = 561, + [595] = 563, + [596] = 596, + [597] = 597, + [598] = 596, [599] = 599, - [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] = 620, - [623] = 623, - [624] = 624, - [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] = 624, - [638] = 624, - [639] = 639, - [640] = 579, - [641] = 581, - [642] = 624, - [643] = 636, - [644] = 644, - [645] = 645, - [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] = 684, - [686] = 684, - [687] = 687, - [688] = 688, - [689] = 684, - [690] = 687, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [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, + [600] = 600, + [601] = 555, + [602] = 599, + [603] = 600, + [604] = 600, + [605] = 600, + [606] = 600, + [607] = 600, + [608] = 600, + [609] = 600, + [610] = 599, + [611] = 599, + [612] = 612, + [613] = 557, + [614] = 614, + [615] = 557, + [616] = 616, + [617] = 617, + [618] = 557, + [619] = 612, + [620] = 599, + [621] = 599, + [622] = 612, + [623] = 557, + [624] = 555, + [625] = 599, + [626] = 599, + [627] = 599, + [628] = 616, + [629] = 599, + [630] = 555, + [631] = 557, + [632] = 599, + [633] = 557, + [634] = 612, + [635] = 616, + [636] = 599, + [637] = 612, + [638] = 614, + [639] = 612, + [640] = 612, + [641] = 557, + [642] = 612, + [643] = 557, + [644] = 599, + [645] = 612, + [646] = 557, + [647] = 612, + [648] = 616, + [649] = 599, + [650] = 616, + [651] = 557, + [652] = 617, + [653] = 612, + [654] = 557, + [655] = 557, + [656] = 557, + [657] = 557, + [658] = 616, + [659] = 612, + [660] = 612, + [661] = 612, + [662] = 557, + [663] = 599, + [664] = 557, + [665] = 612, + [666] = 557, + [667] = 667, + [668] = 667, + [669] = 669, + [670] = 667, + [671] = 671, + [672] = 672, + [673] = 669, + [674] = 667, + [675] = 671, + [676] = 671, + [677] = 677, + [678] = 669, + [679] = 669, + [680] = 667, + [681] = 667, + [682] = 671, + [683] = 667, + [684] = 672, + [685] = 669, + [686] = 686, + [687] = 669, + [688] = 667, + [689] = 671, + [690] = 690, + [691] = 671, + [692] = 669, + [693] = 667, + [694] = 671, + [695] = 667, + [696] = 669, + [697] = 667, + [698] = 671, + [699] = 669, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 701, + [704] = 700, + [705] = 701, + [706] = 702, + [707] = 702, + [708] = 708, + [709] = 708, + [710] = 710, + [711] = 711, + [712] = 711, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 708, + [717] = 717, + [718] = 708, + [719] = 715, [720] = 720, - [721] = 720, + [721] = 721, [722] = 722, - [723] = 722, - [724] = 720, - [725] = 719, - [726] = 719, - [727] = 727, - [728] = 727, + [723] = 723, + [724] = 724, + [725] = 708, + [726] = 717, + [727] = 711, + [728] = 717, [729] = 729, [730] = 730, - [731] = 731, - [732] = 732, + [731] = 729, + [732] = 713, [733] = 733, - [734] = 734, - [735] = 735, - [736] = 732, - [737] = 732, - [738] = 738, - [739] = 739, - [740] = 740, + [734] = 708, + [735] = 714, + [736] = 736, + [737] = 717, + [738] = 715, + [739] = 733, + [740] = 708, [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, + [742] = 724, + [743] = 711, + [744] = 717, + [745] = 711, + [746] = 708, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 748, + [753] = 749, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 756, + [758] = 754, + [759] = 755, + [760] = 756, [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, + [762] = 747, + [763] = 761, + [764] = 761, + [765] = 747, + [766] = 747, + [767] = 748, + [768] = 749, + [769] = 754, + [770] = 748, + [771] = 749, + [772] = 750, + [773] = 751, + [774] = 774, [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] = 768, - [837] = 769, - [838] = 775, - [839] = 776, - [840] = 772, - [841] = 841, - [842] = 842, + [776] = 754, + [777] = 755, + [778] = 756, + [779] = 747, + [780] = 748, + [781] = 749, + [782] = 754, + [783] = 755, + [784] = 756, + [785] = 761, + [786] = 747, + [787] = 748, + [788] = 749, + [789] = 754, + [790] = 755, + [791] = 761, + [792] = 747, + [793] = 748, + [794] = 749, + [795] = 754, + [796] = 755, + [797] = 761, + [798] = 747, + [799] = 748, + [800] = 749, + [801] = 761, + [802] = 747, + [803] = 748, + [804] = 749, + [805] = 761, + [806] = 747, + [807] = 748, + [808] = 749, + [809] = 761, + [810] = 774, + [811] = 748, + [812] = 749, + [813] = 775, + [814] = 754, + [815] = 755, + [816] = 756, + [817] = 755, + [818] = 761, + [819] = 747, + [820] = 820, + [821] = 761, + [822] = 741, + [823] = 823, + [824] = 824, + [825] = 730, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 828, + [832] = 830, + [833] = 830, + [834] = 824, + [835] = 829, + [836] = 823, + [837] = 826, + [838] = 824, + [839] = 828, + [840] = 829, + [841] = 823, + [842] = 826, [843] = 843, - [844] = 729, + [844] = 820, [845] = 845, [846] = 846, - [847] = 841, - [848] = 848, + [847] = 847, + [848] = 820, [849] = 849, [850] = 850, - [851] = 730, - [852] = 849, - [853] = 843, - [854] = 845, - [855] = 850, - [856] = 843, - [857] = 846, + [851] = 851, + [852] = 850, + [853] = 853, + [854] = 850, + [855] = 853, + [856] = 850, + [857] = 820, [858] = 858, - [859] = 848, - [860] = 845, - [861] = 849, - [862] = 858, - [863] = 841, - [864] = 850, - [865] = 848, - [866] = 866, - [867] = 867, + [859] = 859, + [860] = 860, + [861] = 853, + [862] = 820, + [863] = 853, + [864] = 859, + [865] = 860, + [866] = 845, + [867] = 843, [868] = 868, - [869] = 869, - [870] = 869, + [869] = 851, + [870] = 868, [871] = 871, - [872] = 868, - [873] = 869, - [874] = 866, + [872] = 850, + [873] = 871, + [874] = 853, [875] = 875, - [876] = 869, - [877] = 877, - [878] = 875, - [879] = 835, - [880] = 875, - [881] = 875, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 835, - [887] = 835, + [876] = 876, + [877] = 858, + [878] = 846, + [879] = 859, + [880] = 880, + [881] = 850, + [882] = 850, + [883] = 853, + [884] = 853, + [885] = 853, + [886] = 876, + [887] = 850, [888] = 875, [889] = 889, - [890] = 885, - [891] = 869, - [892] = 884, - [893] = 883, - [894] = 894, - [895] = 869, + [890] = 890, + [891] = 880, + [892] = 892, + [893] = 880, + [894] = 889, + [895] = 849, [896] = 889, - [897] = 877, - [898] = 875, - [899] = 869, - [900] = 867, - [901] = 901, - [902] = 902, - [903] = 882, - [904] = 904, - [905] = 902, - [906] = 875, - [907] = 901, - [908] = 877, - [909] = 869, - [910] = 835, - [911] = 875, - [912] = 912, - [913] = 913, + [897] = 849, + [898] = 898, + [899] = 898, + [900] = 900, + [901] = 900, + [902] = 889, + [903] = 903, + [904] = 890, + [905] = 905, + [906] = 892, + [907] = 898, + [908] = 889, + [909] = 898, + [910] = 900, + [911] = 898, + [912] = 900, + [913] = 889, [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 917, - [920] = 916, - [921] = 921, - [922] = 922, - [923] = 921, - [924] = 924, + [917] = 880, + [918] = 889, + [919] = 900, + [920] = 900, + [921] = 898, + [922] = 900, + [923] = 903, + [924] = 916, [925] = 925, - [926] = 915, - [927] = 927, + [926] = 926, + [927] = 889, [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, + [929] = 929, + [930] = 898, + [931] = 900, + [932] = 889, + [933] = 898, + [934] = 900, + [935] = 929, + [936] = 849, + [937] = 898, + [938] = 889, + [939] = 939, + [940] = 889, + [941] = 898, + [942] = 915, + [943] = 900, + [944] = 898, + [945] = 900, + [946] = 900, + [947] = 889, + [948] = 926, + [949] = 880, + [950] = 849, + [951] = 898, + [952] = 880, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 957, + [963] = 963, + [964] = 880, + [965] = 965, + [966] = 966, + [967] = 967, [968] = 968, - [969] = 916, + [969] = 969, [970] = 970, - [971] = 917, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 914, - [976] = 974, - [977] = 904, - [978] = 915, + [971] = 971, + [972] = 960, + [973] = 956, + [974] = 953, + [975] = 975, + [976] = 960, + [977] = 977, + [978] = 968, [979] = 979, - [980] = 980, - [981] = 894, - [982] = 982, - [983] = 983, + [980] = 849, + [981] = 954, + [982] = 971, + [983] = 557, [984] = 984, - [985] = 985, + [985] = 617, [986] = 986, [987] = 987, [988] = 988, - [989] = 916, - [990] = 990, + [989] = 989, + [990] = 987, [991] = 991, - [992] = 992, - [993] = 894, - [994] = 980, - [995] = 995, - [996] = 996, - [997] = 996, - [998] = 998, - [999] = 999, + [992] = 979, + [993] = 993, + [994] = 975, + [995] = 915, + [996] = 916, + [997] = 890, + [998] = 929, + [999] = 892, [1000] = 1000, - [1001] = 1001, - [1002] = 904, - [1003] = 974, - [1004] = 904, - [1005] = 1005, - [1006] = 1006, - [1007] = 644, - [1008] = 894, - [1009] = 979, - [1010] = 987, - [1011] = 1011, - [1012] = 918, - [1013] = 917, - [1014] = 980, - [1015] = 996, + [1001] = 975, + [1002] = 1002, + [1003] = 1003, + [1004] = 987, + [1005] = 915, + [1006] = 993, + [1007] = 880, + [1008] = 1008, + [1009] = 963, + [1010] = 849, + [1011] = 916, + [1012] = 967, + [1013] = 890, + [1014] = 993, + [1015] = 892, [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, + [1017] = 915, + [1018] = 991, + [1019] = 890, + [1020] = 880, + [1021] = 916, + [1022] = 991, + [1023] = 849, + [1024] = 991, + [1025] = 929, + [1026] = 991, + [1027] = 557, + [1028] = 991, + [1029] = 991, + [1030] = 617, + [1031] = 991, + [1032] = 991, + [1033] = 991, + [1034] = 991, + [1035] = 991, + [1036] = 929, [1037] = 1037, - [1038] = 914, - [1039] = 1005, - [1040] = 915, - [1041] = 1006, - [1042] = 918, - [1043] = 916, - [1044] = 917, - [1045] = 1045, - [1046] = 581, - [1047] = 987, + [1038] = 966, + [1039] = 890, + [1040] = 892, + [1041] = 892, + [1042] = 1037, + [1043] = 1008, + [1044] = 849, + [1045] = 915, + [1046] = 979, + [1047] = 916, [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, + [1049] = 929, + [1050] = 958, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 890, + [1060] = 1058, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, [1064] = 1064, - [1065] = 904, - [1066] = 894, - [1067] = 1067, - [1068] = 915, - [1069] = 918, - [1070] = 1070, + [1065] = 557, + [1066] = 1066, + [1067] = 1051, + [1068] = 1068, + [1069] = 1069, + [1070] = 1068, [1071] = 1071, - [1072] = 1072, + [1072] = 1053, [1073] = 1073, - [1074] = 894, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, + [1074] = 1071, + [1075] = 916, + [1076] = 557, + [1077] = 1073, [1078] = 1078, - [1079] = 917, - [1080] = 1080, - [1081] = 918, + [1079] = 557, + [1080] = 557, + [1081] = 1081, [1082] = 1082, - [1083] = 1070, - [1084] = 917, - [1085] = 1085, - [1086] = 914, + [1083] = 892, + [1084] = 557, + [1085] = 1081, + [1086] = 916, [1087] = 1087, - [1088] = 1088, - [1089] = 1089, + [1088] = 1082, + [1089] = 1052, [1090] = 1090, - [1091] = 1091, + [1091] = 612, [1092] = 1087, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, + [1094] = 1051, + [1095] = 1061, + [1096] = 1073, + [1097] = 1062, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 1075, - [1102] = 1102, + [1100] = 1073, + [1101] = 1101, + [1102] = 929, [1103] = 1103, [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, + [1105] = 1099, + [1106] = 1063, + [1107] = 1104, + [1108] = 612, [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 916, - [1113] = 1108, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1099, - [1119] = 1119, - [1120] = 1109, - [1121] = 1100, - [1122] = 1122, - [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, + [1110] = 1098, + [1111] = 1093, + [1112] = 1112, + [1113] = 1113, + [1114] = 1051, + [1115] = 880, + [1116] = 849, + [1117] = 1064, + [1118] = 1057, + [1119] = 612, + [1120] = 1055, + [1121] = 1112, + [1122] = 1056, + [1123] = 1054, + [1124] = 1069, + [1125] = 1113, + [1126] = 915, + [1127] = 1127, + [1128] = 1128, + [1129] = 1090, + [1130] = 929, + [1131] = 1103, + [1132] = 915, + [1133] = 1078, + [1134] = 1066, + [1135] = 890, + [1136] = 1127, + [1137] = 892, + [1138] = 1128, + [1139] = 1139, + [1140] = 1140, [1141] = 1141, - [1142] = 1095, - [1143] = 1096, - [1144] = 1097, - [1145] = 1098, - [1146] = 1093, - [1147] = 1094, - [1148] = 914, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, [1149] = 1149, - [1150] = 1141, - [1151] = 1132, - [1152] = 1078, - [1153] = 1085, - [1154] = 1115, - [1155] = 1106, - [1156] = 1107, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, [1157] = 1157, - [1158] = 1088, - [1159] = 904, + [1158] = 1158, + [1159] = 1159, [1160] = 1160, - [1161] = 1149, + [1161] = 1161, [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, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, [1178] = 1178, [1179] = 1179, [1180] = 1180, @@ -5846,15 +5703,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1188, + [1215] = 1215, [1216] = 1216, [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 1182, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1190, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, @@ -5866,7 +5723,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1234, + [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, @@ -5874,45 +5731,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 1197, - [1244] = 1231, - [1245] = 1238, - [1246] = 1240, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 1179, - [1251] = 1251, + [1250] = 1250, + [1251] = 1139, [1252] = 1252, - [1253] = 1214, - [1254] = 1254, + [1253] = 1189, + [1254] = 1066, [1255] = 1255, [1256] = 1256, [1257] = 1257, - [1258] = 1182, + [1258] = 1258, [1259] = 1259, - [1260] = 1260, + [1260] = 1255, [1261] = 1261, [1262] = 1262, [1263] = 1263, - [1264] = 1248, + [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1251, + [1267] = 1267, [1268] = 1268, [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1241, + [1272] = 1272, [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1237, + [1274] = 1142, + [1275] = 1149, + [1276] = 1150, + [1277] = 1151, + [1278] = 1181, + [1279] = 1182, + [1280] = 1208, + [1281] = 1281, [1282] = 1282, [1283] = 1283, [1284] = 1284, @@ -5930,197 +5787,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1241, - [1300] = 1197, - [1301] = 1231, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1238, - [1306] = 1252, + [1305] = 1305, + [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1206, + [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1249, - [1314] = 1181, - [1315] = 1179, - [1316] = 1183, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1316, [1317] = 1317, - [1318] = 1184, + [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1214, - [1322] = 1182, + [1321] = 1321, + [1322] = 1322, [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] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1260, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1241, - [1441] = 1441, - [1442] = 1312, - [1443] = 1197, - [1444] = 1247, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1231, - [1449] = 1449, - [1450] = 1238, + [1324] = 1324, + [1325] = 1242, + [1326] = 1243, + [1327] = 1244, + [1328] = 1245, + [1329] = 1246, + [1330] = 1249, + [1331] = 1256, + [1332] = 1189, + [1333] = 1255, + [1334] = 1257, + [1335] = 1261, + [1336] = 1270, + [1337] = 1258, + [1338] = 1242, + [1339] = 1243, + [1340] = 1244, + [1341] = 1245, + [1342] = 1246, + [1343] = 1249, + [1344] = 1344, + [1345] = 1189, + [1346] = 1255, + [1347] = 1261, + [1348] = 1270, + [1349] = 612, + [1350] = 1242, + [1351] = 1243, + [1352] = 1244, + [1353] = 1245, + [1354] = 1246, + [1355] = 1355, + [1356] = 1249, + [1357] = 1357, + [1358] = 1189, + [1359] = 1255, + [1360] = 1360, + [1361] = 1361, + [1362] = 1261, + [1363] = 1270, + [1364] = 1242, + [1365] = 1243, + [1366] = 1244, + [1367] = 1245, + [1368] = 1246, + [1369] = 1189, + [1370] = 1255, + [1371] = 1371, + [1372] = 1261, + [1373] = 1270, + [1374] = 1374, + [1375] = 1242, + [1376] = 1243, + [1377] = 1244, + [1378] = 1245, + [1379] = 1246, + [1380] = 1189, + [1381] = 1255, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1261, + [1386] = 1386, + [1387] = 1270, + [1388] = 1388, + [1389] = 1389, + [1390] = 1242, + [1391] = 1243, + [1392] = 1244, + [1393] = 1245, + [1394] = 1246, + [1395] = 1395, + [1396] = 1189, + [1397] = 1255, + [1398] = 1261, + [1399] = 1270, + [1400] = 1242, + [1401] = 1243, + [1402] = 1244, + [1403] = 1245, + [1404] = 1246, + [1405] = 1189, + [1406] = 1255, + [1407] = 1261, + [1408] = 1270, + [1409] = 1281, + [1410] = 557, + [1411] = 1282, + [1412] = 1242, + [1413] = 1283, + [1414] = 1243, + [1415] = 1244, + [1416] = 1245, + [1417] = 1246, + [1418] = 1189, + [1419] = 1255, + [1420] = 1284, + [1421] = 1285, + [1422] = 1261, + [1423] = 1286, + [1424] = 1270, + [1425] = 1242, + [1426] = 1243, + [1427] = 1244, + [1428] = 1245, + [1429] = 1246, + [1430] = 1189, + [1431] = 1255, + [1432] = 1261, + [1433] = 1270, + [1434] = 1287, + [1435] = 1242, + [1436] = 1243, + [1437] = 1244, + [1438] = 1245, + [1439] = 1246, + [1440] = 1189, + [1441] = 1255, + [1442] = 1261, + [1443] = 1270, + [1444] = 1444, + [1445] = 1288, + [1446] = 1289, + [1447] = 1290, + [1448] = 1291, + [1449] = 1292, + [1450] = 557, [1451] = 1451, [1452] = 1452, [1453] = 1453, [1454] = 1454, - [1455] = 1193, - [1456] = 1249, + [1455] = 1455, + [1456] = 1456, [1457] = 1457, - [1458] = 1179, - [1459] = 1194, + [1458] = 1458, + [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 1195, + [1464] = 1464, [1465] = 1465, - [1466] = 1466, + [1466] = 1371, [1467] = 1467, - [1468] = 1468, - [1469] = 1199, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, + [1468] = 1242, + [1469] = 1242, + [1470] = 1243, + [1471] = 1244, + [1472] = 1245, + [1473] = 1246, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, - [1478] = 1478, - [1479] = 1479, + [1478] = 1259, + [1479] = 1255, [1480] = 1480, [1481] = 1481, - [1482] = 1214, + [1482] = 1476, [1483] = 1483, [1484] = 1484, - [1485] = 1485, + [1485] = 1270, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1182, + [1489] = 1243, [1490] = 1490, [1491] = 1491, [1492] = 1492, @@ -6128,620 +5985,620 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, + [1497] = 1293, + [1498] = 1294, + [1499] = 1295, + [1500] = 1244, + [1501] = 1296, [1502] = 1502, - [1503] = 1503, + [1503] = 1297, [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, + [1505] = 1298, + [1506] = 1299, + [1507] = 1300, [1508] = 1508, - [1509] = 1509, - [1510] = 1510, + [1509] = 1245, + [1510] = 1301, [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1237, + [1516] = 1516, [1517] = 1517, [1518] = 1518, - [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, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1153, + [1525] = 1525, + [1526] = 1526, + [1527] = 1140, + [1528] = 1141, + [1529] = 1246, + [1530] = 1530, + [1531] = 1143, + [1532] = 1144, + [1533] = 1145, + [1534] = 1146, + [1535] = 1147, + [1536] = 1148, + [1537] = 1152, + [1538] = 1261, + [1539] = 1483, + [1540] = 1154, + [1541] = 1155, + [1542] = 1156, + [1543] = 1157, + [1544] = 1262, + [1545] = 1158, + [1546] = 1263, + [1547] = 1303, + [1548] = 1304, + [1549] = 1264, + [1550] = 1305, + [1551] = 1265, + [1552] = 1306, + [1553] = 1307, + [1554] = 1266, + [1555] = 1267, + [1556] = 1308, + [1557] = 1159, + [1558] = 1160, + [1559] = 1161, + [1560] = 1162, + [1561] = 1163, + [1562] = 1164, + [1563] = 1165, + [1564] = 1564, + [1565] = 1166, + [1566] = 1167, + [1567] = 1168, [1568] = 1568, - [1569] = 1569, - [1570] = 1237, - [1571] = 1241, - [1572] = 1260, - [1573] = 1540, - [1574] = 1574, - [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] = 1413, - [1614] = 1214, - [1615] = 1414, - [1616] = 1182, - [1617] = 1617, - [1618] = 1418, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [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] = 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] = 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, + [1569] = 1169, + [1570] = 1170, + [1571] = 1171, + [1572] = 1572, + [1573] = 1573, + [1574] = 1172, + [1575] = 1242, + [1576] = 1480, + [1577] = 1243, + [1578] = 1244, + [1579] = 1245, + [1580] = 1246, + [1581] = 1189, + [1582] = 1255, + [1583] = 1261, + [1584] = 1270, + [1585] = 1242, + [1586] = 1243, + [1587] = 1244, + [1588] = 1245, + [1589] = 1246, + [1590] = 1249, + [1591] = 1189, + [1592] = 1255, + [1593] = 1261, + [1594] = 1270, + [1595] = 1242, + [1596] = 1243, + [1597] = 1244, + [1598] = 1245, + [1599] = 1246, + [1600] = 1255, + [1601] = 1270, + [1602] = 1242, + [1603] = 1243, + [1604] = 1244, + [1605] = 1245, + [1606] = 1246, + [1607] = 1189, + [1608] = 1255, + [1609] = 1261, + [1610] = 1270, + [1611] = 1242, + [1612] = 1243, + [1613] = 1244, + [1614] = 1245, + [1615] = 1246, + [1616] = 1255, + [1617] = 1270, + [1618] = 1242, + [1619] = 1243, + [1620] = 1244, + [1621] = 1245, + [1622] = 1246, + [1623] = 1255, + [1624] = 1270, + [1625] = 1242, + [1626] = 1243, + [1627] = 1244, + [1628] = 1245, + [1629] = 1246, + [1630] = 1255, + [1631] = 1270, + [1632] = 1242, + [1633] = 1243, + [1634] = 1244, + [1635] = 1245, + [1636] = 1246, + [1637] = 1255, + [1638] = 1270, + [1639] = 1242, + [1640] = 1243, + [1641] = 1244, + [1642] = 1245, + [1643] = 1246, + [1644] = 1255, + [1645] = 1270, + [1646] = 1242, + [1647] = 1243, + [1648] = 1244, + [1649] = 1245, + [1650] = 1246, + [1651] = 1255, + [1652] = 1270, + [1653] = 1242, + [1654] = 1243, + [1655] = 1244, + [1656] = 1245, + [1657] = 1246, + [1658] = 1189, + [1659] = 1255, + [1660] = 1261, + [1661] = 1270, + [1662] = 1189, + [1663] = 1261, + [1664] = 1173, + [1665] = 1463, + [1666] = 1464, + [1667] = 1174, + [1668] = 1175, + [1669] = 1268, + [1670] = 1269, + [1671] = 1176, + [1672] = 1177, + [1673] = 1178, + [1674] = 1476, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1270, + [1679] = 1679, + [1680] = 1680, + [1681] = 1183, + [1682] = 1184, + [1683] = 1185, + [1684] = 1186, + [1685] = 1187, + [1686] = 1188, + [1687] = 1309, + [1688] = 1310, + [1689] = 1311, + [1690] = 1312, + [1691] = 1313, + [1692] = 1692, + [1693] = 1190, + [1694] = 1191, + [1695] = 1192, + [1696] = 1193, + [1697] = 1194, + [1698] = 1195, + [1699] = 1196, + [1700] = 1197, + [1701] = 1198, + [1702] = 1199, + [1703] = 1200, + [1704] = 1704, + [1705] = 1201, + [1706] = 1202, + [1707] = 1203, + [1708] = 1204, + [1709] = 1205, + [1710] = 1206, + [1711] = 1711, + [1712] = 1712, + [1713] = 1207, + [1714] = 1714, + [1715] = 1715, + [1716] = 1209, + [1717] = 1210, + [1718] = 1211, + [1719] = 1212, + [1720] = 1314, + [1721] = 1315, + [1722] = 1316, + [1723] = 1213, + [1724] = 1214, + [1725] = 1215, + [1726] = 1216, + [1727] = 1217, + [1728] = 1218, + [1729] = 1219, + [1730] = 1220, + [1731] = 1221, + [1732] = 1222, + [1733] = 1223, + [1734] = 1224, + [1735] = 1225, + [1736] = 1226, + [1737] = 1227, + [1738] = 1738, + [1739] = 1228, + [1740] = 1229, + [1741] = 1317, + [1742] = 1318, + [1743] = 1230, + [1744] = 1231, + [1745] = 1232, + [1746] = 1233, + [1747] = 1234, + [1748] = 1242, + [1749] = 1480, + [1750] = 1243, + [1751] = 1244, + [1752] = 1245, + [1753] = 1246, + [1754] = 1189, + [1755] = 1255, + [1756] = 1261, + [1757] = 1270, + [1758] = 1249, + [1759] = 1242, + [1760] = 1243, + [1761] = 1244, + [1762] = 1245, + [1763] = 1246, + [1764] = 1255, + [1765] = 1270, + [1766] = 1242, + [1767] = 1243, + [1768] = 1244, + [1769] = 1245, + [1770] = 1246, + [1771] = 1189, + [1772] = 1255, + [1773] = 1261, + [1774] = 1270, + [1775] = 1235, + [1776] = 1236, + [1777] = 1237, + [1778] = 1463, + [1779] = 1464, + [1780] = 1238, + [1781] = 1319, + [1782] = 1320, + [1783] = 1464, + [1784] = 1239, + [1785] = 1240, + [1786] = 1321, + [1787] = 1322, + [1788] = 1476, + [1789] = 1249, + [1790] = 1242, + [1791] = 1480, + [1792] = 1484, + [1793] = 1243, + [1794] = 1244, + [1795] = 1245, + [1796] = 1246, + [1797] = 1797, + [1798] = 1798, + [1799] = 1249, + [1800] = 1800, + [1801] = 1189, + [1802] = 1255, + [1803] = 1360, + [1804] = 1242, + [1805] = 1243, + [1806] = 1244, + [1807] = 1245, + [1808] = 1246, + [1809] = 1255, + [1810] = 1270, + [1811] = 1249, + [1812] = 1242, + [1813] = 1243, + [1814] = 1244, + [1815] = 1245, + [1816] = 1246, + [1817] = 1255, + [1818] = 1270, + [1819] = 1463, + [1820] = 1464, + [1821] = 1462, + [1822] = 1822, + [1823] = 1823, + [1824] = 1463, + [1825] = 1464, + [1826] = 1502, + [1827] = 1530, + [1828] = 1828, + [1829] = 1261, + [1830] = 1830, + [1831] = 1676, + [1832] = 1270, + [1833] = 1463, + [1834] = 1692, + [1835] = 1835, + [1836] = 1463, + [1837] = 1837, + [1838] = 1838, + [1839] = 1800, + [1840] = 1463, + [1841] = 1841, + [1842] = 1828, + [1843] = 1830, + [1844] = 1835, + [1845] = 1837, + [1846] = 1496, + [1847] = 1463, + [1848] = 1247, + [1849] = 1250, + [1850] = 1252, [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, + [1852] = 1302, + [1853] = 1323, + [1854] = 1854, + [1855] = 1463, + [1856] = 1374, + [1857] = 1463, + [1858] = 1382, + [1859] = 1383, + [1860] = 1386, + [1861] = 1463, + [1862] = 1388, + [1863] = 1463, + [1864] = 1389, + [1865] = 1463, + [1866] = 1395, + [1867] = 1463, + [1868] = 1463, + [1869] = 1463, + [1870] = 1463, + [1871] = 1463, + [1872] = 1463, + [1873] = 1463, [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] = 1484, - [1961] = 1890, - [1962] = 1214, - [1963] = 1488, - [1964] = 1964, - [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] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 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] = 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, + [1875] = 1463, + [1876] = 1463, + [1877] = 1463, + [1878] = 1463, + [1879] = 1463, + [1880] = 1463, + [1881] = 1463, + [1882] = 1463, + [1883] = 1463, + [1884] = 1508, + [1885] = 1452, + [1886] = 1453, + [1887] = 1455, + [1888] = 1456, + [1889] = 1324, + [1890] = 1344, + [1891] = 1457, + [1892] = 1460, + [1893] = 1675, + [1894] = 1677, + [1895] = 1841, + [1896] = 1248, + [1897] = 1461, + [1898] = 1454, + [1899] = 1458, + [1900] = 1459, + [1901] = 1517, + [1902] = 1521, + [1903] = 1522, + [1904] = 1525, + [1905] = 1526, + [1906] = 1564, + [1907] = 1568, + [1908] = 1572, + [1909] = 1573, + [1910] = 1704, + [1911] = 1189, + [1912] = 1261, + [1913] = 1242, + [1914] = 1243, + [1915] = 1244, + [1916] = 1245, + [1917] = 1246, + [1918] = 1255, + [1919] = 1270, + [1920] = 1242, + [1921] = 1243, + [1922] = 1244, + [1923] = 1245, + [1924] = 1246, + [1925] = 1255, + [1926] = 1270, + [1927] = 1508, + [1928] = 1344, + [1929] = 1675, + [1930] = 1677, + [1931] = 1841, + [1932] = 1248, + [1933] = 1139, + [1934] = 1454, + [1935] = 1458, + [1936] = 1459, + [1937] = 1517, + [1938] = 1521, + [1939] = 1522, + [1940] = 1525, + [1941] = 1526, + [1942] = 1564, + [1943] = 1568, + [1944] = 1572, + [1945] = 1573, + [1946] = 1704, + [1947] = 1508, + [1948] = 1465, + [1949] = 1344, + [1950] = 1675, + [1951] = 1677, + [1952] = 1841, + [1953] = 1248, + [1954] = 1139, + [1955] = 1454, + [1956] = 1458, + [1957] = 1459, + [1958] = 1517, + [1959] = 1521, + [1960] = 1522, + [1961] = 1525, + [1962] = 1526, + [1963] = 1564, + [1964] = 1568, + [1965] = 1572, + [1966] = 1573, + [1967] = 1704, + [1968] = 1467, + [1969] = 1508, + [1970] = 1474, + [1971] = 1841, + [1972] = 1475, + [1973] = 1508, + [1974] = 1271, + [1975] = 1841, + [1976] = 1481, + [1977] = 1508, + [1978] = 1508, + [1979] = 1508, + [1980] = 1508, + [1981] = 1508, + [1982] = 1508, + [1983] = 1508, + [1984] = 1508, + [1985] = 1508, + [1986] = 1508, + [1987] = 1508, + [1988] = 1508, + [1989] = 1508, + [1990] = 1508, + [1991] = 1508, + [1992] = 1508, + [1993] = 1508, + [1994] = 1508, + [1995] = 1508, + [1996] = 1508, + [1997] = 1508, + [1998] = 1508, + [1999] = 1508, + [2000] = 1508, + [2001] = 1508, + [2002] = 1711, + [2003] = 1384, + [2004] = 1272, + [2005] = 1488, + [2006] = 1508, + [2007] = 1486, + [2008] = 1487, + [2009] = 1490, + [2010] = 1491, + [2011] = 1715, + [2012] = 1273, + [2013] = 1492, + [2014] = 1854, + [2015] = 1493, + [2016] = 1494, + [2017] = 1355, + [2018] = 1249, + [2019] = 1242, + [2020] = 1243, + [2021] = 1244, + [2022] = 1245, + [2023] = 1246, + [2024] = 1255, + [2025] = 1270, + [2026] = 1242, + [2027] = 1243, + [2028] = 1244, + [2029] = 1245, + [2030] = 1246, + [2031] = 1255, + [2032] = 1270, + [2033] = 1480, + [2034] = 1463, + [2035] = 1463, + [2036] = 1508, + [2037] = 1508, + [2038] = 1512, + [2039] = 1513, + [2040] = 1514, + [2041] = 1515, + [2042] = 1516, + [2043] = 1518, + [2044] = 1519, + [2045] = 1242, + [2046] = 1243, + [2047] = 1244, + [2048] = 1245, + [2049] = 1246, + [2050] = 1255, + [2051] = 1270, + [2052] = 1520, + [2053] = 1523, + [2054] = 1463, + [2055] = 1508, + [2056] = 1477, [2057] = 2057, - [2058] = 2034, + [2058] = 2058, [2059] = 2059, [2060] = 2060, [2061] = 2061, - [2062] = 2059, + [2062] = 2062, [2063] = 2063, [2064] = 2064, - [2065] = 2060, + [2065] = 2065, [2066] = 2066, - [2067] = 2067, + [2067] = 612, [2068] = 2068, - [2069] = 2069, + [2069] = 557, [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, + [2071] = 557, + [2072] = 557, + [2073] = 557, [2074] = 2074, - [2075] = 2075, + [2075] = 617, [2076] = 2076, [2077] = 2077, [2078] = 2078, [2079] = 2079, - [2080] = 2016, - [2081] = 2025, - [2082] = 2017, - [2083] = 2018, - [2084] = 2019, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 2084, [2085] = 2085, - [2086] = 2027, + [2086] = 2086, [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, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2060, + [2095] = 2061, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2076, + [2102] = 2102, + [2103] = 2065, + [2104] = 2068, + [2105] = 2074, + [2106] = 2106, + [2107] = 2107, [2108] = 2108, - [2109] = 2109, - [2110] = 1082, + [2109] = 617, + [2110] = 2110, [2111] = 2111, [2112] = 2112, [2113] = 2113, @@ -6752,4885 +6609,5229 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2118] = 2118, [2119] = 2119, [2120] = 2120, - [2121] = 2121, - [2122] = 2108, - [2123] = 2109, + [2121] = 2064, + [2122] = 2122, + [2123] = 2123, [2124] = 2124, - [2125] = 2125, + [2125] = 2114, [2126] = 2126, - [2127] = 2111, + [2127] = 2127, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, + [2129] = 557, + [2130] = 617, [2131] = 2131, - [2132] = 2112, - [2133] = 2056, + [2132] = 2084, + [2133] = 557, [2134] = 2134, - [2135] = 2135, - [2136] = 2113, - [2137] = 2067, - [2138] = 2138, - [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] = 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] = 730, - [2200] = 2198, - [2201] = 729, - [2202] = 2202, - [2203] = 2203, - [2204] = 2197, - [2205] = 2203, - [2206] = 2206, - [2207] = 2203, - [2208] = 2197, - [2209] = 2196, - [2210] = 2210, - [2211] = 2210, - [2212] = 2210, - [2213] = 2210, - [2214] = 2210, - [2215] = 2210, - [2216] = 2210, - [2217] = 2217, - [2218] = 2217, + [2135] = 2118, + [2136] = 2136, + [2137] = 2137, + [2138] = 2112, + [2139] = 2139, + [2140] = 2078, + [2141] = 2081, + [2142] = 2142, + [2143] = 2090, + [2144] = 2091, + [2145] = 2102, + [2146] = 2146, + [2147] = 2120, + [2148] = 2122, + [2149] = 2123, + [2150] = 2124, + [2151] = 2126, + [2152] = 2127, + [2153] = 2128, + [2154] = 2131, + [2155] = 2057, + [2156] = 2137, + [2157] = 2139, + [2158] = 2142, + [2159] = 2159, + [2160] = 2160, + [2161] = 2161, + [2162] = 2159, + [2163] = 2160, + [2164] = 2164, + [2165] = 2096, + [2166] = 2099, + [2167] = 2161, + [2168] = 2106, + [2169] = 2107, + [2170] = 2108, + [2171] = 2110, + [2172] = 2111, + [2173] = 2113, + [2174] = 2119, + [2175] = 2134, + [2176] = 2176, + [2177] = 2146, + [2178] = 2178, + [2179] = 2179, + [2180] = 2164, + [2181] = 2178, + [2182] = 2136, + [2183] = 2183, + [2184] = 2179, + [2185] = 612, + [2186] = 2058, + [2187] = 2059, + [2188] = 2063, + [2189] = 2115, + [2190] = 2083, + [2191] = 2085, + [2192] = 2077, + [2193] = 2079, + [2194] = 1066, + [2195] = 2080, + [2196] = 2082, + [2197] = 2116, + [2198] = 2062, + [2199] = 2066, + [2200] = 2100, + [2201] = 2086, + [2202] = 2087, + [2203] = 2088, + [2204] = 2089, + [2205] = 2117, + [2206] = 2183, + [2207] = 2092, + [2208] = 2093, + [2209] = 2097, + [2210] = 2098, + [2211] = 2176, + [2212] = 741, + [2213] = 730, + [2214] = 2214, + [2215] = 2215, + [2216] = 2214, + [2217] = 2215, + [2218] = 2218, [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2221, - [2223] = 2221, - [2224] = 2221, - [2225] = 2221, - [2226] = 2221, - [2227] = 2221, - [2228] = 2221, - [2229] = 2221, - [2230] = 2221, - [2231] = 2221, + [2220] = 2218, + [2221] = 2219, + [2222] = 2219, + [2223] = 2218, + [2224] = 2224, + [2225] = 741, + [2226] = 2226, + [2227] = 730, + [2228] = 2226, + [2229] = 2229, + [2230] = 2230, + [2231] = 2224, [2232] = 2232, - [2233] = 2221, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2234, + [2233] = 2232, + [2234] = 2232, + [2235] = 2232, + [2236] = 2232, + [2237] = 2232, [2238] = 2238, [2239] = 2239, - [2240] = 2234, - [2241] = 2241, + [2240] = 2240, + [2241] = 2240, [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, + [2243] = 2242, + [2244] = 2244, + [2245] = 2242, + [2246] = 2242, + [2247] = 2242, + [2248] = 2242, + [2249] = 2242, + [2250] = 2242, + [2251] = 2242, + [2252] = 2242, + [2253] = 2242, + [2254] = 2242, [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] = 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, + [2256] = 2242, + [2257] = 2242, + [2258] = 2258, + [2259] = 2259, + [2260] = 2258, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2258, + [2267] = 2261, + [2268] = 2262, + [2269] = 2259, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2263, + [2274] = 2262, + [2275] = 2270, + [2276] = 2271, + [2277] = 2258, + [2278] = 2261, + [2279] = 2272, + [2280] = 2262, + [2281] = 2263, + [2282] = 2270, + [2283] = 2271, + [2284] = 2259, + [2285] = 2272, + [2286] = 2259, + [2287] = 2263, + [2288] = 2270, + [2289] = 2258, + [2290] = 2259, + [2291] = 2258, + [2292] = 2261, + [2293] = 2262, + [2294] = 2259, + [2295] = 2263, + [2296] = 2270, + [2297] = 2271, + [2298] = 2272, + [2299] = 2261, + [2300] = 2259, + [2301] = 2262, + [2302] = 2263, + [2303] = 2270, + [2304] = 2271, + [2305] = 2264, + [2306] = 2272, + [2307] = 2307, + [2308] = 2258, + [2309] = 2261, + [2310] = 2310, + [2311] = 2311, + [2312] = 2262, + [2313] = 2263, + [2314] = 2270, + [2315] = 2271, + [2316] = 2272, + [2317] = 2317, + [2318] = 2258, + [2319] = 2261, + [2320] = 2262, + [2321] = 2265, + [2322] = 2263, + [2323] = 2258, + [2324] = 2261, + [2325] = 2262, + [2326] = 2270, + [2327] = 2271, + [2328] = 2272, + [2329] = 2259, + [2330] = 2263, + [2331] = 2270, + [2332] = 2271, + [2333] = 2272, + [2334] = 2258, + [2335] = 2261, + [2336] = 2262, + [2337] = 2263, + [2338] = 2270, + [2339] = 2271, + [2340] = 2259, + [2341] = 2272, + [2342] = 2264, + [2343] = 2307, + [2344] = 2311, + [2345] = 2345, + [2346] = 2317, + [2347] = 2317, + [2348] = 2258, + [2349] = 2261, + [2350] = 2310, + [2351] = 2262, + [2352] = 2263, + [2353] = 2270, + [2354] = 2271, + [2355] = 2272, + [2356] = 2258, + [2357] = 2261, + [2358] = 2262, + [2359] = 2265, + [2360] = 2259, + [2361] = 2263, + [2362] = 2270, + [2363] = 2271, + [2364] = 2272, + [2365] = 2258, + [2366] = 2261, + [2367] = 2262, + [2368] = 2263, + [2369] = 2369, + [2370] = 2270, + [2371] = 2371, + [2372] = 2271, + [2373] = 2307, + [2374] = 2272, + [2375] = 2258, + [2376] = 2261, + [2377] = 2262, + [2378] = 2259, + [2379] = 2263, + [2380] = 2264, + [2381] = 2307, + [2382] = 2270, + [2383] = 2271, + [2384] = 2272, + [2385] = 2258, + [2386] = 2369, + [2387] = 2262, + [2388] = 2263, + [2389] = 2270, + [2390] = 2271, + [2391] = 2272, + [2392] = 2264, + [2393] = 2307, [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, + [2395] = 2259, + [2396] = 2264, + [2397] = 2307, + [2398] = 2310, + [2399] = 2263, + [2400] = 2264, + [2401] = 2307, + [2402] = 2264, + [2403] = 2307, + [2404] = 2310, + [2405] = 2311, + [2406] = 2264, + [2407] = 2307, + [2408] = 2271, + [2409] = 2272, + [2410] = 2270, + [2411] = 2264, + [2412] = 2307, + [2413] = 2311, + [2414] = 2258, + [2415] = 2261, + [2416] = 2264, + [2417] = 2307, + [2418] = 2262, + [2419] = 2259, + [2420] = 2258, + [2421] = 2261, + [2422] = 2262, + [2423] = 2264, + [2424] = 2307, + [2425] = 2263, + [2426] = 2264, + [2427] = 2307, + [2428] = 2270, + [2429] = 2264, + [2430] = 2307, + [2431] = 2264, + [2432] = 2307, + [2433] = 2264, + [2434] = 2307, + [2435] = 2271, + [2436] = 2264, + [2437] = 2307, + [2438] = 2264, + [2439] = 2307, + [2440] = 2265, + [2441] = 2264, + [2442] = 2307, + [2443] = 2264, + [2444] = 2307, + [2445] = 2272, + [2446] = 2264, + [2447] = 2307, + [2448] = 2264, + [2449] = 2264, + [2450] = 2264, + [2451] = 2264, + [2452] = 2264, + [2453] = 2264, + [2454] = 2264, + [2455] = 2264, + [2456] = 2264, + [2457] = 2264, + [2458] = 2263, + [2459] = 2271, + [2460] = 2258, + [2461] = 2261, + [2462] = 2262, + [2463] = 2259, + [2464] = 2263, + [2465] = 2270, + [2466] = 2271, + [2467] = 2272, + [2468] = 2270, + [2469] = 2272, + [2470] = 2258, + [2471] = 2258, + [2472] = 2271, + [2473] = 2261, + [2474] = 2272, + [2475] = 2262, + [2476] = 2263, + [2477] = 2270, + [2478] = 2317, + [2479] = 2271, + [2480] = 2258, + [2481] = 2261, + [2482] = 2262, + [2483] = 2259, + [2484] = 2263, + [2485] = 2270, + [2486] = 2271, + [2487] = 2272, + [2488] = 2272, + [2489] = 2261, + [2490] = 2262, + [2491] = 2261, + [2492] = 2369, + [2493] = 2369, + [2494] = 2261, + [2495] = 2495, + [2496] = 2495, + [2497] = 2497, + [2498] = 2498, + [2499] = 2498, + [2500] = 2497, [2501] = 2501, - [2502] = 2450, - [2503] = 2441, - [2504] = 2462, - [2505] = 2462, - [2506] = 2438, - [2507] = 2436, - [2508] = 2450, - [2509] = 2436, + [2502] = 2502, + [2503] = 2503, + [2504] = 2502, + [2505] = 2505, + [2506] = 2506, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, [2510] = 2510, - [2511] = 2448, - [2512] = 2450, - [2513] = 2440, - [2514] = 2448, - [2515] = 2441, - [2516] = 2462, - [2517] = 2440, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2516, [2518] = 2518, - [2519] = 2462, - [2520] = 2458, - [2521] = 2521, - [2522] = 2462, + [2519] = 2511, + [2520] = 2518, + [2521] = 2506, + [2522] = 2522, [2523] = 2523, - [2524] = 2428, - [2525] = 2525, + [2524] = 2523, + [2525] = 2523, [2526] = 2526, - [2527] = 2527, - [2528] = 2528, + [2527] = 2526, + [2528] = 2523, [2529] = 2529, - [2530] = 2530, - [2531] = 2531, - [2532] = 2532, + [2530] = 2529, + [2531] = 2529, + [2532] = 2529, [2533] = 2533, [2534] = 2534, - [2535] = 2521, - [2536] = 2525, - [2537] = 2526, + [2535] = 2535, + [2536] = 2535, + [2537] = 2534, [2538] = 2538, [2539] = 2539, - [2540] = 2518, - [2541] = 2541, + [2540] = 2540, + [2541] = 2539, [2542] = 2542, - [2543] = 2518, - [2544] = 2544, - [2545] = 2545, + [2543] = 2543, + [2544] = 2540, + [2545] = 2543, [2546] = 2546, [2547] = 2547, [2548] = 2548, - [2549] = 2527, - [2550] = 2532, - [2551] = 2458, - [2552] = 2436, + [2549] = 2549, + [2550] = 2548, + [2551] = 2546, + [2552] = 2552, [2553] = 2553, - [2554] = 2400, + [2554] = 2549, [2555] = 2555, - [2556] = 2556, - [2557] = 2457, - [2558] = 2401, - [2559] = 2530, - [2560] = 2531, - [2561] = 2441, - [2562] = 2562, + [2556] = 2552, + [2557] = 2557, + [2558] = 2558, + [2559] = 2555, + [2560] = 2560, + [2561] = 2561, + [2562] = 2542, [2563] = 2563, - [2564] = 2564, - [2565] = 2532, - [2566] = 2533, - [2567] = 2534, + [2564] = 2553, + [2565] = 2557, + [2566] = 2542, + [2567] = 2558, [2568] = 2568, - [2569] = 2525, - [2570] = 2526, - [2571] = 2538, - [2572] = 2518, - [2573] = 2438, - [2574] = 2453, + [2569] = 2542, + [2570] = 2394, + [2571] = 2571, + [2572] = 2572, + [2573] = 2542, + [2574] = 2547, [2575] = 2575, - [2576] = 2530, - [2577] = 2531, - [2578] = 2578, - [2579] = 2579, - [2580] = 2462, + [2576] = 2542, + [2577] = 2577, + [2578] = 2557, + [2579] = 2553, + [2580] = 2558, [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, + [2582] = 2577, + [2583] = 2558, + [2584] = 2547, + [2585] = 2561, + [2586] = 2577, + [2587] = 2547, + [2588] = 2577, + [2589] = 2563, + [2590] = 2577, + [2591] = 2547, + [2592] = 2557, + [2593] = 2557, + [2594] = 2553, + [2595] = 2547, + [2596] = 2596, + [2597] = 2557, + [2598] = 2577, [2599] = 2599, - [2600] = 2600, - [2601] = 2454, - [2602] = 2521, - [2603] = 2454, - [2604] = 2533, - [2605] = 2605, + [2600] = 2581, + [2601] = 2558, + [2602] = 2602, + [2603] = 2553, + [2604] = 2560, + [2605] = 2558, [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, + [2607] = 2577, + [2608] = 2561, + [2609] = 2542, + [2610] = 2577, + [2611] = 2553, + [2612] = 2612, + [2613] = 2577, + [2614] = 2560, + [2615] = 2575, + [2616] = 2577, + [2617] = 2617, + [2618] = 2560, + [2619] = 2577, + [2620] = 2577, + [2621] = 2560, + [2622] = 2563, [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, + [2624] = 2561, + [2625] = 2577, + [2626] = 2577, + [2627] = 2577, + [2628] = 2577, + [2629] = 2629, + [2630] = 2561, + [2631] = 2631, + [2632] = 2577, + [2633] = 2560, + [2634] = 2634, + [2635] = 2571, + [2636] = 2572, + [2637] = 2561, + [2638] = 2577, + [2639] = 2563, + [2640] = 2577, + [2641] = 2577, + [2642] = 2563, + [2643] = 2577, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2577, [2648] = 2648, - [2649] = 2649, - [2650] = 2643, - [2651] = 2651, - [2652] = 2438, - [2653] = 2454, - [2654] = 2649, + [2649] = 2575, + [2650] = 2650, + [2651] = 2577, + [2652] = 2652, + [2653] = 2653, + [2654] = 2654, [2655] = 2655, - [2656] = 2436, - [2657] = 2651, - [2658] = 2458, - [2659] = 2440, - [2660] = 2648, - [2661] = 2462, + [2656] = 2656, + [2657] = 2657, + [2658] = 2658, + [2659] = 2505, + [2660] = 2575, + [2661] = 2661, [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, + [2663] = 2575, + [2664] = 2664, + [2665] = 2665, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2510, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2673, + [2674] = 2674, + [2675] = 2571, + [2676] = 2652, + [2677] = 2653, + [2678] = 2654, + [2679] = 2679, + [2680] = 2670, + [2681] = 2571, + [2682] = 2572, + [2683] = 2508, + [2684] = 2684, + [2685] = 2685, + [2686] = 2542, + [2687] = 2575, + [2688] = 2599, + [2689] = 2689, + [2690] = 2665, + [2691] = 2661, + [2692] = 2662, + [2693] = 2693, + [2694] = 2694, + [2695] = 2515, + [2696] = 2665, + [2697] = 2571, + [2698] = 2671, + [2699] = 2672, + [2700] = 2568, + [2701] = 2701, + [2702] = 2652, + [2703] = 2653, + [2704] = 2654, + [2705] = 2571, + [2706] = 2670, + [2707] = 2577, + [2708] = 2693, + [2709] = 2572, + [2710] = 2661, + [2711] = 2662, + [2712] = 2712, + [2713] = 2694, + [2714] = 2563, + [2715] = 2693, + [2716] = 2507, + [2717] = 2717, + [2718] = 2718, + [2719] = 2572, + [2720] = 2665, [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] = 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] = 2651, - [2856] = 2582, - [2857] = 2409, - [2858] = 2649, - [2859] = 2492, + [2722] = 2661, + [2723] = 2723, + [2724] = 2724, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, + [2729] = 2671, + [2730] = 2672, + [2731] = 2731, + [2732] = 2694, + [2733] = 2671, + [2734] = 2672, + [2735] = 2662, + [2736] = 2736, + [2737] = 2737, + [2738] = 2652, + [2739] = 2653, + [2740] = 2654, + [2741] = 2741, + [2742] = 2557, + [2743] = 2558, + [2744] = 2577, + [2745] = 2670, + [2746] = 2547, + [2747] = 2513, + [2748] = 2512, + [2749] = 2509, + [2750] = 2750, + [2751] = 2522, + [2752] = 2752, + [2753] = 2553, + [2754] = 2754, + [2755] = 2572, + [2756] = 2756, + [2757] = 2757, + [2758] = 2577, + [2759] = 2693, + [2760] = 2760, + [2761] = 2577, + [2762] = 2577, + [2763] = 2694, + [2764] = 2577, + [2765] = 2694, + [2766] = 2766, + [2767] = 2767, + [2768] = 2623, + [2769] = 2694, + [2770] = 2693, + [2771] = 2760, + [2772] = 2599, + [2773] = 2693, + [2774] = 2694, + [2775] = 2775, + [2776] = 2694, + [2777] = 2693, + [2778] = 2599, + [2779] = 2779, + [2780] = 2693, + [2781] = 2694, + [2782] = 2606, + [2783] = 2783, + [2784] = 2766, + [2785] = 2785, + [2786] = 2786, + [2787] = 2766, + [2788] = 2631, + [2789] = 2612, + [2790] = 2634, + [2791] = 2577, + [2792] = 2694, + [2793] = 2553, + [2794] = 2767, + [2795] = 2786, + [2796] = 2577, + [2797] = 2760, + [2798] = 2693, + [2799] = 2558, + [2800] = 2786, + [2801] = 2629, + [2802] = 2577, + [2803] = 2560, + [2804] = 2561, + [2805] = 2617, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 2775, + [2812] = 2785, + [2813] = 2694, + [2814] = 2693, + [2815] = 2599, + [2816] = 2806, + [2817] = 2807, + [2818] = 2599, + [2819] = 2694, + [2820] = 2810, + [2821] = 2563, + [2822] = 2806, + [2823] = 2807, + [2824] = 2808, + [2825] = 2809, + [2826] = 2810, + [2827] = 2775, + [2828] = 2785, + [2829] = 2808, + [2830] = 2547, + [2831] = 2767, + [2832] = 2694, + [2833] = 2809, + [2834] = 2577, + [2835] = 2557, + [2836] = 2684, + [2837] = 2786, + [2838] = 2806, + [2839] = 2757, + [2840] = 2840, + [2841] = 2503, + [2842] = 2760, + [2843] = 2843, + [2844] = 2844, + [2845] = 2673, + [2846] = 2679, + [2847] = 2808, + [2848] = 2809, + [2849] = 2849, + [2850] = 2807, + [2851] = 2810, + [2852] = 2775, + [2853] = 2631, + [2854] = 2634, + [2855] = 2631, + [2856] = 2606, + [2857] = 2785, + [2858] = 2721, + [2859] = 2859, [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, + [2861] = 2664, + [2862] = 2666, + [2863] = 2723, + [2864] = 2754, + [2865] = 2634, + [2866] = 2750, + [2867] = 2808, + [2868] = 2843, + [2869] = 2844, + [2870] = 2809, + [2871] = 2629, + [2872] = 2617, + [2873] = 2810, + [2874] = 2874, + [2875] = 2507, + [2876] = 2806, + [2877] = 2807, + [2878] = 2808, + [2879] = 2631, + [2880] = 2736, + [2881] = 2840, + [2882] = 2809, + [2883] = 2505, + [2884] = 2634, + [2885] = 2629, + [2886] = 2617, + [2887] = 2767, + [2888] = 2809, + [2889] = 2810, + [2890] = 2775, + [2891] = 2785, + [2892] = 2644, [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, + [2894] = 2810, + [2895] = 2606, + [2896] = 2741, + [2897] = 2767, + [2898] = 2775, + [2899] = 2775, + [2900] = 2606, + [2901] = 2840, + [2902] = 2577, + [2903] = 2785, + [2904] = 2612, + [2905] = 2508, + [2906] = 2502, + [2907] = 2674, + [2908] = 2685, + [2909] = 2785, + [2910] = 2806, + [2911] = 2874, + [2912] = 2807, + [2913] = 2724, + [2914] = 2808, + [2915] = 2560, + [2916] = 2561, + [2917] = 2809, + [2918] = 2810, + [2919] = 2725, + [2920] = 2775, + [2921] = 2785, + [2922] = 2859, + [2923] = 2623, + [2924] = 2860, + [2925] = 2806, + [2926] = 2807, + [2927] = 2513, + [2928] = 2512, + [2929] = 2509, + [2930] = 2808, + [2931] = 2726, + [2932] = 2809, + [2933] = 2810, + [2934] = 2934, + [2935] = 2727, + [2936] = 2786, + [2937] = 2937, + [2938] = 2786, + [2939] = 2694, + [2940] = 2631, + [2941] = 2775, + [2942] = 2634, + [2943] = 2767, + [2944] = 2645, + [2945] = 2650, + [2946] = 2843, + [2947] = 2844, + [2948] = 2767, + [2949] = 2859, + [2950] = 2860, + [2951] = 2785, + [2952] = 2658, + [2953] = 2760, + [2954] = 2655, + [2955] = 2806, + [2956] = 2859, + [2957] = 2860, + [2958] = 2689, + [2959] = 2693, + [2960] = 2767, + [2961] = 2623, + [2962] = 2701, + [2963] = 2760, + [2964] = 2507, + [2965] = 2843, + [2966] = 2844, + [2967] = 2786, + [2968] = 2840, + [2969] = 2874, + [2970] = 2575, + [2971] = 2629, + [2972] = 2617, + [2973] = 2760, + [2974] = 2807, + [2975] = 2623, + [2976] = 2808, + [2977] = 2656, + [2978] = 2694, + [2979] = 2786, + [2980] = 2980, + [2981] = 2760, + [2982] = 2522, + [2983] = 2571, + [2984] = 2731, + [2985] = 2985, + [2986] = 2786, + [2987] = 2849, + [2988] = 2563, + [2989] = 2786, + [2990] = 2515, + [2991] = 2508, + [2992] = 2760, + [2993] = 2657, + [2994] = 2718, + [2995] = 2513, + [2996] = 2512, + [2997] = 2760, + [2998] = 2509, + [2999] = 2806, + [3000] = 2572, + [3001] = 2522, + [3002] = 2728, + [3003] = 2667, + [3004] = 2874, + [3005] = 2756, + [3006] = 2668, + [3007] = 2515, + [3008] = 2807, + [3009] = 2808, + [3010] = 2612, + [3011] = 2693, + [3012] = 2849, + [3013] = 2849, + [3014] = 2577, + [3015] = 2553, + [3016] = 2648, + [3017] = 2809, + [3018] = 2717, + [3019] = 2810, + [3020] = 2775, + [3021] = 2785, + [3022] = 2606, + [3023] = 2712, + [3024] = 2612, + [3025] = 2806, + [3026] = 2807, + [3027] = 2629, + [3028] = 2617, + [3029] = 2510, + [3030] = 2767, + [3031] = 2612, + [3032] = 3032, + [3033] = 2646, + [3034] = 2737, + [3035] = 2767, + [3036] = 2785, + [3037] = 2648, + [3038] = 2728, + [3039] = 2737, + [3040] = 2645, + [3041] = 2667, + [3042] = 2806, + [3043] = 2510, + [3044] = 2684, + [3045] = 2684, + [3046] = 2807, + [3047] = 2808, + [3048] = 3048, + [3049] = 2809, + [3050] = 2810, + [3051] = 3051, + [3052] = 2650, + [3053] = 2775, + [3054] = 2502, + [3055] = 2658, + [3056] = 2658, + [3057] = 2505, + [3058] = 2934, + [3059] = 2689, + [3060] = 2937, + [3061] = 2673, + [3062] = 2679, + [3063] = 2648, + [3064] = 2736, + [3065] = 2644, + [3066] = 2806, + [3067] = 2807, + [3068] = 2737, + [3069] = 2721, + [3070] = 2723, + [3071] = 2754, + [3072] = 2808, + [3073] = 2809, + [3074] = 2750, + [3075] = 3075, + [3076] = 2650, + [3077] = 3077, + [3078] = 2736, + [3079] = 3079, + [3080] = 2674, + [3081] = 3075, [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, + [3083] = 2644, + [3084] = 2934, + [3085] = 2741, + [3086] = 2658, + [3087] = 2937, + [3088] = 2503, + [3089] = 2694, + [3090] = 2668, + [3091] = 3048, + [3092] = 2685, + [3093] = 2505, + [3094] = 3051, + [3095] = 2648, + [3096] = 2717, + [3097] = 3097, + [3098] = 3079, + [3099] = 3082, + [3100] = 2756, + [3101] = 2810, + [3102] = 2775, + [3103] = 2785, + [3104] = 2731, + [3105] = 2674, + [3106] = 2673, + [3107] = 2679, + [3108] = 2685, + [3109] = 2689, + [3110] = 2667, + [3111] = 2684, + [3112] = 2577, + [3113] = 2721, + [3114] = 2721, + [3115] = 2571, + [3116] = 2723, + [3117] = 2724, + [3118] = 2725, + [3119] = 2726, + [3120] = 2727, + [3121] = 2731, + [3122] = 2723, + [3123] = 2655, + [3124] = 2754, + [3125] = 2737, + [3126] = 2645, + [3127] = 2656, + [3128] = 2645, + [3129] = 2657, + [3130] = 2650, + [3131] = 2668, + [3132] = 2750, + [3133] = 2727, + [3134] = 2658, + [3135] = 2736, + [3136] = 2644, + [3137] = 2507, + [3138] = 2741, + [3139] = 2599, + [3140] = 2767, + [3141] = 2757, + [3142] = 2717, + [3143] = 2718, + [3144] = 2701, + [3145] = 2673, + [3146] = 2679, + [3147] = 2757, + [3148] = 2507, + [3149] = 2674, + [3150] = 2685, + [3151] = 2701, + [3152] = 2712, + [3153] = 2646, + [3154] = 2721, + [3155] = 2723, + [3156] = 2724, + [3157] = 3079, + [3158] = 2757, + [3159] = 2754, + [3160] = 2655, + [3161] = 2701, + [3162] = 2724, + [3163] = 2750, + [3164] = 2650, + [3165] = 2505, + [3166] = 2741, + [3167] = 2725, + [3168] = 2515, + [3169] = 2685, + [3170] = 2508, + [3171] = 2726, + [3172] = 2572, + [3173] = 2563, + [3174] = 2656, + [3175] = 3032, + [3176] = 2693, + [3177] = 2724, + [3178] = 2725, + [3179] = 3051, + [3180] = 2726, + [3181] = 2731, + [3182] = 2727, + [3183] = 2648, + [3184] = 2731, + [3185] = 2741, + [3186] = 2673, + [3187] = 2655, + [3188] = 3082, + [3189] = 2756, + [3190] = 2727, + [3191] = 2656, + [3192] = 2508, + [3193] = 2725, + [3194] = 2657, + [3195] = 2718, + [3196] = 2694, + [3197] = 2508, + [3198] = 2718, + [3199] = 2657, + [3200] = 2655, + [3201] = 2726, + [3202] = 2513, + [3203] = 2512, + [3204] = 2509, + [3205] = 2754, + [3206] = 2668, + [3207] = 2656, + [3208] = 2522, + [3209] = 2515, + [3210] = 2717, + [3211] = 2718, + [3212] = 2712, + [3213] = 2657, + [3214] = 2646, + [3215] = 2513, + [3216] = 2505, + [3217] = 2512, + [3218] = 2689, + [3219] = 2750, + [3220] = 2509, + [3221] = 2786, + [3222] = 2737, + [3223] = 2668, + [3224] = 2513, + [3225] = 2760, + [3226] = 2717, + [3227] = 2512, + [3228] = 2712, + [3229] = 2646, + [3230] = 2712, + [3231] = 2646, + [3232] = 2664, + [3233] = 2666, + [3234] = 2522, + [3235] = 2515, + [3236] = 2664, + [3237] = 2666, + [3238] = 2693, + [3239] = 2757, + [3240] = 2701, + [3241] = 2694, + [3242] = 2664, + [3243] = 2666, + [3244] = 2509, + [3245] = 3048, + [3246] = 3077, + [3247] = 2507, + [3248] = 2518, + [3249] = 2511, + [3250] = 2756, + [3251] = 2510, + [3252] = 2575, + [3253] = 2645, + [3254] = 3077, + [3255] = 2728, + [3256] = 3075, + [3257] = 2516, + [3258] = 2728, + [3259] = 2510, + [3260] = 2667, + [3261] = 2684, + [3262] = 2503, + [3263] = 2786, + [3264] = 2689, + [3265] = 2760, + [3266] = 2694, + [3267] = 2679, + [3268] = 2506, + [3269] = 2756, + [3270] = 2736, + [3271] = 2644, + [3272] = 2767, + [3273] = 2728, + [3274] = 2664, + [3275] = 2502, + [3276] = 2666, + [3277] = 2510, + [3278] = 2505, + [3279] = 2667, + [3280] = 2522, + [3281] = 2674, + [3282] = 2785, + [3283] = 2617, + [3284] = 3082, + [3285] = 2809, + [3286] = 3286, + [3287] = 2693, + [3288] = 2512, + [3289] = 2599, + [3290] = 3077, + [3291] = 3075, + [3292] = 3048, + [3293] = 3032, + [3294] = 3051, + [3295] = 3079, + [3296] = 3082, + [3297] = 2508, + [3298] = 3082, + [3299] = 2514, + [3300] = 3075, + [3301] = 2807, + [3302] = 3079, + [3303] = 3303, + [3304] = 3048, + [3305] = 2694, + [3306] = 2507, + [3307] = 2518, + [3308] = 3082, + [3309] = 3082, + [3310] = 2506, + [3311] = 3303, [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] = 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] = 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] = 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] = 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] = 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, + [3313] = 2786, + [3314] = 3077, + [3315] = 3312, + [3316] = 2808, + [3317] = 2767, + [3318] = 2806, + [3319] = 3319, + [3320] = 2807, + [3321] = 2506, + [3322] = 2785, + [3323] = 2509, + [3324] = 2786, + [3325] = 2760, + [3326] = 2515, + [3327] = 3075, + [3328] = 3319, + [3329] = 3077, + [3330] = 3075, + [3331] = 3048, + [3332] = 3051, + [3333] = 3079, + [3334] = 3082, + [3335] = 3303, + [3336] = 3319, + [3337] = 2631, + [3338] = 2634, + [3339] = 2980, + [3340] = 2985, + [3341] = 2775, + [3342] = 3048, + [3343] = 3051, + [3344] = 2767, + [3345] = 2623, + [3346] = 2808, + [3347] = 3303, + [3348] = 3319, + [3349] = 2809, + [3350] = 2810, + [3351] = 2612, + [3352] = 2775, + [3353] = 2806, + [3354] = 2522, + [3355] = 3077, + [3356] = 3051, + [3357] = 3075, + [3358] = 3048, + [3359] = 3051, + [3360] = 2505, + [3361] = 3079, + [3362] = 3082, + [3363] = 2505, + [3364] = 3079, + [3365] = 2606, + [3366] = 3077, + [3367] = 3319, + [3368] = 3368, + [3369] = 2513, + [3370] = 3077, + [3371] = 2760, + [3372] = 2518, + [3373] = 3077, + [3374] = 2511, + [3375] = 2629, + [3376] = 2516, + [3377] = 3075, + [3378] = 3048, + [3379] = 3075, + [3380] = 3048, + [3381] = 2518, + [3382] = 2511, + [3383] = 2516, + [3384] = 2505, + [3385] = 3051, + [3386] = 3051, + [3387] = 3079, + [3388] = 2506, + [3389] = 2510, + [3390] = 2511, + [3391] = 3079, + [3392] = 2516, + [3393] = 2810, + [3394] = 2741, + [3395] = 2631, + [3396] = 2634, + [3397] = 2728, + [3398] = 2667, + [3399] = 2505, + [3400] = 2684, + [3401] = 2756, + [3402] = 2612, + [3403] = 2510, + [3404] = 2934, + [3405] = 3077, + [3406] = 2648, + [3407] = 2807, + [3408] = 2737, + [3409] = 2645, + [3410] = 3075, + [3411] = 2514, + [3412] = 2757, + [3413] = 2934, + [3414] = 2701, + [3415] = 2623, + [3416] = 2689, + [3417] = 3077, + [3418] = 3048, + [3419] = 2937, + [3420] = 2650, + [3421] = 3075, + [3422] = 3051, + [3423] = 3079, + [3424] = 2658, + [3425] = 2606, + [3426] = 2673, + [3427] = 2679, + [3428] = 3048, + [3429] = 2721, + [3430] = 2723, + [3431] = 2754, + [3432] = 2808, + [3433] = 2750, + [3434] = 3082, + [3435] = 2736, + [3436] = 2644, + [3437] = 2515, + [3438] = 2806, + [3439] = 2809, + [3440] = 2810, + [3441] = 2674, + [3442] = 2685, + [3443] = 2724, + [3444] = 2725, + [3445] = 2726, + [3446] = 2727, + [3447] = 2655, + [3448] = 2775, + [3449] = 2656, + [3450] = 2657, + [3451] = 2786, + [3452] = 2668, + [3453] = 2717, + [3454] = 2712, + [3455] = 2646, + [3456] = 2664, + [3457] = 2666, + [3458] = 3079, + [3459] = 2937, + [3460] = 2760, + [3461] = 2767, + [3462] = 3082, + [3463] = 2629, + [3464] = 2617, + [3465] = 2785, + [3466] = 2934, + [3467] = 2507, + [3468] = 2937, + [3469] = 2731, + [3470] = 2508, + [3471] = 2694, + [3472] = 2718, + [3473] = 2513, + [3474] = 2512, + [3475] = 2509, + [3476] = 2522, + [3477] = 3051, + [3478] = 3079, + [3479] = 3479, + [3480] = 3077, + [3481] = 3481, + [3482] = 3479, + [3483] = 3479, + [3484] = 3051, + [3485] = 2712, + [3486] = 2721, + [3487] = 3481, + [3488] = 3048, + [3489] = 3082, + [3490] = 3479, + [3491] = 2723, + [3492] = 2725, + [3493] = 2673, + [3494] = 2658, + [3495] = 3479, + [3496] = 2505, + [3497] = 2507, + [3498] = 2679, + [3499] = 2737, + [3500] = 2664, + [3501] = 3481, + [3502] = 2728, + [3503] = 2667, + [3504] = 2754, + [3505] = 2684, + [3506] = 2726, + [3507] = 2666, + [3508] = 2645, + [3509] = 2756, + [3510] = 2510, + [3511] = 3479, + [3512] = 2650, + [3513] = 2646, + [3514] = 2731, + [3515] = 2518, + [3516] = 2689, + [3517] = 3479, + [3518] = 2511, + [3519] = 2727, + [3520] = 2508, + [3521] = 3479, + [3522] = 3479, + [3523] = 3479, + [3524] = 3368, + [3525] = 2718, + [3526] = 2513, + [3527] = 2512, + [3528] = 2509, + [3529] = 3051, + [3530] = 2674, + [3531] = 2522, + [3532] = 2515, + [3533] = 3082, + [3534] = 3479, + [3535] = 2685, + [3536] = 2505, + [3537] = 2505, + [3538] = 3538, + [3539] = 2750, + [3540] = 3479, + [3541] = 3077, + [3542] = 3479, + [3543] = 3479, + [3544] = 2513, + [3545] = 2512, + [3546] = 2509, + [3547] = 2655, + [3548] = 3479, + [3549] = 3479, + [3550] = 2506, + [3551] = 3479, + [3552] = 2516, + [3553] = 2648, + [3554] = 2522, + [3555] = 2510, + [3556] = 3479, + [3557] = 3075, + [3558] = 2741, + [3559] = 2515, + [3560] = 2757, + [3561] = 3479, + [3562] = 2736, + [3563] = 3479, + [3564] = 2701, + [3565] = 2656, + [3566] = 3479, + [3567] = 3479, + [3568] = 3479, + [3569] = 2507, + [3570] = 2657, + [3571] = 3479, + [3572] = 3479, + [3573] = 3479, + [3574] = 2514, + [3575] = 2505, + [3576] = 3079, + [3577] = 3479, + [3578] = 3479, + [3579] = 2644, + [3580] = 3479, + [3581] = 2505, + [3582] = 2668, + [3583] = 3479, + [3584] = 2508, + [3585] = 3479, + [3586] = 2717, + [3587] = 3479, + [3588] = 3479, + [3589] = 3479, + [3590] = 3048, + [3591] = 3075, + [3592] = 3479, + [3593] = 2724, + [3594] = 3075, + [3595] = 3595, + [3596] = 3048, + [3597] = 3051, + [3598] = 3079, + [3599] = 3599, + [3600] = 3599, + [3601] = 3082, + [3602] = 3599, + [3603] = 3595, + [3604] = 3604, + [3605] = 3595, + [3606] = 3606, + [3607] = 3077, + [3608] = 3595, + [3609] = 3599, + [3610] = 1113, + [3611] = 3611, + [3612] = 1064, + [3613] = 3613, + [3614] = 1099, + [3615] = 3615, + [3616] = 1104, + [3617] = 3615, + [3618] = 3615, + [3619] = 1128, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, + [3623] = 1112, + [3624] = 3624, + [3625] = 1058, + [3626] = 1062, + [3627] = 2553, + [3628] = 3611, + [3629] = 1103, + [3630] = 3630, + [3631] = 1082, + [3632] = 3615, + [3633] = 3622, + [3634] = 929, + [3635] = 892, + [3636] = 915, + [3637] = 916, + [3638] = 929, + [3639] = 3639, + [3640] = 3640, + [3641] = 3641, + [3642] = 3642, + [3643] = 915, + [3644] = 916, + [3645] = 890, + [3646] = 892, + [3647] = 3640, + [3648] = 3648, + [3649] = 3649, + [3650] = 3648, + [3651] = 3639, + [3652] = 3642, + [3653] = 3649, + [3654] = 2756, + [3655] = 2645, + [3656] = 2563, + [3657] = 2736, + [3658] = 2644, + [3659] = 3648, + [3660] = 3639, + [3661] = 3642, + [3662] = 3649, + [3663] = 3648, + [3664] = 3639, + [3665] = 3642, + [3666] = 3649, + [3667] = 1484, + [3668] = 3668, + [3669] = 1800, + [3670] = 1256, + [3671] = 1257, + [3672] = 1258, + [3673] = 1360, + [3674] = 3639, + [3675] = 1462, + [3676] = 1502, + [3677] = 1530, + [3678] = 3639, + [3679] = 1262, + [3680] = 1263, + [3681] = 1264, + [3682] = 1265, + [3683] = 1266, + [3684] = 1267, + [3685] = 1268, + [3686] = 1269, + [3687] = 1676, + [3688] = 1692, + [3689] = 1828, + [3690] = 1830, + [3691] = 1835, + [3692] = 1837, + [3693] = 1271, + [3694] = 1272, + [3695] = 1273, + [3696] = 1142, + [3697] = 1149, + [3698] = 1150, + [3699] = 1151, + [3700] = 1181, + [3701] = 1182, + [3702] = 1208, + [3703] = 1247, + [3704] = 1250, + [3705] = 1252, + [3706] = 1302, + [3707] = 1323, + [3708] = 1374, + [3709] = 1382, + [3710] = 1383, + [3711] = 1386, + [3712] = 1388, + [3713] = 1389, + [3714] = 1395, + [3715] = 1281, + [3716] = 1282, + [3717] = 1283, + [3718] = 1284, + [3719] = 1285, + [3720] = 1286, + [3721] = 1287, + [3722] = 1288, + [3723] = 1289, + [3724] = 1290, + [3725] = 1291, + [3726] = 1292, + [3727] = 1452, + [3728] = 1453, + [3729] = 1455, + [3730] = 1456, + [3731] = 1457, + [3732] = 1460, + [3733] = 1461, + [3734] = 1465, + [3735] = 1467, [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, + [3738] = 1487, + [3739] = 1490, + [3740] = 1491, + [3741] = 1492, + [3742] = 1493, + [3743] = 1494, + [3744] = 1293, + [3745] = 1294, + [3746] = 1295, + [3747] = 1296, + [3748] = 1297, + [3749] = 1298, + [3750] = 1299, + [3751] = 1300, + [3752] = 1301, + [3753] = 1512, + [3754] = 1513, + [3755] = 1514, + [3756] = 1515, + [3757] = 1516, + [3758] = 1518, + [3759] = 1519, + [3760] = 1520, + [3761] = 1523, + [3762] = 890, + [3763] = 1140, + [3764] = 1141, + [3765] = 1143, + [3766] = 1144, + [3767] = 1145, + [3768] = 1146, + [3769] = 1147, + [3770] = 1148, + [3771] = 1154, + [3772] = 1155, + [3773] = 1156, + [3774] = 1157, + [3775] = 1158, + [3776] = 1303, + [3777] = 1304, + [3778] = 1305, + [3779] = 1306, + [3780] = 1307, + [3781] = 1308, + [3782] = 1159, + [3783] = 1160, + [3784] = 1161, + [3785] = 1162, + [3786] = 1163, + [3787] = 1164, + [3788] = 1165, + [3789] = 1166, + [3790] = 1167, + [3791] = 1168, + [3792] = 1169, + [3793] = 1170, + [3794] = 1171, + [3795] = 1172, + [3796] = 1173, + [3797] = 1174, + [3798] = 1175, + [3799] = 1176, + [3800] = 1177, + [3801] = 1178, + [3802] = 1183, + [3803] = 1184, + [3804] = 1185, + [3805] = 1186, + [3806] = 1187, + [3807] = 1188, + [3808] = 1309, + [3809] = 1310, + [3810] = 1311, + [3811] = 1312, + [3812] = 1313, + [3813] = 1190, + [3814] = 1191, + [3815] = 1192, + [3816] = 1193, + [3817] = 1194, + [3818] = 1195, + [3819] = 1196, + [3820] = 1197, + [3821] = 1198, + [3822] = 1199, + [3823] = 1200, + [3824] = 1201, + [3825] = 1202, + [3826] = 1203, + [3827] = 1204, + [3828] = 1205, + [3829] = 1206, + [3830] = 1207, + [3831] = 1209, + [3832] = 1210, + [3833] = 1211, + [3834] = 1212, + [3835] = 1314, + [3836] = 1315, + [3837] = 1316, + [3838] = 1213, + [3839] = 1214, + [3840] = 1215, + [3841] = 1216, + [3842] = 1217, + [3843] = 1218, + [3844] = 1219, + [3845] = 1220, + [3846] = 1221, + [3847] = 1222, + [3848] = 1223, + [3849] = 1224, + [3850] = 1225, + [3851] = 1226, + [3852] = 1227, + [3853] = 1228, + [3854] = 1229, + [3855] = 1317, + [3856] = 1318, + [3857] = 1230, + [3858] = 1231, + [3859] = 1232, + [3860] = 1233, + [3861] = 1234, + [3862] = 1235, + [3863] = 1236, + [3864] = 1237, + [3865] = 1238, + [3866] = 1319, + [3867] = 1320, + [3868] = 1239, + [3869] = 1240, + [3870] = 1321, + [3871] = 1322, + [3872] = 1153, + [3873] = 1193, + [3874] = 3874, + [3875] = 3875, + [3876] = 1103, + [3877] = 1360, [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] = 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] = 2527, - [3998] = 2401, - [3999] = 2401, - [4000] = 3082, - [4001] = 3035, - [4002] = 4002, - [4003] = 4003, - [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] = 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] = 2600, - [4032] = 2401, - [4033] = 4002, - [4034] = 2876, - [4035] = 3082, - [4036] = 4030, - [4037] = 4037, - [4038] = 4038, - [4039] = 2527, - [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 2402, - [4044] = 2406, + [3879] = 1058, + [3880] = 1676, + [3881] = 3874, + [3882] = 1062, + [3883] = 1247, + [3884] = 1250, + [3885] = 1252, + [3886] = 1104, + [3887] = 1128, + [3888] = 3888, + [3889] = 1452, + [3890] = 1453, + [3891] = 1455, + [3892] = 1456, + [3893] = 1457, + [3894] = 1460, + [3895] = 1461, + [3896] = 1082, + [3897] = 3874, + [3898] = 1512, + [3899] = 1513, + [3900] = 1514, + [3901] = 1515, + [3902] = 1516, + [3903] = 1518, + [3904] = 1519, + [3905] = 1520, + [3906] = 1523, + [3907] = 1153, + [3908] = 1140, + [3909] = 1113, + [3910] = 1159, + [3911] = 1160, + [3912] = 1161, + [3913] = 1162, + [3914] = 1163, + [3915] = 1164, + [3916] = 1165, + [3917] = 1166, + [3918] = 1167, + [3919] = 1168, + [3920] = 1169, + [3921] = 1170, + [3922] = 1171, + [3923] = 1172, + [3924] = 1112, + [3925] = 1190, + [3926] = 1191, + [3927] = 1192, + [3928] = 1194, + [3929] = 1195, + [3930] = 1196, + [3931] = 1197, + [3932] = 1198, + [3933] = 1316, + [3934] = 1200, + [3935] = 1201, + [3936] = 1202, + [3937] = 1213, + [3938] = 1214, + [3939] = 1215, + [3940] = 1216, + [3941] = 1217, + [3942] = 1218, + [3943] = 1219, + [3944] = 1220, + [3945] = 1221, + [3946] = 1222, + [3947] = 3888, + [3948] = 3888, + [3949] = 1230, + [3950] = 1231, + [3951] = 1232, + [3952] = 1233, + [3953] = 1234, + [3954] = 1239, + [3955] = 3874, + [3956] = 2083, + [3957] = 2085, + [3958] = 2112, + [3959] = 2114, + [3960] = 2120, + [3961] = 2063, + [3962] = 1099, + [3963] = 1269, + [3964] = 2062, + [3965] = 2066, + [3966] = 2612, + [3967] = 2606, + [3968] = 1064, + [3969] = 2060, + [3970] = 2061, + [3971] = 1182, + [3972] = 1208, + [3973] = 3875, + [3974] = 1289, + [3975] = 1290, + [3976] = 3875, + [3977] = 1299, + [3978] = 1300, + [3979] = 3979, + [3980] = 3875, + [3981] = 1306, + [3982] = 1307, + [3983] = 1312, + [3984] = 1313, + [3985] = 3888, + [3986] = 1199, + [3987] = 1462, + [3988] = 1389, + [3989] = 1395, + [3990] = 1173, + [3991] = 1174, + [3992] = 1175, + [3993] = 1176, + [3994] = 1177, + [3995] = 1178, + [3996] = 1183, + [3997] = 1184, + [3998] = 1185, + [3999] = 1186, + [4000] = 1187, + [4001] = 1188, + [4002] = 1322, + [4003] = 1317, + [4004] = 1319, + [4005] = 1502, + [4006] = 1530, + [4007] = 1465, + [4008] = 1467, + [4009] = 1474, + [4010] = 1475, + [4011] = 1203, + [4012] = 1204, + [4013] = 1205, + [4014] = 1206, + [4015] = 1207, + [4016] = 1209, + [4017] = 1210, + [4018] = 1211, + [4019] = 1212, + [4020] = 4020, + [4021] = 1487, + [4022] = 1490, + [4023] = 1491, + [4024] = 1320, + [4025] = 1492, + [4026] = 1493, + [4027] = 1494, + [4028] = 1484, + [4029] = 1223, + [4030] = 1224, + [4031] = 1225, + [4032] = 1226, + [4033] = 1692, + [4034] = 1227, + [4035] = 1228, + [4036] = 1229, + [4037] = 1828, + [4038] = 1830, + [4039] = 1835, + [4040] = 1837, + [4041] = 1235, + [4042] = 1236, + [4043] = 1237, + [4044] = 1238, [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] = 4060, - [4061] = 2395, - [4062] = 4037, - [4063] = 4057, - [4064] = 4064, - [4065] = 4064, - [4066] = 2521, - [4067] = 3082, - [4068] = 4068, - [4069] = 2527, - [4070] = 4070, - [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] = 4115, - [4116] = 4040, - [4117] = 4117, - [4118] = 4118, - [4119] = 4119, - [4120] = 4120, - [4121] = 4121, - [4122] = 4122, - [4123] = 4123, - [4124] = 4050, - [4125] = 4125, - [4126] = 4126, - [4127] = 4127, - [4128] = 4120, - [4129] = 4129, - [4130] = 4130, - [4131] = 4131, - [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] = 4156, - [4157] = 4157, - [4158] = 4126, - [4159] = 4159, - [4160] = 4159, - [4161] = 4161, - [4162] = 4162, - [4163] = 4117, - [4164] = 4118, - [4165] = 4165, - [4166] = 4166, + [4046] = 1240, + [4047] = 4020, + [4048] = 1800, + [4049] = 1141, + [4050] = 1321, + [4051] = 1256, + [4052] = 1257, + [4053] = 1258, + [4054] = 1143, + [4055] = 1144, + [4056] = 1145, + [4057] = 1262, + [4058] = 1263, + [4059] = 1264, + [4060] = 1265, + [4061] = 1146, + [4062] = 1266, + [4063] = 1267, + [4064] = 1268, + [4065] = 1147, + [4066] = 1148, + [4067] = 1154, + [4068] = 1155, + [4069] = 1271, + [4070] = 1272, + [4071] = 1273, + [4072] = 1156, + [4073] = 1142, + [4074] = 1149, + [4075] = 1150, + [4076] = 1151, + [4077] = 1181, + [4078] = 1157, + [4079] = 1158, + [4080] = 1302, + [4081] = 1323, + [4082] = 4082, + [4083] = 1281, + [4084] = 1282, + [4085] = 1283, + [4086] = 1284, + [4087] = 1285, + [4088] = 1286, + [4089] = 1287, + [4090] = 1288, + [4091] = 1291, + [4092] = 1292, + [4093] = 1293, + [4094] = 1294, + [4095] = 1295, + [4096] = 1296, + [4097] = 1297, + [4098] = 1298, + [4099] = 1374, + [4100] = 1301, + [4101] = 1382, + [4102] = 4102, + [4103] = 1303, + [4104] = 1383, + [4105] = 1304, + [4106] = 1305, + [4107] = 1386, + [4108] = 1308, + [4109] = 4020, + [4110] = 1309, + [4111] = 1310, + [4112] = 1311, + [4113] = 1388, + [4114] = 1314, + [4115] = 1315, + [4116] = 4020, + [4117] = 1318, + [4118] = 2083, + [4119] = 2553, + [4120] = 2553, + [4121] = 2114, + [4122] = 2553, + [4123] = 2062, + [4124] = 2066, + [4125] = 2085, + [4126] = 2061, + [4127] = 2060, + [4128] = 2120, + [4129] = 2063, + [4130] = 2112, + [4131] = 2563, + [4132] = 2563, + [4133] = 2563, + [4134] = 3620, + [4135] = 4135, + [4136] = 4135, + [4137] = 4135, + [4138] = 4138, + [4139] = 4135, + [4140] = 4140, + [4141] = 4138, + [4142] = 3079, + [4143] = 3077, + [4144] = 3079, + [4145] = 3082, + [4146] = 2731, + [4147] = 2718, + [4148] = 3077, + [4149] = 3075, + [4150] = 3048, + [4151] = 3051, + [4152] = 3082, + [4153] = 3075, + [4154] = 3075, + [4155] = 3048, + [4156] = 3048, + [4157] = 3051, + [4158] = 3077, + [4159] = 2731, + [4160] = 2718, + [4161] = 3051, + [4162] = 3079, + [4163] = 3082, + [4164] = 4164, + [4165] = 2694, + [4166] = 3077, [4167] = 4167, - [4168] = 4125, - [4169] = 4169, - [4170] = 4117, + [4168] = 2693, + [4169] = 3082, + [4170] = 3075, [4171] = 4171, - [4172] = 4117, - [4173] = 4118, - [4174] = 4117, - [4175] = 4118, - [4176] = 4145, - [4177] = 4117, - [4178] = 4118, + [4172] = 3048, + [4173] = 2731, + [4174] = 2718, + [4175] = 3051, + [4176] = 2731, + [4177] = 2718, + [4178] = 3079, [4179] = 4179, - [4180] = 4171, - [4181] = 4117, - [4182] = 4118, + [4180] = 4180, + [4181] = 2785, + [4182] = 2786, [4183] = 4183, - [4184] = 4119, - [4185] = 4117, - [4186] = 4118, + [4184] = 2786, + [4185] = 2760, + [4186] = 2760, [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] = 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] = 4234, - [4235] = 4183, - [4236] = 4190, - [4237] = 4167, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [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] = 2477, - [4271] = 4269, - [4272] = 4272, - [4273] = 4148, - [4274] = 4255, - [4275] = 4275, - [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] = 4283, - [4293] = 4293, - [4294] = 4294, + [4188] = 4187, + [4189] = 4189, + [4190] = 2806, + [4191] = 2807, + [4192] = 2806, + [4193] = 2808, + [4194] = 2807, + [4195] = 2809, + [4196] = 2810, + [4197] = 2808, + [4198] = 2775, + [4199] = 2809, + [4200] = 2786, + [4201] = 2760, + [4202] = 2810, + [4203] = 2785, + [4204] = 2612, + [4205] = 2775, + [4206] = 4189, + [4207] = 2606, + [4208] = 2806, + [4209] = 2807, + [4210] = 4183, + [4211] = 3878, + [4212] = 2808, + [4213] = 2809, + [4214] = 2810, + [4215] = 2785, + [4216] = 4180, + [4217] = 4183, + [4218] = 4187, + [4219] = 2775, + [4220] = 4220, + [4221] = 4180, + [4222] = 4220, + [4223] = 4180, + [4224] = 4220, + [4225] = 4189, + [4226] = 4189, + [4227] = 4220, + [4228] = 2785, + [4229] = 2694, + [4230] = 3077, + [4231] = 2516, + [4232] = 3075, + [4233] = 3048, + [4234] = 2511, + [4235] = 3079, + [4236] = 3082, + [4237] = 2506, + [4238] = 2694, + [4239] = 3368, + [4240] = 2731, + [4241] = 2693, + [4242] = 2693, + [4243] = 2731, + [4244] = 2806, + [4245] = 2694, + [4246] = 2807, + [4247] = 2693, + [4248] = 2718, + [4249] = 2808, + [4250] = 2809, + [4251] = 3077, + [4252] = 2718, + [4253] = 3075, + [4254] = 3048, + [4255] = 3051, + [4256] = 2786, + [4257] = 2760, + [4258] = 3079, + [4259] = 2775, + [4260] = 3082, + [4261] = 2693, + [4262] = 2518, + [4263] = 2694, + [4264] = 2810, + [4265] = 4265, + [4266] = 3051, + [4267] = 2693, + [4268] = 2505, + [4269] = 2694, + [4270] = 2693, + [4271] = 2694, + [4272] = 2693, + [4273] = 2518, + [4274] = 2511, + [4275] = 2516, + [4276] = 2506, + [4277] = 2510, + [4278] = 2505, + [4279] = 4279, + [4280] = 4280, + [4281] = 4281, + [4282] = 2507, + [4283] = 2508, + [4284] = 2694, + [4285] = 2513, + [4286] = 2512, + [4287] = 2509, + [4288] = 2522, + [4289] = 2515, + [4290] = 2510, + [4291] = 3368, + [4292] = 2599, + [4293] = 2694, + [4294] = 2693, [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, + [4297] = 4297, + [4298] = 2810, + [4299] = 2775, + [4300] = 2785, + [4301] = 4281, + [4302] = 4302, + [4303] = 4183, + [4304] = 4304, + [4305] = 2505, + [4306] = 4306, + [4307] = 4307, + [4308] = 2786, + [4309] = 2760, + [4310] = 2760, + [4311] = 4311, [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] = 4294, - [4327] = 4327, - [4328] = 4312, - [4329] = 4324, - [4330] = 4330, - [4331] = 4331, - [4332] = 2477, - [4333] = 4296, - [4334] = 4334, - [4335] = 4246, - [4336] = 4260, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, + [4313] = 4313, + [4314] = 4314, + [4315] = 4313, + [4316] = 4316, + [4317] = 4304, + [4318] = 2806, + [4319] = 2807, + [4320] = 2808, + [4321] = 2806, + [4322] = 2807, + [4323] = 2808, + [4324] = 2809, + [4325] = 2810, + [4326] = 4280, + [4327] = 2809, + [4328] = 4328, + [4329] = 2775, + [4330] = 2786, + [4331] = 4312, + [4332] = 4307, + [4333] = 4311, + [4334] = 4314, + [4335] = 4316, + [4336] = 2785, + [4337] = 4306, + [4338] = 2510, + [4339] = 4187, [4340] = 4340, - [4341] = 4341, + [4341] = 4340, [4342] = 4342, - [4343] = 4259, - [4344] = 4344, - [4345] = 4259, - [4346] = 4295, - [4347] = 4347, - [4348] = 4324, + [4343] = 4343, + [4344] = 4342, + [4345] = 4345, + [4346] = 2693, + [4347] = 4342, + [4348] = 4295, [4349] = 4349, - [4350] = 4295, - [4351] = 4347, - [4352] = 4290, - [4353] = 4353, - [4354] = 4330, - [4355] = 4330, - [4356] = 4356, - [4357] = 4357, + [4350] = 4340, + [4351] = 4296, + [4352] = 4352, + [4353] = 4352, + [4354] = 4354, + [4355] = 2694, + [4356] = 4349, + [4357] = 4342, [4358] = 4358, [4359] = 4359, [4360] = 4360, - [4361] = 4296, + [4361] = 4340, [4362] = 4362, - [4363] = 4289, - [4364] = 4259, - [4365] = 4294, - [4366] = 4366, - [4367] = 4367, - [4368] = 4283, - [4369] = 4255, - [4370] = 4239, - [4371] = 4371, - [4372] = 4239, - [4373] = 4373, - [4374] = 4374, - [4375] = 4312, - [4376] = 4376, - [4377] = 4377, - [4378] = 4378, - [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] = 4367, - [4394] = 4338, - [4395] = 4362, - [4396] = 4339, - [4397] = 4295, - [4398] = 4296, + [4363] = 4363, + [4364] = 4364, + [4365] = 4365, + [4366] = 2506, + [4367] = 2511, + [4368] = 4368, + [4369] = 4368, + [4370] = 4370, + [4371] = 4368, + [4372] = 4368, + [4373] = 4368, + [4374] = 4368, + [4375] = 4368, + [4376] = 2518, + [4377] = 4368, + [4378] = 4365, + [4379] = 3368, + [4380] = 2518, + [4381] = 2516, + [4382] = 4382, + [4383] = 4383, + [4384] = 4368, + [4385] = 4385, + [4386] = 3368, + [4387] = 2516, + [4388] = 4383, + [4389] = 4383, + [4390] = 4368, + [4391] = 2506, + [4392] = 2693, + [4393] = 4383, + [4394] = 2694, + [4395] = 4306, + [4396] = 4368, + [4397] = 4368, + [4398] = 2511, [4399] = 4399, - [4400] = 4327, + [4400] = 4400, [4401] = 4401, [4402] = 4402, - [4403] = 4392, - [4404] = 4404, - [4405] = 4405, - [4406] = 4406, - [4407] = 4344, + [4403] = 4402, + [4404] = 4343, + [4405] = 4399, + [4406] = 4399, + [4407] = 4407, [4408] = 4408, - [4409] = 4349, - [4410] = 4376, - [4411] = 4377, + [4409] = 2599, + [4410] = 4410, + [4411] = 4411, [4412] = 4412, [4413] = 4413, [4414] = 4414, - [4415] = 4325, - [4416] = 4416, - [4417] = 4371, + [4415] = 4415, + [4416] = 4364, + [4417] = 4417, [4418] = 4418, - [4419] = 4312, - [4420] = 4341, - [4421] = 4269, + [4419] = 4419, + [4420] = 4420, + [4421] = 4421, [4422] = 4422, - [4423] = 4413, - [4424] = 4342, - [4425] = 4401, - [4426] = 4426, - [4427] = 4416, - [4428] = 4357, - [4429] = 4404, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, + [4426] = 4401, + [4427] = 4402, + [4428] = 4428, + [4429] = 4429, [4430] = 4430, - [4431] = 4353, - [4432] = 4360, - [4433] = 4356, - [4434] = 4358, - [4435] = 4362, - [4436] = 4291, - [4437] = 4367, - [4438] = 4401, - [4439] = 4347, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, + [4434] = 4434, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 4439, [4440] = 4440, - [4441] = 4360, - [4442] = 4353, - [4443] = 4356, + [4441] = 4441, + [4442] = 4402, + [4443] = 4385, [4444] = 4444, - [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] = 4344, - [4466] = 4466, - [4467] = 4408, - [4468] = 4468, - [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] = 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] = 2438, - [4508] = 4289, - [4509] = 4371, - [4510] = 4506, - [4511] = 4353, - [4512] = 4512, - [4513] = 4513, - [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] = 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] = 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, + [4445] = 4354, + [4446] = 4446, + [4447] = 4410, + [4448] = 4411, + [4449] = 4412, + [4450] = 4415, + [4451] = 4451, + [4452] = 4399, + [4453] = 4431, + [4454] = 4402, + [4455] = 4433, + [4456] = 4429, + [4457] = 4417, + [4458] = 4422, + [4459] = 4430, + [4460] = 4451, + [4461] = 4399, + [4462] = 4431, + [4463] = 4402, + [4464] = 4429, + [4465] = 4417, + [4466] = 4451, + [4467] = 4399, + [4468] = 4431, + [4469] = 4435, + [4470] = 4436, + [4471] = 4471, + [4472] = 4437, + [4473] = 4417, + [4474] = 4438, + [4475] = 4439, + [4476] = 4440, + [4477] = 4441, + [4478] = 4423, + [4479] = 4424, + [4480] = 4425, + [4481] = 4451, + [4482] = 4399, + [4483] = 4483, + [4484] = 4417, + [4485] = 4451, + [4486] = 4399, + [4487] = 4451, + [4488] = 4451, + [4489] = 4399, + [4490] = 4451, + [4491] = 4399, + [4492] = 4451, + [4493] = 4399, + [4494] = 4451, + [4495] = 4399, + [4496] = 4451, + [4497] = 4399, + [4498] = 4451, + [4499] = 4399, + [4500] = 4451, + [4501] = 4399, + [4502] = 4382, + [4503] = 4451, + [4504] = 4399, + [4505] = 4451, + [4506] = 4399, + [4507] = 4451, + [4508] = 4399, + [4509] = 4451, + [4510] = 4399, + [4511] = 4451, + [4512] = 4399, + [4513] = 4451, + [4514] = 4451, + [4515] = 4431, + [4516] = 4429, + [4517] = 4432, + [4518] = 4446, + [4519] = 4471, + [4520] = 4471, + [4521] = 4370, + [4522] = 4451, + [4523] = 4429, + [4524] = 4432, + [4525] = 4446, + [4526] = 4471, + [4527] = 4432, + [4528] = 4446, + [4529] = 4429, + [4530] = 4408, + [4531] = 4531, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 4535, + [4536] = 4306, + [4537] = 4537, + [4538] = 4413, + [4539] = 4414, + [4540] = 4540, + [4541] = 4541, + [4542] = 4542, + [4543] = 4418, + [4544] = 4544, + [4545] = 4545, + [4546] = 4419, + [4547] = 4420, + [4548] = 4531, + [4549] = 4549, + [4550] = 2599, + [4551] = 4532, + [4552] = 4434, + [4553] = 4534, + [4554] = 2599, + [4555] = 2599, + [4556] = 4556, + [4557] = 4557, + [4558] = 4558, + [4559] = 4559, + [4560] = 2599, + [4561] = 4544, + [4562] = 4562, + [4563] = 4535, + [4564] = 2599, + [4565] = 4565, + [4566] = 4566, + [4567] = 4567, + [4568] = 4544, + [4569] = 4401, + [4570] = 4570, + [4571] = 4566, + [4572] = 4556, + [4573] = 4573, + [4574] = 4556, + [4575] = 4575, + [4576] = 4535, + [4577] = 4400, + [4578] = 4537, + [4579] = 4579, + [4580] = 4537, + [4581] = 4400, + [4582] = 4582, + [4583] = 4575, + [4584] = 4584, + [4585] = 2756, + [4586] = 4534, + [4587] = 4570, + [4588] = 4588, + [4589] = 4562, + [4590] = 4590, + [4591] = 4573, + [4592] = 4565, + [4593] = 2736, + [4594] = 4594, + [4595] = 4595, + [4596] = 4531, + [4597] = 4582, + [4598] = 4566, + [4599] = 4400, + [4600] = 4532, + [4601] = 4588, [4602] = 4602, - [4603] = 4515, - [4604] = 4519, - [4605] = 4519, - [4606] = 4374, - [4607] = 4347, - [4608] = 2876, - [4609] = 4288, - [4610] = 4371, + [4603] = 4400, + [4604] = 4579, + [4605] = 4605, + [4606] = 4606, + [4607] = 4590, + [4608] = 4594, + [4609] = 4609, + [4610] = 2645, [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, + [4612] = 2644, + [4613] = 4613, + [4614] = 4614, + [4615] = 4535, + [4616] = 4556, + [4617] = 4602, + [4618] = 4611, + [4619] = 4537, + [4620] = 4584, + [4621] = 4545, + [4622] = 4622, + [4623] = 4623, + [4624] = 4624, + [4625] = 4625, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 2599, + [4630] = 4630, + [4631] = 4631, + [4632] = 4545, + [4633] = 4544, [4634] = 4634, - [4635] = 4464, - [4636] = 4362, - [4637] = 4377, - [4638] = 4466, - [4639] = 4464, - [4640] = 2449, - [4641] = 4300, - [4642] = 4386, - [4643] = 3035, - [4644] = 2555, + [4635] = 4401, + [4636] = 4609, + [4637] = 4637, + [4638] = 4634, + [4639] = 4639, + [4640] = 4609, + [4641] = 4545, + [4642] = 4606, + [4643] = 4643, + [4644] = 4605, [4645] = 4645, - [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, + [4646] = 4646, + [4647] = 4647, + [4648] = 4606, + [4649] = 4649, + [4650] = 4650, + [4651] = 4544, + [4652] = 4625, + [4653] = 4653, + [4654] = 4654, + [4655] = 4556, + [4656] = 4537, + [4657] = 4634, + [4658] = 4658, + [4659] = 4649, + [4660] = 4614, + [4661] = 4535, + [4662] = 4662, + [4663] = 4649, + [4664] = 4664, [4665] = 4665, - [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, + [4666] = 4666, + [4667] = 4625, + [4668] = 4556, + [4669] = 4537, + [4670] = 4634, + [4671] = 4649, + [4672] = 4535, + [4673] = 4673, + [4674] = 4649, + [4675] = 4675, + [4676] = 4649, + [4677] = 4624, + [4678] = 4649, + [4679] = 4637, + [4680] = 4649, + [4681] = 4639, + [4682] = 4658, + [4683] = 4625, + [4684] = 4614, + [4685] = 4654, + [4686] = 4686, + [4687] = 4687, + [4688] = 4688, + [4689] = 4689, + [4690] = 4602, + [4691] = 4545, + [4692] = 4675, + [4693] = 4590, + [4694] = 4611, + [4695] = 4594, + [4696] = 4605, + [4697] = 4697, [4698] = 4698, - [4699] = 4340, - [4700] = 4634, - [4701] = 4327, - [4702] = 4677, + [4699] = 4673, + [4700] = 4700, + [4701] = 4531, + [4702] = 4702, [4703] = 4703, - [4704] = 4704, - [4705] = 4705, - [4706] = 4706, - [4707] = 4707, - [4708] = 4704, - [4709] = 4705, + [4704] = 4631, + [4705] = 4639, + [4706] = 4626, + [4707] = 4605, + [4708] = 4665, + [4709] = 4709, [4710] = 4710, - [4711] = 4711, - [4712] = 4665, + [4711] = 4709, + [4712] = 4712, [4713] = 4713, - [4714] = 2593, - [4715] = 4715, - [4716] = 2595, + [4714] = 4666, + [4715] = 4628, + [4716] = 4716, [4717] = 4717, - [4718] = 4713, + [4718] = 4532, [4719] = 4719, - [4720] = 4703, - [4721] = 4721, - [4722] = 2605, - [4723] = 2610, + [4720] = 4720, + [4721] = 4702, + [4722] = 4582, + [4723] = 4723, [4724] = 4724, - [4725] = 4725, + [4725] = 4703, [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] = 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] = 2943, - [4795] = 4795, + [4727] = 4643, + [4728] = 4728, + [4729] = 4729, + [4730] = 4712, + [4731] = 4720, + [4732] = 4732, + [4733] = 4654, + [4734] = 4688, + [4735] = 4735, + [4736] = 4703, + [4737] = 4737, + [4738] = 4709, + [4739] = 4739, + [4740] = 4740, + [4741] = 4650, + [4742] = 4662, + [4743] = 4643, + [4744] = 4744, + [4745] = 4739, + [4746] = 4746, + [4747] = 4709, + [4748] = 4703, + [4749] = 4646, + [4750] = 4750, + [4751] = 4647, + [4752] = 4712, + [4753] = 4709, + [4754] = 4724, + [4755] = 4584, + [4756] = 4756, + [4757] = 4645, + [4758] = 4712, + [4759] = 4664, + [4760] = 4606, + [4761] = 4665, + [4762] = 4712, + [4763] = 4740, + [4764] = 4687, + [4765] = 4728, + [4766] = 4703, + [4767] = 4630, + [4768] = 4768, + [4769] = 4662, + [4770] = 4697, + [4771] = 4627, + [4772] = 4703, + [4773] = 4689, + [4774] = 4710, + [4775] = 4768, + [4776] = 4703, + [4777] = 4622, + [4778] = 4712, + [4779] = 4645, + [4780] = 4703, + [4781] = 4713, + [4782] = 4588, + [4783] = 4646, + [4784] = 4726, + [4785] = 4785, + [4786] = 4737, + [4787] = 4756, + [4788] = 4744, + [4789] = 4688, + [4790] = 4687, + [4791] = 4647, + [4792] = 4697, + [4793] = 4709, + [4794] = 4650, + [4795] = 4623, [4796] = 4796, - [4797] = 4795, - [4798] = 4798, - [4799] = 4799, - [4800] = 4800, - [4801] = 4801, - [4802] = 4799, - [4803] = 4803, - [4804] = 4803, - [4805] = 4805, - [4806] = 4806, - [4807] = 4807, - [4808] = 4808, - [4809] = 4809, - [4810] = 4810, - [4811] = 4806, - [4812] = 4812, - [4813] = 4812, - [4814] = 4814, - [4815] = 4815, - [4816] = 4807, - [4817] = 4817, - [4818] = 3035, - [4819] = 2854, - [4820] = 4800, - [4821] = 2860, - [4822] = 4822, - [4823] = 4808, - [4824] = 2876, - [4825] = 4825, - [4826] = 4809, - [4827] = 4827, - [4828] = 4828, - [4829] = 4829, - [4830] = 4830, - [4831] = 4812, - [4832] = 2876, - [4833] = 4799, - [4834] = 4815, - [4835] = 4815, - [4836] = 2876, + [4797] = 4716, + [4798] = 4626, + [4799] = 4637, + [4800] = 4709, + [4801] = 4723, + [4802] = 4785, + [4803] = 4609, + [4804] = 4664, + [4805] = 4653, + [4806] = 4746, + [4807] = 4628, + [4808] = 4750, + [4809] = 4709, + [4810] = 4658, + [4811] = 4566, + [4812] = 4673, + [4813] = 4717, + [4814] = 4719, + [4815] = 4614, + [4816] = 4735, + [4817] = 4689, + [4818] = 4622, + [4819] = 4666, + [4820] = 4712, + [4821] = 4627, + [4822] = 4630, + [4823] = 4631, + [4824] = 4623, + [4825] = 4675, + [4826] = 4624, + [4827] = 4653, + [4828] = 4712, + [4829] = 4534, + [4830] = 4628, + [4831] = 4831, + [4832] = 4590, + [4833] = 2553, + [4834] = 4834, + [4835] = 4835, + [4836] = 4836, [4837] = 4837, - [4838] = 4803, - [4839] = 4817, + [4838] = 2553, + [4839] = 4834, [4840] = 4840, - [4841] = 4841, - [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] = 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, + [4841] = 4687, + [4842] = 4602, + [4843] = 4665, + [4844] = 4834, + [4845] = 4835, + [4846] = 4664, + [4847] = 4834, + [4848] = 4835, + [4849] = 4834, + [4850] = 4836, + [4851] = 4835, + [4852] = 4835, + [4853] = 4611, + [4854] = 4662, + [4855] = 4626, + [4856] = 4606, + [4857] = 4627, + [4858] = 4834, + [4859] = 4835, + [4860] = 4630, + [4861] = 4605, + [4862] = 4631, + [4863] = 4834, + [4864] = 4688, + [4865] = 4836, + [4866] = 4594, + [4867] = 4835, + [4868] = 4650, + [4869] = 4834, + [4870] = 4756, + [4871] = 4609, + [4872] = 4834, + [4873] = 4835, + [4874] = 4834, + [4875] = 4645, + [4876] = 4876, + [4877] = 4835, + [4878] = 2553, + [4879] = 4834, + [4880] = 4835, + [4881] = 4834, + [4882] = 4835, + [4883] = 4837, + [4884] = 4689, + [4885] = 4614, + [4886] = 4697, + [4887] = 4623, + [4888] = 4653, + [4889] = 4834, + [4890] = 4835, + [4891] = 4606, + [4892] = 4605, + [4893] = 4673, + [4894] = 4666, + [4895] = 4836, + [4896] = 4609, + [4897] = 4837, + [4898] = 4614, + [4899] = 4643, + [4900] = 4646, + [4901] = 4647, + [4902] = 4622, + [4903] = 4837, + [4904] = 4835, + [4905] = 4732, + [4906] = 4697, + [4907] = 4627, + [4908] = 4623, + [4909] = 4653, + [4910] = 4732, + [4911] = 4630, + [4912] = 4631, + [4913] = 4637, + [4914] = 4914, + [4915] = 4915, + [4916] = 4582, + [4917] = 4664, + [4918] = 4918, + [4919] = 4729, + [4920] = 4687, + [4921] = 4665, + [4922] = 4664, + [4923] = 4658, + [4924] = 4918, + [4925] = 4643, + [4926] = 4914, + [4927] = 4627, + [4928] = 2563, + [4929] = 4630, + [4930] = 4662, + [4931] = 4626, + [4932] = 4631, + [4933] = 4646, + [4934] = 4628, + [4935] = 3077, + [4936] = 4675, + [4937] = 4624, + [4938] = 4729, + [4939] = 4643, + [4940] = 4914, + [4941] = 4647, + [4942] = 4584, [4943] = 4943, - [4944] = 4944, - [4945] = 4945, - [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] = 4959, - [4960] = 4960, - [4961] = 4947, - [4962] = 4955, - [4963] = 4963, - [4964] = 4964, - [4965] = 4148, - [4966] = 4963, - [4967] = 4793, - [4968] = 4968, - [4969] = 4953, - [4970] = 4970, - [4971] = 4971, - [4972] = 4972, - [4973] = 4973, - [4974] = 4974, - [4975] = 4975, - [4976] = 4944, - [4977] = 4939, - [4978] = 4978, - [4979] = 4979, - [4980] = 4942, - [4981] = 4981, - [4982] = 4982, - [4983] = 4983, - [4984] = 4984, - [4985] = 4985, - [4986] = 4986, - [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, + [4944] = 3075, + [4945] = 3048, + [4946] = 3051, + [4947] = 4622, + [4948] = 4639, + [4949] = 4646, + [4950] = 4647, + [4951] = 4700, + [4952] = 4688, + [4953] = 4943, + [4954] = 4673, + [4955] = 4650, + [4956] = 3079, + [4957] = 4700, + [4958] = 4654, + [4959] = 4666, + [4960] = 4918, + [4961] = 3082, + [4962] = 4687, + [4963] = 4665, + [4964] = 4645, + [4965] = 4943, + [4966] = 2563, + [4967] = 2656, + [4968] = 2657, + [4969] = 4969, + [4970] = 4662, + [4971] = 4626, + [4972] = 2712, + [4973] = 4628, + [4974] = 4914, + [4975] = 2646, + [4976] = 2664, + [4977] = 4622, + [4978] = 2666, + [4979] = 4688, + [4980] = 4650, + [4981] = 4943, + [4982] = 4969, + [4983] = 4588, + [4984] = 4673, + [4985] = 4689, + [4986] = 4697, + [4987] = 4623, + [4988] = 4653, + [4989] = 4666, + [4990] = 4918, + [4991] = 2563, + [4992] = 4689, + [4993] = 4993, + [4994] = 4645, + [4995] = 3077, + [4996] = 3075, + [4997] = 3048, + [4998] = 3051, + [4999] = 3079, + [5000] = 3082, + [5001] = 5001, + [5002] = 5002, + [5003] = 5003, + [5004] = 3048, + [5005] = 2656, + [5006] = 5006, + [5007] = 5007, + [5008] = 5008, + [5009] = 5009, + [5010] = 2657, + [5011] = 2666, + [5012] = 3082, + [5013] = 5008, + [5014] = 3048, + [5015] = 5009, + [5016] = 5016, + [5017] = 4729, + [5018] = 5018, + [5019] = 5019, + [5020] = 5007, + [5021] = 5021, [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] = 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, + [5023] = 3082, + [5024] = 3075, + [5025] = 5019, + [5026] = 2756, + [5027] = 4756, + [5028] = 5003, + [5029] = 5021, + [5030] = 5030, + [5031] = 5016, + [5032] = 5032, + [5033] = 3077, + [5034] = 5034, + [5035] = 5035, + [5036] = 5022, + [5037] = 5034, + [5038] = 5030, + [5039] = 5006, + [5040] = 3075, + [5041] = 5022, + [5042] = 5003, + [5043] = 4700, + [5044] = 5019, + [5045] = 5045, + [5046] = 2736, + [5047] = 2645, + [5048] = 5002, + [5049] = 5049, + [5050] = 5018, + [5051] = 3082, + [5052] = 5018, + [5053] = 5053, + [5054] = 5021, + [5055] = 5018, + [5056] = 3075, + [5057] = 5002, + [5058] = 2712, + [5059] = 5009, + [5060] = 5035, + [5061] = 5034, + [5062] = 5045, + [5063] = 5003, + [5064] = 3051, + [5065] = 2644, + [5066] = 2646, + [5067] = 5022, + [5068] = 5049, + [5069] = 5030, + [5070] = 5008, + [5071] = 5009, + [5072] = 5019, + [5073] = 4915, + [5074] = 3079, + [5075] = 5007, + [5076] = 5030, + [5077] = 4915, + [5078] = 5021, + [5079] = 5002, + [5080] = 3077, + [5081] = 5045, + [5082] = 2664, + [5083] = 4732, + [5084] = 5084, + [5085] = 5049, + [5086] = 3048, + [5087] = 3051, + [5088] = 3051, + [5089] = 3079, + [5090] = 3079, + [5091] = 5091, + [5092] = 5049, + [5093] = 5034, + [5094] = 5091, + [5095] = 3077, + [5096] = 5008, + [5097] = 5097, + [5098] = 5098, + [5099] = 5099, + [5100] = 5100, + [5101] = 3082, [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, + [5103] = 5103, + [5104] = 3048, + [5105] = 5105, + [5106] = 5106, + [5107] = 5102, + [5108] = 5108, + [5109] = 5109, + [5110] = 3079, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 5032, + [5116] = 5116, + [5117] = 5102, + [5118] = 5118, + [5119] = 5106, + [5120] = 4400, + [5121] = 3051, + [5122] = 5122, + [5123] = 5123, + [5124] = 5102, + [5125] = 5106, + [5126] = 5126, + [5127] = 5106, + [5128] = 3082, + [5129] = 5129, + [5130] = 5099, + [5131] = 5116, + [5132] = 2712, + [5133] = 3082, + [5134] = 5106, + [5135] = 5032, + [5136] = 5103, + [5137] = 5105, + [5138] = 5129, + [5139] = 5106, + [5140] = 5102, + [5141] = 5141, + [5142] = 2646, + [5143] = 5106, + [5144] = 5123, + [5145] = 4993, + [5146] = 5146, + [5147] = 5147, + [5148] = 5112, + [5149] = 5149, + [5150] = 4915, + [5151] = 5151, + [5152] = 5106, + [5153] = 3079, [5154] = 5154, - [5155] = 5155, + [5155] = 3082, [5156] = 5156, - [5157] = 4040, - [5158] = 5158, + [5157] = 5157, + [5158] = 5099, [5159] = 5159, [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, + [5162] = 5112, + [5163] = 5116, + [5164] = 5156, + [5165] = 5114, + [5166] = 5105, + [5167] = 5167, + [5168] = 5122, + [5169] = 5102, + [5170] = 2664, + [5171] = 5141, + [5172] = 3077, + [5173] = 5105, + [5174] = 3079, + [5175] = 5097, + [5176] = 5116, [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5159, - [5181] = 5181, - [5182] = 5182, - [5183] = 4259, - [5184] = 5160, - [5185] = 5185, - [5186] = 5186, - [5187] = 5187, + [5178] = 5123, + [5179] = 5084, + [5180] = 5122, + [5181] = 5123, + [5182] = 5106, + [5183] = 5126, + [5184] = 5106, + [5185] = 5100, + [5186] = 3079, + [5187] = 5106, [5188] = 5188, - [5189] = 5189, - [5190] = 3035, - [5191] = 2854, - [5192] = 2860, - [5193] = 5193, - [5194] = 2876, - [5195] = 5195, - [5196] = 5196, - [5197] = 2907, - [5198] = 5198, - [5199] = 5199, - [5200] = 5200, - [5201] = 5166, - [5202] = 4793, - [5203] = 5203, - [5204] = 5204, - [5205] = 5205, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5170, - [5210] = 5210, - [5211] = 5211, - [5212] = 5170, - [5213] = 5213, - [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] = 5235, - [5236] = 5236, - [5237] = 5181, - [5238] = 4827, - [5239] = 5166, - [5240] = 5187, - [5241] = 5155, - [5242] = 5156, - [5243] = 5243, - [5244] = 5244, - [5245] = 5245, + [5189] = 5126, + [5190] = 5084, + [5191] = 5111, + [5192] = 5147, + [5193] = 5151, + [5194] = 5141, + [5195] = 5157, + [5196] = 5099, + [5197] = 5114, + [5198] = 5147, + [5199] = 3077, + [5200] = 3075, + [5201] = 5084, + [5202] = 5202, + [5203] = 5126, + [5204] = 5102, + [5205] = 3048, + [5206] = 2666, + [5207] = 5151, + [5208] = 5112, + [5209] = 3075, + [5210] = 5147, + [5211] = 3048, + [5212] = 5212, + [5213] = 5156, + [5214] = 5167, + [5215] = 3051, + [5216] = 5151, + [5217] = 3077, + [5218] = 5102, + [5219] = 5111, + [5220] = 5157, + [5221] = 3075, + [5222] = 3075, + [5223] = 3048, + [5224] = 3051, + [5225] = 5032, + [5226] = 3077, + [5227] = 3075, + [5228] = 3048, + [5229] = 3051, + [5230] = 3079, + [5231] = 5106, + [5232] = 3082, + [5233] = 5084, + [5234] = 5157, + [5235] = 3077, + [5236] = 3077, + [5237] = 5129, + [5238] = 3079, + [5239] = 3075, + [5240] = 5240, + [5241] = 2656, + [5242] = 3048, + [5243] = 2657, + [5244] = 3051, + [5245] = 3051, [5246] = 5246, - [5247] = 5247, - [5248] = 5248, - [5249] = 5163, - [5250] = 5203, - [5251] = 5164, - [5252] = 4948, + [5247] = 5122, + [5248] = 5103, + [5249] = 3082, + [5250] = 5250, + [5251] = 5251, + [5252] = 5252, [5253] = 5253, - [5254] = 5254, - [5255] = 5153, - [5256] = 5181, - [5257] = 4964, - [5258] = 5208, - [5259] = 5259, - [5260] = 5260, - [5261] = 5169, - [5262] = 5170, - [5263] = 5263, + [5254] = 2612, + [5255] = 5084, + [5256] = 5256, + [5257] = 5257, + [5258] = 5177, + [5259] = 4993, + [5260] = 5177, + [5261] = 5261, + [5262] = 5262, + [5263] = 4400, [5264] = 5264, [5265] = 5265, [5266] = 5266, - [5267] = 5174, + [5267] = 5267, [5268] = 5268, - [5269] = 4827, + [5269] = 5269, [5270] = 5270, - [5271] = 5163, - [5272] = 4948, + [5271] = 5261, + [5272] = 5256, [5273] = 5273, - [5274] = 5164, - [5275] = 5155, - [5276] = 4948, - [5277] = 5158, - [5278] = 5156, - [5279] = 5159, - [5280] = 5263, + [5274] = 5274, + [5275] = 5275, + [5276] = 5276, + [5277] = 4400, + [5278] = 5278, + [5279] = 5269, + [5280] = 5250, [5281] = 5281, - [5282] = 5153, + [5282] = 5252, [5283] = 5283, - [5284] = 5284, - [5285] = 5165, - [5286] = 2943, - [5287] = 3035, - [5288] = 2854, - [5289] = 2860, - [5290] = 2876, - [5291] = 2907, - [5292] = 5160, - [5293] = 5293, + [5284] = 5281, + [5285] = 5252, + [5286] = 5109, + [5287] = 5287, + [5288] = 4993, + [5289] = 4993, + [5290] = 5290, + [5291] = 5291, + [5292] = 5292, + [5293] = 5264, [5294] = 5294, - [5295] = 5236, - [5296] = 5159, - [5297] = 4777, - [5298] = 4964, + [5295] = 5256, + [5296] = 5287, + [5297] = 5291, + [5298] = 5298, [5299] = 5299, [5300] = 5300, - [5301] = 5301, - [5302] = 5302, - [5303] = 5303, - [5304] = 5304, - [5305] = 5305, + [5301] = 5298, + [5302] = 5287, + [5303] = 5299, + [5304] = 5118, + [5305] = 5261, [5306] = 5306, - [5307] = 5307, + [5307] = 5257, [5308] = 5308, - [5309] = 5247, - [5310] = 5248, - [5311] = 4074, - [5312] = 5312, - [5313] = 5193, + [5309] = 5294, + [5310] = 5274, + [5311] = 5311, + [5312] = 2606, + [5313] = 5300, [5314] = 5314, - [5315] = 5315, - [5316] = 5316, - [5317] = 5317, - [5318] = 4089, + [5315] = 5283, + [5316] = 5306, + [5317] = 5118, + [5318] = 5318, [5319] = 5319, [5320] = 5320, - [5321] = 5308, - [5322] = 5195, - [5323] = 5199, - [5324] = 5324, - [5325] = 5312, - [5326] = 5307, - [5327] = 5308, - [5328] = 5301, - [5329] = 5329, + [5321] = 5262, + [5322] = 5261, + [5323] = 5298, + [5324] = 5300, + [5325] = 5007, + [5326] = 5265, + [5327] = 5327, + [5328] = 5294, + [5329] = 5300, [5330] = 5330, - [5331] = 5232, + [5331] = 5278, [5332] = 5332, - [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] = 5229, - [5351] = 5351, - [5352] = 5308, - [5353] = 2907, - [5354] = 5354, + [5333] = 5290, + [5334] = 5251, + [5335] = 5253, + [5336] = 5300, + [5337] = 5291, + [5338] = 5266, + [5339] = 5265, + [5340] = 5292, + [5341] = 5273, + [5342] = 5266, + [5343] = 5265, + [5344] = 5266, + [5345] = 5267, + [5346] = 5268, + [5347] = 5269, + [5348] = 5270, + [5349] = 5273, + [5350] = 5330, + [5351] = 5261, + [5352] = 5267, + [5353] = 5109, + [5354] = 5292, [5355] = 5355, [5356] = 5356, - [5357] = 5357, - [5358] = 5358, - [5359] = 5308, - [5360] = 5360, - [5361] = 5349, - [5362] = 4347, - [5363] = 5229, - [5364] = 5364, - [5365] = 5365, - [5366] = 5366, - [5367] = 5367, - [5368] = 5332, - [5369] = 5369, - [5370] = 5370, - [5371] = 5308, - [5372] = 4331, - [5373] = 5254, - [5374] = 5374, - [5375] = 5375, - [5376] = 5308, - [5377] = 5377, - [5378] = 5378, - [5379] = 5379, - [5380] = 5308, - [5381] = 5381, - [5382] = 5308, - [5383] = 5383, - [5384] = 5384, - [5385] = 5385, - [5386] = 5375, + [5357] = 5257, + [5358] = 5264, + [5359] = 5359, + [5360] = 5270, + [5361] = 5275, + [5362] = 5276, + [5363] = 5278, + [5364] = 5281, + [5365] = 5252, + [5366] = 5267, + [5367] = 5251, + [5368] = 5268, + [5369] = 5269, + [5370] = 5270, + [5371] = 5290, + [5372] = 5330, + [5373] = 5291, + [5374] = 5292, + [5375] = 5264, + [5376] = 5256, + [5377] = 5287, + [5378] = 5300, + [5379] = 5273, + [5380] = 5177, + [5381] = 5045, + [5382] = 5257, + [5383] = 5308, + [5384] = 5274, + [5385] = 5311, + [5386] = 5253, [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] = 5366, - [5410] = 5384, + [5388] = 5298, + [5389] = 5318, + [5390] = 5268, + [5391] = 5274, + [5392] = 5275, + [5393] = 5314, + [5394] = 5283, + [5395] = 5306, + [5396] = 5118, + [5397] = 5318, + [5398] = 5251, + [5399] = 5253, + [5400] = 5319, + [5401] = 5320, + [5402] = 5276, + [5403] = 5403, + [5404] = 5300, + [5405] = 5262, + [5406] = 5118, + [5407] = 5330, + [5408] = 5278, + [5409] = 5177, + [5410] = 5410, [5411] = 5411, - [5412] = 5303, - [5413] = 5320, - [5414] = 5204, - [5415] = 5324, - [5416] = 5301, - [5417] = 5306, - [5418] = 5205, - [5419] = 5419, - [5420] = 5308, - [5421] = 5421, - [5422] = 5407, - [5423] = 5315, - [5424] = 5270, - [5425] = 5425, - [5426] = 4376, - [5427] = 5195, - [5428] = 5199, - [5429] = 5356, - [5430] = 5430, - [5431] = 5355, - [5432] = 5432, - [5433] = 5245, - [5434] = 4386, - [5435] = 5435, - [5436] = 5375, - [5437] = 5343, - [5438] = 4374, - [5439] = 5154, - [5440] = 5312, + [5412] = 5308, + [5413] = 5275, + [5414] = 5261, + [5415] = 4545, + [5416] = 5300, + [5417] = 5290, + [5418] = 5300, + [5419] = 5300, + [5420] = 5276, + [5421] = 5319, + [5422] = 4915, + [5423] = 5109, + [5424] = 5300, + [5425] = 5311, + [5426] = 5426, + [5427] = 5320, + [5428] = 5428, + [5429] = 5281, + [5430] = 5314, + [5431] = 5314, + [5432] = 5283, + [5433] = 5306, + [5434] = 5318, + [5435] = 5319, + [5436] = 5320, + [5437] = 5262, + [5438] = 5311, + [5439] = 5439, + [5440] = 5440, [5441] = 5441, - [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, + [5442] = 5442, + [5443] = 5443, + [5444] = 5444, + [5445] = 5445, + [5446] = 3082, + [5447] = 5098, + [5448] = 5098, + [5449] = 5449, + [5450] = 5450, + [5451] = 5327, + [5452] = 5452, + [5453] = 5445, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, + [5457] = 5457, + [5458] = 5202, [5459] = 5459, - [5460] = 5358, - [5461] = 5308, - [5462] = 5378, - [5463] = 5307, + [5460] = 5460, + [5461] = 5461, + [5462] = 5462, + [5463] = 5411, [5464] = 5464, - [5465] = 5308, - [5466] = 5302, - [5467] = 5358, - [5468] = 5176, + [5465] = 2553, + [5466] = 5466, + [5467] = 5466, + [5468] = 4545, [5469] = 5469, - [5470] = 5365, - [5471] = 5315, - [5472] = 5332, - [5473] = 5407, - [5474] = 5459, - [5475] = 5435, - [5476] = 5302, - [5477] = 5245, - [5478] = 5478, - [5479] = 5247, - [5480] = 5248, - [5481] = 5306, - [5482] = 5408, - [5483] = 5176, - [5484] = 5254, - [5485] = 5324, - [5486] = 5301, - [5487] = 5307, - [5488] = 5435, - [5489] = 5489, - [5490] = 5304, + [5470] = 5470, + [5471] = 5098, + [5472] = 4354, + [5473] = 5473, + [5474] = 5474, + [5475] = 5473, + [5476] = 5476, + [5477] = 5477, + [5478] = 5411, + [5479] = 5456, + [5480] = 5480, + [5481] = 5481, + [5482] = 5084, + [5483] = 5483, + [5484] = 5484, + [5485] = 5466, + [5486] = 5486, + [5487] = 5487, + [5488] = 5488, + [5489] = 5464, + [5490] = 5490, [5491] = 5491, - [5492] = 4376, - [5493] = 5493, - [5494] = 5494, - [5495] = 5495, - [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, + [5492] = 5457, + [5493] = 5474, + [5494] = 5411, + [5495] = 5477, + [5496] = 5496, + [5497] = 5481, + [5498] = 5498, + [5499] = 5481, + [5500] = 5500, + [5501] = 5501, + [5502] = 5460, + [5503] = 5503, + [5504] = 5504, + [5505] = 5505, + [5506] = 5459, + [5507] = 5507, + [5508] = 5508, + [5509] = 5509, + [5510] = 5510, + [5511] = 5511, + [5512] = 5512, + [5513] = 5513, + [5514] = 4545, + [5515] = 5483, + [5516] = 5516, [5517] = 5517, - [5518] = 5302, - [5519] = 5519, + [5518] = 5518, + [5519] = 5118, [5520] = 5520, - [5521] = 5369, - [5522] = 5308, - [5523] = 5523, - [5524] = 5293, - [5525] = 5430, - [5526] = 5351, - [5527] = 5351, - [5528] = 5305, - [5529] = 5308, + [5521] = 5473, + [5522] = 5327, + [5523] = 5439, + [5524] = 5460, + [5525] = 5525, + [5526] = 5327, + [5527] = 5525, + [5528] = 5457, + [5529] = 5459, [5530] = 5530, [5531] = 5531, [5532] = 5532, - [5533] = 5381, - [5534] = 5534, - [5535] = 5535, - [5536] = 5464, - [5537] = 5523, - [5538] = 5519, - [5539] = 5523, - [5540] = 5317, - [5541] = 4050, - [5542] = 5330, - [5543] = 5543, - [5544] = 5317, - [5545] = 5494, - [5546] = 5253, - [5547] = 5547, + [5533] = 5533, + [5534] = 5483, + [5535] = 5480, + [5536] = 5536, + [5537] = 5520, + [5538] = 5538, + [5539] = 3048, + [5540] = 3077, + [5541] = 5177, + [5542] = 3075, + [5543] = 3048, + [5544] = 3051, + [5545] = 3079, + [5546] = 5546, + [5547] = 3082, [5548] = 5548, - [5549] = 5316, + [5549] = 5474, [5550] = 5550, - [5551] = 5495, - [5552] = 5532, - [5553] = 5330, - [5554] = 5535, - [5555] = 5555, - [5556] = 5398, - [5557] = 5557, - [5558] = 5405, - [5559] = 5299, - [5560] = 5342, - [5561] = 5523, + [5551] = 5459, + [5552] = 5552, + [5553] = 5460, + [5554] = 5500, + [5555] = 5552, + [5556] = 5461, + [5557] = 5442, + [5558] = 5098, + [5559] = 5559, + [5560] = 5084, + [5561] = 5561, [5562] = 5562, - [5563] = 5563, + [5563] = 5481, [5564] = 5564, - [5565] = 5565, - [5566] = 5548, + [5565] = 5509, + [5566] = 5464, [5567] = 5567, - [5568] = 5530, - [5569] = 5569, - [5570] = 5570, - [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] = 5584, - [5585] = 5517, - [5586] = 5555, - [5587] = 5385, - [5588] = 5584, - [5589] = 5589, - [5590] = 5495, - [5591] = 5591, - [5592] = 5398, + [5568] = 5567, + [5569] = 3051, + [5570] = 5530, + [5571] = 5473, + [5572] = 5456, + [5573] = 5567, + [5574] = 5525, + [5575] = 5445, + [5576] = 5439, + [5577] = 5500, + [5578] = 5578, + [5579] = 4343, + [5580] = 5580, + [5581] = 5084, + [5582] = 5445, + [5583] = 5525, + [5584] = 5442, + [5585] = 5084, + [5586] = 5483, + [5587] = 5587, + [5588] = 3079, + [5589] = 5456, + [5590] = 3077, + [5591] = 3075, + [5592] = 4658, [5593] = 5593, [5594] = 5594, - [5595] = 5567, + [5595] = 5595, [5596] = 5596, - [5597] = 5563, + [5597] = 5597, [5598] = 5598, - [5599] = 5317, - [5600] = 4289, - [5601] = 5357, - [5602] = 5567, - [5603] = 5464, - [5604] = 5419, - [5605] = 5154, - [5606] = 5299, + [5599] = 5599, + [5600] = 5444, + [5601] = 5455, + [5602] = 5470, + [5603] = 5603, + [5604] = 5604, + [5605] = 5511, + [5606] = 5496, [5607] = 5607, - [5608] = 5432, - [5609] = 5583, - [5610] = 5293, + [5608] = 5608, + [5609] = 5609, + [5610] = 5610, [5611] = 5611, - [5612] = 5357, - [5613] = 5589, - [5614] = 5565, - [5615] = 5378, + [5612] = 5612, + [5613] = 5613, + [5614] = 5614, + [5615] = 5615, [5616] = 5616, - [5617] = 5405, - [5618] = 5419, - [5619] = 5591, + [5617] = 5617, + [5618] = 5614, + [5619] = 5619, [5620] = 5620, - [5621] = 5398, - [5622] = 5405, - [5623] = 5432, + [5621] = 4637, + [5622] = 5622, + [5623] = 5610, [5624] = 5624, - [5625] = 5370, - [5626] = 5374, + [5625] = 5625, + [5626] = 5594, [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, + [5628] = 5612, + [5629] = 5629, + [5630] = 5630, + [5631] = 5608, + [5632] = 5632, + [5633] = 5462, + [5634] = 5612, + [5635] = 4370, + [5636] = 5636, + [5637] = 5637, + [5638] = 5632, + [5639] = 5598, + [5640] = 4658, + [5641] = 5599, [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, + [5643] = 5643, + [5644] = 5644, + [5645] = 5645, + [5646] = 4675, + [5647] = 5647, + [5648] = 5648, + [5649] = 5510, + [5650] = 5650, + [5651] = 5651, + [5652] = 5652, + [5653] = 4675, + [5654] = 5636, + [5655] = 5655, + [5656] = 4382, + [5657] = 5657, + [5658] = 4639, + [5659] = 4364, + [5660] = 5660, + [5661] = 4654, + [5662] = 3077, [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] = 5675, - [5676] = 5584, - [5677] = 5519, + [5664] = 3075, + [5665] = 4385, + [5666] = 5666, + [5667] = 3048, + [5668] = 5668, + [5669] = 5669, + [5670] = 5670, + [5671] = 5604, + [5672] = 5619, + [5673] = 5615, + [5674] = 5620, + [5675] = 5632, + [5676] = 3051, + [5677] = 5610, [5678] = 5678, - [5679] = 5385, - [5680] = 5680, + [5679] = 5624, + [5680] = 5619, [5681] = 5681, - [5682] = 5555, - [5683] = 5532, - [5684] = 5591, - [5685] = 5370, - [5686] = 5535, - [5687] = 5495, - [5688] = 5357, - [5689] = 5374, - [5690] = 5378, + [5682] = 5619, + [5683] = 5620, + [5684] = 5684, + [5685] = 5610, + [5686] = 5531, + [5687] = 5548, + [5688] = 5688, + [5689] = 5503, + [5690] = 5690, [5691] = 5691, - [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, + [5692] = 3079, + [5693] = 5619, + [5694] = 5620, + [5695] = 5441, + [5696] = 5294, + [5697] = 5533, + [5698] = 5616, + [5699] = 3082, + [5700] = 5620, + [5701] = 5619, + [5702] = 5629, + [5703] = 5620, + [5704] = 5647, + [5705] = 5705, + [5706] = 5603, + [5707] = 5620, + [5708] = 5511, + [5709] = 5496, + [5710] = 5620, + [5711] = 5501, + [5712] = 5512, + [5713] = 5550, + [5714] = 5637, + [5715] = 5620, [5716] = 5716, - [5717] = 5717, - [5718] = 5718, + [5717] = 5615, + [5718] = 5620, [5719] = 5719, [5720] = 5720, - [5721] = 5721, - [5722] = 5722, - [5723] = 5723, - [5724] = 5253, - [5725] = 5725, - [5726] = 5726, - [5727] = 5727, - [5728] = 5728, - [5729] = 5729, - [5730] = 5730, - [5731] = 5731, - [5732] = 5732, - [5733] = 5733, + [5721] = 5598, + [5722] = 5620, + [5723] = 5705, + [5724] = 5620, + [5725] = 5620, + [5726] = 5668, + [5727] = 5620, + [5728] = 5441, + [5729] = 5620, + [5730] = 5620, + [5731] = 5462, + [5732] = 5620, + [5733] = 5705, [5734] = 5734, - [5735] = 5735, - [5736] = 5736, - [5737] = 5737, - [5738] = 5738, - [5739] = 5739, - [5740] = 5740, - [5741] = 5253, - [5742] = 5742, - [5743] = 5743, + [5735] = 5620, + [5736] = 5620, + [5737] = 5620, + [5738] = 5444, + [5739] = 5620, + [5740] = 5629, + [5741] = 5620, + [5742] = 5620, + [5743] = 5647, [5744] = 5744, - [5745] = 5745, - [5746] = 5746, - [5747] = 5747, - [5748] = 5748, - [5749] = 5749, - [5750] = 5750, - [5751] = 5723, - [5752] = 5752, - [5753] = 5744, - [5754] = 5754, + [5745] = 5620, + [5746] = 5620, + [5747] = 5620, + [5748] = 5603, + [5749] = 5620, + [5750] = 5620, + [5751] = 5444, + [5752] = 5455, + [5753] = 5470, + [5754] = 5597, [5755] = 5755, - [5756] = 5756, - [5757] = 5757, - [5758] = 5758, - [5759] = 5735, - [5760] = 918, - [5761] = 5726, - [5762] = 5754, - [5763] = 5763, - [5764] = 5764, + [5756] = 5455, + [5757] = 4639, + [5758] = 5719, + [5759] = 5604, + [5760] = 5470, + [5761] = 5620, + [5762] = 5688, + [5763] = 5617, + [5764] = 5613, [5765] = 5765, - [5766] = 5766, - [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] = 5792, - [5793] = 5793, - [5794] = 5794, - [5795] = 4074, - [5796] = 5796, - [5797] = 916, + [5766] = 5613, + [5767] = 5767, + [5768] = 5596, + [5769] = 5622, + [5770] = 5716, + [5771] = 5684, + [5772] = 5511, + [5773] = 5765, + [5774] = 5456, + [5775] = 5616, + [5776] = 5496, + [5777] = 5617, + [5778] = 5655, + [5779] = 5614, + [5780] = 5637, + [5781] = 5620, + [5782] = 5619, + [5783] = 5620, + [5784] = 5620, + [5785] = 5460, + [5786] = 5503, + [5787] = 5629, + [5788] = 5688, + [5789] = 5622, + [5790] = 4654, + [5791] = 5610, + [5792] = 5604, + [5793] = 5624, + [5794] = 5688, + [5795] = 5795, + [5796] = 5594, + [5797] = 5622, [5798] = 5798, - [5799] = 5799, - [5800] = 5800, - [5801] = 5801, - [5802] = 5802, - [5803] = 5788, - [5804] = 5804, - [5805] = 5805, - [5806] = 5806, - [5807] = 5807, - [5808] = 5808, - [5809] = 5809, + [5799] = 5616, + [5800] = 5617, + [5801] = 4637, + [5802] = 5637, + [5803] = 5803, + [5804] = 5614, + [5805] = 5619, + [5806] = 5620, + [5807] = 5608, + [5808] = 5615, + [5809] = 5647, [5810] = 5810, - [5811] = 5811, - [5812] = 5812, - [5813] = 5791, + [5811] = 5594, + [5812] = 5607, + [5813] = 5813, [5814] = 5814, - [5815] = 5186, - [5816] = 5188, + [5815] = 5815, + [5816] = 5816, [5817] = 5817, - [5818] = 5189, + [5818] = 5818, [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] = 5721, - [5840] = 5731, - [5841] = 5738, - [5842] = 5749, - [5843] = 5755, - [5844] = 5826, + [5820] = 5820, + [5821] = 5608, + [5822] = 5613, + [5823] = 5612, + [5824] = 5610, + [5825] = 5755, + [5826] = 5620, + [5827] = 5620, + [5828] = 5441, + [5829] = 5533, + [5830] = 5632, + [5831] = 5657, + [5832] = 5603, + [5833] = 5624, + [5834] = 5705, + [5835] = 5607, + [5836] = 5512, + [5837] = 5837, + [5838] = 5599, + [5839] = 5644, + [5840] = 5840, + [5841] = 5841, + [5842] = 5842, + [5843] = 5843, + [5844] = 5643, [5845] = 5845, [5846] = 5846, [5847] = 5847, - [5848] = 5848, - [5849] = 5733, + [5848] = 5651, + [5849] = 5849, [5850] = 5850, - [5851] = 5846, - [5852] = 5852, - [5853] = 5729, - [5854] = 5828, - [5855] = 5717, - [5856] = 5856, - [5857] = 5764, + [5851] = 5648, + [5852] = 5795, + [5853] = 4590, + [5854] = 5650, + [5855] = 5815, + [5856] = 5651, + [5857] = 5652, [5858] = 5858, - [5859] = 5834, - [5860] = 5860, - [5861] = 5848, - [5862] = 5862, - [5863] = 5863, - [5864] = 5735, - [5865] = 5858, - [5866] = 5829, + [5859] = 5652, + [5860] = 5798, + [5861] = 5816, + [5862] = 5817, + [5863] = 5501, + [5864] = 5512, + [5865] = 5803, + [5866] = 5866, [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, + [5869] = 5550, + [5870] = 5593, + [5871] = 5818, + [5872] = 5842, + [5873] = 5643, + [5874] = 5644, + [5875] = 5595, + [5876] = 5648, + [5877] = 5650, + [5878] = 5651, + [5879] = 5840, + [5880] = 5880, + [5881] = 5652, + [5882] = 5882, + [5883] = 5883, + [5884] = 5866, [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, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5889, + [5890] = 5819, + [5891] = 5846, + [5892] = 5841, + [5893] = 5893, + [5894] = 5894, + [5895] = 5888, + [5896] = 5896, + [5897] = 5866, + [5898] = 5896, [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, + [5900] = 5900, + [5901] = 5842, + [5902] = 5902, + [5903] = 5903, + [5904] = 5820, + [5905] = 5813, + [5906] = 5814, + [5907] = 5815, + [5908] = 5816, + [5909] = 5817, + [5910] = 5888, + [5911] = 5818, + [5912] = 5819, + [5913] = 5820, + [5914] = 5660, + [5915] = 5813, + [5916] = 5734, + [5917] = 5858, [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, + [5919] = 5899, + [5920] = 5920, + [5921] = 5734, + [5922] = 5922, + [5923] = 5814, + [5924] = 5666, + [5925] = 5668, + [5926] = 5669, + [5927] = 5670, + [5928] = 5548, + [5929] = 5880, + [5930] = 5885, + [5931] = 5810, + [5932] = 5795, + [5933] = 5798, + [5934] = 5803, + [5935] = 5593, + [5936] = 5595, + [5937] = 5815, + [5938] = 5840, + [5939] = 5813, + [5940] = 5940, + [5941] = 5816, + [5942] = 5889, + [5943] = 5893, + [5944] = 5846, + [5945] = 5817, + [5946] = 5946, + [5947] = 5947, + [5948] = 5896, + [5949] = 5899, + [5950] = 5734, + [5951] = 5818, + [5952] = 5819, + [5953] = 5858, + [5954] = 5820, + [5955] = 5880, + [5956] = 5885, + [5957] = 5946, + [5958] = 5888, + [5959] = 5456, + [5960] = 5625, + [5961] = 5814, + [5962] = 5899, + [5963] = 5963, + [5964] = 5849, + [5965] = 5643, + [5966] = 5889, [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, + [5968] = 5630, + [5969] = 5969, + [5970] = 5970, + [5971] = 5894, + [5972] = 5972, + [5973] = 5973, + [5974] = 5858, + [5975] = 5644, + [5976] = 5976, + [5977] = 5841, + [5978] = 5969, + [5979] = 5979, + [5980] = 5896, + [5981] = 5981, + [5982] = 5973, + [5983] = 5983, + [5984] = 5984, + [5985] = 5985, + [5986] = 5940, + [5987] = 5841, + [5988] = 5988, + [5989] = 5666, + [5990] = 5973, + [5991] = 5991, + [5992] = 5668, + [5993] = 5669, + [5994] = 5994, + [5995] = 5893, + [5996] = 5670, + [5997] = 5648, + [5998] = 5795, + [5999] = 5798, + [6000] = 6000, + [6001] = 5888, + [6002] = 5531, + [6003] = 5803, + [6004] = 5889, + [6005] = 5880, + [6006] = 5885, + [6007] = 5510, + [6008] = 5593, [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, + [6010] = 5893, + [6011] = 6011, + [6012] = 6012, + [6013] = 5666, + [6014] = 5650, + [6015] = 5669, + [6016] = 5984, + [6017] = 6017, + [6018] = 5595, + [6019] = 5670, + [6020] = 6020, + [6021] = 6021, + [6022] = 5460, + [6023] = 5846, + [6024] = 6024, + [6025] = 6025, + [6026] = 6026, + [6027] = 6027, + [6028] = 6028, + [6029] = 6029, + [6030] = 2612, + [6031] = 6031, [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, + [6033] = 6032, + [6034] = 6034, + [6035] = 6035, + [6036] = 6034, + [6037] = 6037, + [6038] = 6038, + [6039] = 6039, + [6040] = 6040, + [6041] = 6041, + [6042] = 6037, + [6043] = 6043, + [6044] = 6044, + [6045] = 6045, + [6046] = 6046, + [6047] = 6047, + [6048] = 6048, + [6049] = 6049, + [6050] = 6050, + [6051] = 6051, + [6052] = 5505, [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, + [6054] = 5564, + [6055] = 6055, + [6056] = 6044, + [6057] = 6057, + [6058] = 5449, + [6059] = 6059, + [6060] = 6060, + [6061] = 6043, + [6062] = 6062, + [6063] = 6063, + [6064] = 6064, + [6065] = 6065, + [6066] = 6066, + [6067] = 6067, + [6068] = 6068, + [6069] = 6069, [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, + [6071] = 6068, + [6072] = 6072, + [6073] = 6073, + [6074] = 6074, + [6075] = 6027, + [6076] = 6076, + [6077] = 6077, + [6078] = 6078, + [6079] = 6079, + [6080] = 6032, + [6081] = 6034, + [6082] = 6082, + [6083] = 6037, + [6084] = 6025, + [6085] = 5460, + [6086] = 6086, + [6087] = 6041, + [6088] = 6041, + [6089] = 6028, + [6090] = 6043, + [6091] = 6029, + [6092] = 6045, + [6093] = 6093, + [6094] = 6047, + [6095] = 6048, + [6096] = 6050, + [6097] = 6051, + [6098] = 5922, + [6099] = 6055, + [6100] = 6100, [6101] = 6101, - [6102] = 5739, - [6103] = 5822, - [6104] = 6104, - [6105] = 5846, - [6106] = 5747, - [6107] = 6107, - [6108] = 5748, - [6109] = 5740, + [6102] = 6102, + [6103] = 6103, + [6104] = 5486, + [6105] = 6105, + [6106] = 6106, + [6107] = 6035, + [6108] = 6108, + [6109] = 6065, [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, + [6111] = 6068, + [6112] = 6112, + [6113] = 6100, + [6114] = 6070, + [6115] = 6031, + [6116] = 6072, + [6117] = 6074, + [6118] = 6102, + [6119] = 6119, + [6120] = 6027, + [6121] = 6121, + [6122] = 6060, + [6123] = 6110, + [6124] = 6124, + [6125] = 6032, + [6126] = 6034, + [6127] = 6127, + [6128] = 6128, + [6129] = 6037, + [6130] = 6046, + [6131] = 6131, + [6132] = 6132, + [6133] = 6043, + [6134] = 6024, + [6135] = 6045, + [6136] = 6045, + [6137] = 6047, + [6138] = 6048, + [6139] = 6050, + [6140] = 6028, + [6141] = 6141, + [6142] = 6142, + [6143] = 6143, + [6144] = 6039, + [6145] = 6065, + [6146] = 6053, + [6147] = 6147, + [6148] = 6068, + [6149] = 6038, + [6150] = 6070, + [6151] = 6072, + [6152] = 6119, + [6153] = 6074, + [6154] = 6043, + [6155] = 6027, + [6156] = 6051, + [6157] = 6045, + [6158] = 6147, + [6159] = 6047, + [6160] = 6032, + [6161] = 6034, + [6162] = 6162, + [6163] = 6037, + [6164] = 6164, + [6165] = 890, + [6166] = 6043, + [6167] = 6045, + [6168] = 6047, + [6169] = 6048, + [6170] = 6048, + [6171] = 4354, + [6172] = 6172, + [6173] = 6173, + [6174] = 6057, + [6175] = 4594, + [6176] = 6176, + [6177] = 6177, + [6178] = 6065, + [6179] = 6072, + [6180] = 6074, + [6181] = 6103, + [6182] = 6142, + [6183] = 6032, + [6184] = 6034, + [6185] = 6029, + [6186] = 6037, + [6187] = 6187, + [6188] = 6188, + [6189] = 6059, + [6190] = 6043, + [6191] = 6045, + [6192] = 6192, + [6193] = 6047, + [6194] = 6048, + [6195] = 6035, + [6196] = 6196, + [6197] = 5867, + [6198] = 6198, + [6199] = 5967, + [6200] = 6065, + [6201] = 6072, + [6202] = 6074, + [6203] = 6203, + [6204] = 6050, + [6205] = 6032, + [6206] = 6034, + [6207] = 6207, + [6208] = 6037, + [6209] = 6051, + [6210] = 6210, + [6211] = 6043, + [6212] = 6045, + [6213] = 6047, + [6214] = 6048, + [6215] = 5868, + [6216] = 6216, + [6217] = 5967, + [6218] = 6218, + [6219] = 6219, + [6220] = 6220, + [6221] = 6065, + [6222] = 6050, + [6223] = 6072, + [6224] = 6074, + [6225] = 6225, + [6226] = 6210, + [6227] = 6082, + [6228] = 6032, + [6229] = 6034, + [6230] = 6037, + [6231] = 6231, + [6232] = 6232, + [6233] = 6043, + [6234] = 6234, + [6235] = 6045, + [6236] = 6047, + [6237] = 6048, + [6238] = 6051, + [6239] = 6220, + [6240] = 6240, + [6241] = 6241, + [6242] = 916, + [6243] = 6243, + [6244] = 6244, + [6245] = 6072, + [6246] = 6246, + [6247] = 6086, + [6248] = 6244, + [6249] = 6037, + [6250] = 6047, + [6251] = 6048, + [6252] = 6055, + [6253] = 6253, + [6254] = 6082, + [6255] = 6172, + [6256] = 6256, + [6257] = 6072, + [6258] = 2606, + [6259] = 6259, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 6072, + [6264] = 6264, + [6265] = 6265, + [6266] = 4354, + [6267] = 6187, + [6268] = 6262, + [6269] = 6072, + [6270] = 6270, + [6271] = 6246, + [6272] = 6032, + [6273] = 6273, + [6274] = 6034, + [6275] = 6173, + [6276] = 6072, + [6277] = 6176, + [6278] = 6278, + [6279] = 6279, + [6280] = 6072, + [6281] = 6281, + [6282] = 6282, + [6283] = 6073, + [6284] = 6198, + [6285] = 6053, + [6286] = 6065, + [6287] = 6072, + [6288] = 4382, + [6289] = 6055, + [6290] = 6290, + [6291] = 6063, + [6292] = 6292, + [6293] = 6072, + [6294] = 6079, + [6295] = 6295, + [6296] = 6047, + [6297] = 6297, + [6298] = 6072, + [6299] = 6256, + [6300] = 6048, + [6301] = 6068, + [6302] = 6038, + [6303] = 6119, + [6304] = 6304, + [6305] = 6147, + [6306] = 6306, + [6307] = 5843, + [6308] = 6172, + [6309] = 6173, + [6310] = 6310, + [6311] = 6176, + [6312] = 6312, + [6313] = 6070, + [6314] = 6198, + [6315] = 6031, + [6316] = 6060, + [6317] = 5845, [6318] = 6318, - [6319] = 6317, - [6320] = 6320, - [6321] = 6321, + [6319] = 6069, + [6320] = 6259, + [6321] = 6261, [6322] = 6322, - [6323] = 6317, + [6323] = 6093, [6324] = 6324, [6325] = 6325, - [6326] = 6326, - [6327] = 6327, + [6326] = 6260, + [6327] = 6225, [6328] = 6328, - [6329] = 6329, + [6329] = 5845, [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, + [6331] = 6124, + [6332] = 5847, + [6333] = 6256, + [6334] = 6065, + [6335] = 6265, + [6336] = 6055, + [6337] = 6207, + [6338] = 6070, + [6339] = 6128, + [6340] = 6262, + [6341] = 6068, + [6342] = 6072, + [6343] = 6297, + [6344] = 6040, + [6345] = 4602, + [6346] = 6322, + [6347] = 6105, + [6348] = 6070, [6349] = 6349, - [6350] = 6350, + [6350] = 6304, [6351] = 6351, - [6352] = 6352, + [6352] = 6306, [6353] = 6353, - [6354] = 5294, - [6355] = 6355, + [6354] = 6072, + [6355] = 6330, [6356] = 6356, - [6357] = 6357, - [6358] = 6358, - [6359] = 6327, + [6357] = 6076, + [6358] = 6049, + [6359] = 6310, [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, + [6361] = 6312, + [6362] = 6265, + [6363] = 6031, + [6364] = 6060, + [6365] = 6074, + [6366] = 6356, + [6367] = 6367, + [6368] = 6103, + [6369] = 6069, + [6370] = 6132, + [6371] = 6143, + [6372] = 6259, + [6373] = 6048, + [6374] = 6077, [6375] = 6375, - [6376] = 6376, - [6377] = 6377, - [6378] = 6378, - [6379] = 6362, - [6380] = 6380, - [6381] = 6381, - [6382] = 6382, + [6376] = 6219, + [6377] = 6064, + [6378] = 6067, + [6379] = 6282, + [6380] = 6074, + [6381] = 6093, + [6382] = 6322, [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, + [6384] = 6069, + [6385] = 6278, + [6386] = 5546, + [6387] = 6330, + [6388] = 6322, + [6389] = 6039, + [6390] = 6330, + [6391] = 6027, + [6392] = 4343, + [6393] = 6351, + [6394] = 6367, + [6395] = 6218, + [6396] = 6396, + [6397] = 6259, + [6398] = 6375, + [6399] = 6041, + [6400] = 6295, + [6401] = 6349, + [6402] = 6270, + [6403] = 6273, + [6404] = 6253, + [6405] = 6367, + [6406] = 5967, + [6407] = 6064, + [6408] = 6067, + [6409] = 6072, + [6410] = 6410, + [6411] = 6062, + [6412] = 6375, + [6413] = 6044, + [6414] = 6367, + [6415] = 6032, + [6416] = 6034, + [6417] = 6417, + [6418] = 6102, + [6419] = 6037, + [6420] = 6216, [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, + [6422] = 6040, + [6423] = 6110, + [6424] = 6105, + [6425] = 6044, + [6426] = 6351, + [6427] = 6142, + [6428] = 6428, + [6429] = 6353, + [6430] = 6430, + [6431] = 6065, + [6432] = 6076, + [6433] = 6049, + [6434] = 6187, + [6435] = 6261, + [6436] = 6093, + [6437] = 6356, + [6438] = 6102, + [6439] = 6324, + [6440] = 6143, + [6441] = 6325, + [6442] = 6110, + [6443] = 6246, + [6444] = 6219, + [6445] = 6046, + [6446] = 6041, + [6447] = 6282, + [6448] = 6027, + [6449] = 6375, + [6450] = 6383, + [6451] = 6068, + [6452] = 6078, + [6453] = 6100, + [6454] = 6024, + [6455] = 6040, + [6456] = 6105, + [6457] = 6103, + [6458] = 6026, + [6459] = 6070, + [6460] = 6353, + [6461] = 6210, + [6462] = 6417, + [6463] = 6076, + [6464] = 6310, + [6465] = 6124, + [6466] = 6356, + [6467] = 6318, + [6468] = 6143, + [6469] = 6128, + [6470] = 6279, + [6471] = 6142, + [6472] = 6219, + [6473] = 6072, + [6474] = 6024, + [6475] = 6475, + [6476] = 6072, + [6477] = 6282, + [6478] = 6187, + [6479] = 6479, + [6480] = 6043, + [6481] = 6383, + [6482] = 6295, + [6483] = 6045, + [6484] = 6349, + [6485] = 6047, + [6486] = 6048, + [6487] = 6487, + [6488] = 5484, + [6489] = 6489, + [6490] = 6490, + [6491] = 6063, + [6492] = 6492, + [6493] = 6479, + [6494] = 6253, + [6495] = 5843, + [6496] = 5456, + [6497] = 6050, + [6498] = 6051, + [6499] = 5887, + [6500] = 6188, + [6501] = 6324, + [6502] = 6210, + [6503] = 6325, + [6504] = 6261, [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, + [6506] = 6082, + [6507] = 5902, + [6508] = 6026, + [6509] = 6127, + [6510] = 4354, + [6511] = 6027, + [6512] = 6246, + [6513] = 6328, + [6514] = 6065, + [6515] = 6475, + [6516] = 6516, + [6517] = 6032, + [6518] = 6256, + [6519] = 6034, + [6520] = 6073, + [6521] = 6324, + [6522] = 6383, + [6523] = 6262, + [6524] = 6265, + [6525] = 6037, + [6526] = 6325, + [6527] = 6270, + [6528] = 6164, + [6529] = 6273, + [6530] = 6516, + [6531] = 5845, + [6532] = 6532, + [6533] = 6078, + [6534] = 6025, + [6535] = 6028, + [6536] = 6029, + [6537] = 6297, + [6538] = 6538, [6539] = 6539, - [6540] = 6471, - [6541] = 6330, + [6540] = 6035, + [6541] = 6074, [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, + [6543] = 892, + [6544] = 6046, + [6545] = 5460, + [6546] = 6546, + [6547] = 6547, + [6548] = 6025, + [6549] = 6124, + [6550] = 5847, + [6551] = 6551, + [6552] = 915, + [6553] = 929, + [6554] = 6027, + [6555] = 6417, + [6556] = 6128, + [6557] = 6417, + [6558] = 5512, + [6559] = 6037, + [6560] = 6053, + [6561] = 6207, + [6562] = 6270, + [6563] = 6353, + [6564] = 6292, + [6565] = 5441, + [6566] = 5455, + [6567] = 5470, + [6568] = 6487, + [6569] = 5456, + [6570] = 6475, + [6571] = 6079, + [6572] = 6273, + [6573] = 6074, + [6574] = 6310, + [6575] = 6079, + [6576] = 6532, + [6577] = 6487, + [6578] = 6578, + [6579] = 6489, + [6580] = 5460, + [6581] = 6492, + [6582] = 6582, + [6583] = 6038, + [6584] = 6119, + [6585] = 6147, + [6586] = 6489, + [6587] = 6041, + [6588] = 6172, + [6589] = 6173, + [6590] = 6492, + [6591] = 6479, + [6592] = 4611, + [6593] = 6176, + [6594] = 6594, [6595] = 6595, - [6596] = 6596, + [6596] = 6198, [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, + [6598] = 6421, + [6599] = 5490, + [6600] = 6188, + [6601] = 6304, + [6602] = 6026, + [6603] = 6492, + [6604] = 6475, + [6605] = 6295, + [6606] = 6260, + [6607] = 6349, + [6608] = 6479, + [6609] = 5456, [6610] = 6610, - [6611] = 6611, - [6612] = 6612, - [6613] = 6613, - [6614] = 6602, - [6615] = 6615, - [6616] = 6616, - [6617] = 6617, + [6611] = 6043, + [6612] = 6053, + [6613] = 6253, + [6614] = 6065, + [6615] = 6045, + [6616] = 5508, + [6617] = 6188, [6618] = 6618, - [6619] = 6619, - [6620] = 6620, - [6621] = 6621, - [6622] = 6622, + [6619] = 6055, + [6620] = 6068, + [6621] = 5460, + [6622] = 5456, [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, + [6624] = 6306, + [6625] = 6100, + [6626] = 6070, + [6627] = 6297, + [6628] = 6260, + [6629] = 6487, + [6630] = 6072, + [6631] = 6078, + [6632] = 6047, + [6633] = 6304, + [6634] = 6489, + [6635] = 6074, + [6636] = 6306, + [6637] = 6618, + [6638] = 6638, + [6639] = 6639, + [6640] = 6639, + [6641] = 6639, [6642] = 6642, - [6643] = 6601, - [6644] = 6644, - [6645] = 6606, + [6643] = 6643, + [6644] = 6639, + [6645] = 6645, [6646] = 6646, - [6647] = 6602, - [6648] = 6603, + [6647] = 6647, + [6648] = 4382, [6649] = 6649, [6650] = 6650, [6651] = 6651, [6652] = 6652, - [6653] = 6609, + [6653] = 6653, [6654] = 6654, [6655] = 6655, - [6656] = 6600, + [6656] = 6656, [6657] = 6657, - [6658] = 6604, + [6658] = 6658, [6659] = 6659, [6660] = 6660, [6661] = 6661, - [6662] = 6596, - [6663] = 6655, + [6662] = 6662, + [6663] = 6663, [6664] = 6664, - [6665] = 6665, - [6666] = 6616, - [6667] = 6615, - [6668] = 6668, + [6665] = 6639, + [6666] = 6666, + [6667] = 6642, + [6668] = 6643, [6669] = 6669, - [6670] = 6616, - [6671] = 6671, - [6672] = 6615, - [6673] = 6598, - [6674] = 6601, - [6675] = 6651, - [6676] = 6676, + [6670] = 6670, + [6671] = 4364, + [6672] = 4364, + [6673] = 6673, + [6674] = 6639, + [6675] = 6642, + [6676] = 6643, [6677] = 6677, - [6678] = 6615, - [6679] = 6679, - [6680] = 6603, - [6681] = 6603, + [6678] = 6678, + [6679] = 6656, + [6680] = 6680, + [6681] = 6639, [6682] = 6682, [6683] = 6683, [6684] = 6684, - [6685] = 6600, - [6686] = 6686, + [6685] = 6642, + [6686] = 6643, [6687] = 6687, - [6688] = 6611, - [6689] = 6612, + [6688] = 6688, + [6689] = 6689, [6690] = 6690, - [6691] = 6605, - [6692] = 6606, - [6693] = 6616, - [6694] = 6617, - [6695] = 6682, + [6691] = 6691, + [6692] = 6692, + [6693] = 6693, + [6694] = 6694, + [6695] = 6695, [6696] = 6696, - [6697] = 6622, - [6698] = 6698, + [6697] = 6697, + [6698] = 6649, [6699] = 6699, - [6700] = 6606, - [6701] = 6602, - [6702] = 6627, - [6703] = 6600, + [6700] = 6682, + [6701] = 6678, + [6702] = 6654, + [6703] = 5561, [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, + [6705] = 6645, + [6706] = 6706, + [6707] = 6707, + [6708] = 6708, + [6709] = 6709, + [6710] = 6655, + [6711] = 6645, + [6712] = 6712, + [6713] = 6713, + [6714] = 5645, + [6715] = 6715, + [6716] = 6645, + [6717] = 6692, + [6718] = 6718, + [6719] = 6651, + [6720] = 6678, + [6721] = 6721, + [6722] = 6722, + [6723] = 6693, [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, + [6725] = 5498, + [6726] = 4370, + [6727] = 6727, + [6728] = 6728, + [6729] = 6695, + [6730] = 6689, + [6731] = 6731, + [6732] = 6732, + [6733] = 6731, + [6734] = 6645, + [6735] = 6735, + [6736] = 6736, + [6737] = 6737, + [6738] = 6738, + [6739] = 6739, + [6740] = 5645, + [6741] = 6639, + [6742] = 6642, + [6743] = 6643, + [6744] = 6645, + [6745] = 6645, + [6746] = 6645, + [6747] = 6645, + [6748] = 6645, + [6749] = 6645, + [6750] = 6708, + [6751] = 1322, + [6752] = 6651, + [6753] = 6689, + [6754] = 6645, + [6755] = 6755, + [6756] = 6695, + [6757] = 6663, + [6758] = 6682, + [6759] = 6678, + [6760] = 6708, + [6761] = 6709, + [6762] = 6655, + [6763] = 6713, [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, + [6765] = 6651, + [6766] = 6715, + [6767] = 6767, + [6768] = 6692, + [6769] = 6718, + [6770] = 6721, + [6771] = 5645, + [6772] = 6678, + [6773] = 6773, + [6774] = 6645, + [6775] = 6689, + [6776] = 6724, + [6777] = 6777, + [6778] = 6778, + [6779] = 4385, + [6780] = 6731, + [6781] = 6695, + [6782] = 6689, + [6783] = 6682, + [6784] = 6784, + [6785] = 4370, + [6786] = 6651, + [6787] = 6647, + [6788] = 6708, + [6789] = 6709, + [6790] = 6655, + [6791] = 6791, + [6792] = 6755, + [6793] = 6713, [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, + [6795] = 6673, + [6796] = 6694, + [6797] = 6715, + [6798] = 6639, + [6799] = 6718, + [6800] = 6639, + [6801] = 6721, + [6802] = 6642, + [6803] = 2612, + [6804] = 6731, + [6805] = 6643, + [6806] = 6645, + [6807] = 6656, + [6808] = 6808, [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, + [6810] = 6810, + [6811] = 6811, + [6812] = 6610, + [6813] = 6687, + [6814] = 6712, + [6815] = 6704, + [6816] = 6713, + [6817] = 6651, + [6818] = 6712, + [6819] = 6819, + [6820] = 6709, + [6821] = 6673, + [6822] = 6688, + [6823] = 6639, + [6824] = 6645, + [6825] = 6696, + [6826] = 6645, + [6827] = 6809, + [6828] = 6764, + [6829] = 6697, + [6830] = 6830, + [6831] = 6141, + [6832] = 6784, + [6833] = 6833, + [6834] = 6688, + [6835] = 6696, + [6836] = 6697, + [6837] = 6837, + [6838] = 6767, + [6839] = 6721, + [6840] = 6840, + [6841] = 6691, + [6842] = 6663, + [6843] = 6651, + [6844] = 6844, + [6845] = 6845, [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, + [6847] = 6809, + [6848] = 6848, + [6849] = 6639, + [6850] = 6689, + [6851] = 6645, + [6852] = 6645, + [6853] = 6830, + [6854] = 6854, + [6855] = 6855, + [6856] = 2606, + [6857] = 6652, + [6858] = 6764, + [6859] = 6859, + [6860] = 6860, + [6861] = 6715, + [6862] = 6657, + [6863] = 6863, + [6864] = 6642, + [6865] = 6865, + [6866] = 6866, + [6867] = 6693, + [6868] = 6645, + [6869] = 6693, + [6870] = 6663, + [6871] = 6673, + [6872] = 5536, + [6873] = 6643, + [6874] = 6874, + [6875] = 6692, + [6876] = 6666, + [6877] = 6639, + [6878] = 6878, + [6879] = 6879, + [6880] = 6678, + [6881] = 6855, + [6882] = 6718, + [6883] = 6883, + [6884] = 5504, + [6885] = 6809, + [6886] = 6855, + [6887] = 4385, + [6888] = 6764, + [6889] = 6855, + [6890] = 6639, + [6891] = 6699, + [6892] = 6855, [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, + [6894] = 6430, + [6895] = 6895, + [6896] = 6639, + [6897] = 6724, + [6898] = 6639, + [6899] = 6642, + [6900] = 6656, + [6901] = 6901, + [6902] = 6643, + [6903] = 6647, + [6904] = 6712, + [6905] = 6647, + [6906] = 6639, + [6907] = 6732, + [6908] = 6651, + [6909] = 6645, + [6910] = 6910, + [6911] = 6911, + [6912] = 6912, + [6913] = 6913, + [6914] = 6914, + [6915] = 6915, + [6916] = 6916, + [6917] = 6916, + [6918] = 6914, + [6919] = 6916, + [6920] = 6920, + [6921] = 6916, + [6922] = 6914, + [6923] = 6923, + [6924] = 6912, + [6925] = 6925, + [6926] = 6926, + [6927] = 6927, + [6928] = 6928, + [6929] = 6929, + [6930] = 6913, + [6931] = 6931, [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, + [6933] = 6933, + [6934] = 6934, + [6935] = 6935, + [6936] = 6936, + [6937] = 6925, + [6938] = 6938, + [6939] = 6939, + [6940] = 1064, + [6941] = 6941, + [6942] = 6936, + [6943] = 6943, + [6944] = 6944, + [6945] = 6914, + [6946] = 6946, + [6947] = 6916, + [6948] = 6916, + [6949] = 6949, + [6950] = 6935, + [6951] = 6951, + [6952] = 6952, + [6953] = 6910, + [6954] = 6954, + [6955] = 6955, + [6956] = 6936, + [6957] = 6957, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6927, + [6962] = 6962, + [6963] = 6954, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, + [6968] = 6915, [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, + [6970] = 6911, + [6971] = 6925, + [6972] = 6972, + [6973] = 6973, + [6974] = 6915, + [6975] = 6941, + [6976] = 6941, + [6977] = 6914, + [6978] = 6978, + [6979] = 6926, + [6980] = 6980, + [6981] = 6932, + [6982] = 6933, + [6983] = 6983, + [6984] = 6920, + [6985] = 6985, + [6986] = 6929, + [6987] = 6916, + [6988] = 6962, + [6989] = 6913, + [6990] = 6957, + [6991] = 6915, + [6992] = 6992, [6993] = 6993, - [6994] = 6714, - [6995] = 6600, - [6996] = 6601, - [6997] = 6684, - [6998] = 6601, - [6999] = 6815, + [6994] = 6994, + [6995] = 6995, + [6996] = 6994, + [6997] = 6914, + [6998] = 6914, + [6999] = 6999, + [7000] = 6914, + [7001] = 6911, + [7002] = 6910, + [7003] = 6915, + [7004] = 6912, + [7005] = 6925, + [7006] = 6914, + [7007] = 6938, + [7008] = 7008, + [7009] = 7009, + [7010] = 7010, + [7011] = 6932, + [7012] = 6933, + [7013] = 6939, + [7014] = 6978, + [7015] = 6915, + [7016] = 7016, + [7017] = 6938, + [7018] = 7018, + [7019] = 6931, + [7020] = 6944, + [7021] = 6980, + [7022] = 7022, + [7023] = 7023, + [7024] = 6928, + [7025] = 6949, + [7026] = 6926, + [7027] = 6972, + [7028] = 7028, + [7029] = 6955, + [7030] = 7022, + [7031] = 6595, + [7032] = 6959, + [7033] = 6916, + [7034] = 6916, + [7035] = 6935, + [7036] = 6944, + [7037] = 6966, + [7038] = 6915, + [7039] = 6916, + [7040] = 6914, + [7041] = 7041, + [7042] = 6936, + [7043] = 6913, + [7044] = 6973, + [7045] = 6929, + [7046] = 6941, + [7047] = 6949, + [7048] = 6913, + [7049] = 7049, + [7050] = 6916, + [7051] = 6928, + [7052] = 6914, + [7053] = 6983, + [7054] = 6985, + [7055] = 6951, + [7056] = 6914, + [7057] = 6935, + [7058] = 6916, + [7059] = 6941, + [7060] = 6934, + [7061] = 6915, + [7062] = 6914, + [7063] = 6994, + [7064] = 7064, + [7065] = 6967, + [7066] = 6985, + [7067] = 3624, + [7068] = 6999, + [7069] = 6954, + [7070] = 6915, + [7071] = 6926, + [7072] = 6916, + [7073] = 6959, + [7074] = 6914, + [7075] = 6929, + [7076] = 6954, + [7077] = 7077, + [7078] = 6972, + [7079] = 6916, + [7080] = 7080, + [7081] = 6955, + [7082] = 6936, + [7083] = 6913, + [7084] = 7084, + [7085] = 6929, + [7086] = 7064, + [7087] = 7087, + [7088] = 6928, + [7089] = 6960, + [7090] = 6955, + [7091] = 7091, + [7092] = 6935, + [7093] = 7093, + [7094] = 6936, + [7095] = 6916, + [7096] = 6914, + [7097] = 6959, + [7098] = 6958, + [7099] = 6941, + [7100] = 7100, + [7101] = 7101, + [7102] = 6926, + [7103] = 6914, + [7104] = 6941, + [7105] = 7105, + [7106] = 6914, + [7107] = 6964, + [7108] = 6914, + [7109] = 7109, + [7110] = 7008, + [7111] = 6914, + [7112] = 7009, + [7113] = 6936, + [7114] = 6916, + [7115] = 6999, + [7116] = 7116, + [7117] = 5840, + [7118] = 6929, + [7119] = 6914, + [7120] = 6916, + [7121] = 6966, + [7122] = 6954, + [7123] = 7123, + [7124] = 7124, + [7125] = 6954, + [7126] = 6915, + [7127] = 6914, + [7128] = 7128, + [7129] = 6954, + [7130] = 6927, + [7131] = 6929, + [7132] = 6958, + [7133] = 6927, + [7134] = 6962, + [7135] = 6957, + [7136] = 6949, + [7137] = 7137, + [7138] = 6935, + [7139] = 7093, + [7140] = 6958, + [7141] = 6911, + [7142] = 6927, + [7143] = 6954, + [7144] = 6925, + [7145] = 7145, + [7146] = 6973, + [7147] = 6962, + [7148] = 6954, + [7149] = 6915, + [7150] = 6926, + [7151] = 6969, + [7152] = 6995, + [7153] = 6911, + [7154] = 6962, + [7155] = 6925, + [7156] = 7156, + [7157] = 6926, + [7158] = 7158, + [7159] = 6915, + [7160] = 6973, + [7161] = 6916, + [7162] = 6914, + [7163] = 6916, + [7164] = 7164, + [7165] = 6929, + [7166] = 6993, + [7167] = 7167, + [7168] = 6923, + [7169] = 6958, + [7170] = 7164, + [7171] = 6911, + [7172] = 6916, + [7173] = 6925, + [7174] = 6995, + [7175] = 7175, + [7176] = 7176, + [7177] = 6983, + [7178] = 6914, + [7179] = 6920, + [7180] = 7124, + [7181] = 7181, + [7182] = 7182, + [7183] = 6929, + [7184] = 6926, + [7185] = 6985, + [7186] = 6916, + [7187] = 7187, + [7188] = 7087, + [7189] = 7041, + [7190] = 7101, + [7191] = 6914, + [7192] = 6916, + [7193] = 6954, + [7194] = 6915, + [7195] = 6929, + [7196] = 7196, + [7197] = 7156, + [7198] = 7158, + [7199] = 7199, + [7200] = 6927, + [7201] = 6960, + [7202] = 7109, + [7203] = 6928, + [7204] = 7204, + [7205] = 6994, + [7206] = 6929, + [7207] = 7207, + [7208] = 7100, + [7209] = 6932, + [7210] = 6957, + [7211] = 6972, + [7212] = 6915, + [7213] = 6594, + [7214] = 6995, + [7215] = 7215, + [7216] = 7176, + [7217] = 6952, + [7218] = 7187, + [7219] = 7219, + [7220] = 6941, + [7221] = 6969, + [7222] = 6936, + [7223] = 7223, + [7224] = 6935, + [7225] = 7225, + [7226] = 6999, + [7227] = 7137, + [7228] = 7228, + [7229] = 6933, + [7230] = 6916, + [7231] = 6910, + [7232] = 6962, + [7233] = 6951, + [7234] = 6938, + [7235] = 6914, + [7236] = 6958, + [7237] = 7237, + [7238] = 6939, + [7239] = 6935, + [7240] = 7199, + [7241] = 7241, + [7242] = 6957, + [7243] = 7009, + [7244] = 6916, + [7245] = 6980, + [7246] = 6972, + [7247] = 6914, + [7248] = 6954, + [7249] = 6995, + [7250] = 6927, + [7251] = 6916, + [7252] = 6914, + [7253] = 6915, + [7254] = 7254, + [7255] = 7167, + [7256] = 6916, + [7257] = 6914, + [7258] = 6914, + [7259] = 6912, + [7260] = 6965, + [7261] = 7164, + [7262] = 7124, + [7263] = 6913, + [7264] = 6911, + [7265] = 7175, + [7266] = 7101, + [7267] = 6944, + [7268] = 6925, + [7269] = 7269, + [7270] = 7109, + [7271] = 1099, + [7272] = 6915, + [7273] = 7091, + [7274] = 7164, + [7275] = 7124, + [7276] = 6962, + [7277] = 6916, + [7278] = 7101, + [7279] = 7279, + [7280] = 7280, + [7281] = 7281, + [7282] = 7109, + [7283] = 7283, + [7284] = 6916, + [7285] = 6954, + [7286] = 7164, + [7287] = 7287, + [7288] = 7164, + [7289] = 7164, + [7290] = 7164, + [7291] = 7237, + [7292] = 7016, + [7293] = 7287, + [7294] = 6916, + [7295] = 7084, + [7296] = 7296, + [7297] = 6915, + [7298] = 7100, + [7299] = 7299, + [7300] = 6980, + [7301] = 7280, + [7302] = 6914, + [7303] = 6915, + [7304] = 6914, + [7305] = 7281, + [7306] = 7306, + [7307] = 6958, + [7308] = 6983, + [7309] = 7128, + [7310] = 6927, + [7311] = 7311, + [7312] = 6957, + [7313] = 6911, + [7314] = 6962, + [7315] = 6916, + [7316] = 6916, + [7317] = 7018, + [7318] = 6958, + [7319] = 6914, + [7320] = 7320, + [7321] = 6915, + [7322] = 6914, + [7323] = 6992, + [7324] = 7299, + [7325] = 6916, + [7326] = 7280, + [7327] = 7306, + [7328] = 6966, + [7329] = 7280, + [7330] = 7330, + [7331] = 7100, + [7332] = 6964, + [7333] = 6916, + [7334] = 6914, + [7335] = 6916, + [7336] = 6916, + [7337] = 7123, + [7338] = 6914, + [7339] = 6915, + [7340] = 6969, + [7341] = 6915, + [7342] = 6913, + [7343] = 5866, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -11825,116 +12026,116 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(155); - if (lookahead == '!') ADVANCE(390); - if (lookahead == '"') ADVANCE(77); - if (lookahead == '#') ADVANCE(379); + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(157); + if (lookahead == '!') ADVANCE(393); + if (lookahead == '"') ADVANCE(78); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(240); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(163); + if (lookahead == '.') ADVANCE(165); if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(303); - if (lookahead == '1') ADVANCE(304); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '0') ADVANCE(306); + if (lookahead == '1') ADVANCE(307); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(252); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); - if (lookahead == '?') ADVANCE(400); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(403); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(209); - if (lookahead == '\\') ADVANCE(286); + if (lookahead == '\\') ADVANCE(288); 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(379); + if (lookahead == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(219); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(318); + lookahead == 'j') ADVANCE(321); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(377); + lookahead == 'l') ADVANCE(380); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(377); - if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); + lookahead == 'u') ADVANCE(380); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(309); 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); + lookahead == 0xfeff) SKIP(157); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(380); + if (lookahead == '\n') ADVANCE(383); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(283); + if (lookahead == '\n') ADVANCE(285); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(288); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\\') ADVANCE(287); + if (lookahead == '\r') ADVANCE(290); + if (lookahead == '#') ADVANCE(291); + if (lookahead == '\\') ADVANCE(289); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(288); - if (lookahead != 0) ADVANCE(289); + lookahead == 0xfeff) ADVANCE(290); + if (lookahead != 0) ADVANCE(291); END_STATE(); case 4: if (lookahead == '\n') SKIP(4); if (lookahead == '\r') SKIP(4); - if (lookahead == '#') ADVANCE(378); - if (lookahead == '\\') ADVANCE(382); + if (lookahead == '#') ADVANCE(381); + if (lookahead == '\\') ADVANCE(385); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(383); - if (lookahead != 0) ADVANCE(384); + lookahead == 0xfeff) ADVANCE(386); + if (lookahead != 0) ADVANCE(387); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(249); if (lookahead == '=') ADVANCE(206); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'f') ADVANCE(363); - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'n') ADVANCE(360); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); @@ -11943,26 +12144,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(94); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(95); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'n') ADVANCE(360); if (lookahead == '{') ADVANCE(220); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || @@ -11970,36 +12171,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(218); if (lookahead == '~') ADVANCE(246); @@ -12008,32 +12209,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(249); if (lookahead == '=') ADVANCE(206); - if (lookahead == '?') ADVANCE(400); + if (lookahead == '?') ADVANCE(403); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'n') ADVANCE(360); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); @@ -12042,27 +12243,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); if (lookahead == '<') ADVANCE(249); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'n') ADVANCE(360); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); @@ -12071,38 +12272,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); @@ -12112,112 +12313,113 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - 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(89); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(95); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); + if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == '^') ADVANCE(243); - if (lookahead == 'a') ADVANCE(366); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(350); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); - if (lookahead == '|') ADVANCE(218); + if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(188); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(210); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(186); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); @@ -12227,151 +12429,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(188); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); 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 == 'a') ADVANCE(350); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); 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(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 15: if (lookahead == '\r') SKIP(15); - 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(382); + if (lookahead == '%') ADVANCE(236); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '+') ADVANCE(224); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(250); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(212); 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(72); + if (lookahead == '^') ADVANCE(243); + if (lookahead == 'a') ADVANCE(369); if (lookahead == '{') ADVANCE(220); - if (lookahead == '|') ADVANCE(217); + if (lookahead == '|') ADVANCE(218); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(15); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 16: if (lookahead == '\r') SKIP(16); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); 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 == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); 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(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 17: if (lookahead == '\r') SKIP(17); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); @@ -12381,36 +12584,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 18: if (lookahead == '\r') SKIP(18); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(188); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -12419,35 +12621,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 19: if (lookahead == '\r') SKIP(19); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -12456,92 +12658,92 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 20: if (lookahead == '\r') SKIP(20); - 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(155); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(249); 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(72); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(369); if (lookahead == '{') ADVANCE(220); - if (lookahead == '|') ADVANCE(98); + if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 21: 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(382); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(241); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(224); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '@') ADVANCE(97); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(366); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == '^') ADVANCE(98); + if (lookahead == 'a') ADVANCE(369); if (lookahead == '{') ADVANCE(220); - if (lookahead == '}') ADVANCE(221); + if (lookahead == '|') ADVANCE(99); 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 22: if (lookahead == '\r') SKIP(22); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); if (lookahead == '<') ADVANCE(249); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(369); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(360); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); @@ -12550,34 +12752,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(22); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 23: if (lookahead == '\r') SKIP(23); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); if (lookahead == '<') ADVANCE(254); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '>') ADVANCE(105); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); if (lookahead == '^') ADVANCE(242); - if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'a') ADVANCE(369); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); @@ -12587,60 +12789,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 24: if (lookahead == '\r') SKIP(24); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(249); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(315); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '>') ADVANCE(268); + if (lookahead == '@') ADVANCE(211); 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(72); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'i') ADVANCE(353); 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(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 25: if (lookahead == '\r') SKIP(25); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); if (lookahead == '<') ADVANCE(254); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '>') ADVANCE(105); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == '^') ADVANCE(242); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'n') ADVANCE(357); - if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -12649,63 +12856,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 26: if (lookahead == '\r') SKIP(26); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '0') ADVANCE(315); if (lookahead == '<') ADVANCE(254); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '>') ADVANCE(105); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); if (lookahead == '^') ADVANCE(242); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'f') ADVANCE(363); - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(338); 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(26); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 27: if (lookahead == '\r') SKIP(27); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(312); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '0') ADVANCE(315); + if (lookahead == '<') ADVANCE(255); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == '^') ADVANCE(242); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'a') ADVANCE(369); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -12714,50 +12922,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 28: if (lookahead == '\r') SKIP(28); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == '<') ADVANCE(249); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '@') ADVANCE(211); 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(72); + if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'b') ADVANCE(377); 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(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(313); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 29: if (lookahead == '\r') SKIP(29); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'i') ADVANCE(353); if (lookahead == '{') ADVANCE(220); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || @@ -12765,26 +12979,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 30: if (lookahead == '\r') SKIP(30); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(342); if (lookahead == '{') ADVANCE(220); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || @@ -12792,65 +13006,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 31: if (lookahead == '\r') SKIP(31); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 32: if (lookahead == '\r') SKIP(32); - if (lookahead == '!') ADVANCE(389); - if (lookahead == '"') ADVANCE(77); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(392); + if (lookahead == '"') ADVANCE(78); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(240); - if (lookahead == '(') ADVANCE(78); - if (lookahead == '*') ADVANCE(179); + if (lookahead == '(') ADVANCE(79); + if (lookahead == '*') ADVANCE(181); if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); 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(267); + if (lookahead == '[') ADVANCE(107); + if (lookahead == '\\') ADVANCE(72); if (lookahead == '^') ADVANCE(243); - if (lookahead == 'a') ADVANCE(349); - if (lookahead == 'n') ADVANCE(357); - if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'a') ADVANCE(352); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '|') ADVANCE(219); if (lookahead == '~') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\f') || @@ -12858,142 +13072,141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(32); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 33: if (lookahead == '\r') SKIP(33); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 34: if (lookahead == '\r') SKIP(34); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(144); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); 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); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 35: if (lookahead == '\r') SKIP(35); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(143); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(218); + if (lookahead == '0' || + lookahead == '1') ADVANCE(313); 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 == '\r') SKIP(36); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); - if (lookahead == ',') ADVANCE(170); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); + if (lookahead == '.') ADVANCE(81); if (lookahead == '/') ADVANCE(231); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(263); - if (lookahead == '?') ADVANCE(400); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(403); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); if (lookahead == '{') ADVANCE(220); if (lookahead == '}') ADVANCE(221); @@ -13002,190 +13215,190 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 37: if (lookahead == '\r') SKIP(37); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(122); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(317); + lookahead == 'j') ADVANCE(320); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 38: if (lookahead == '\r') SKIP(38); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(147); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'b') ADVANCE(302); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(38); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('c' <= lookahead && lookahead <= 'e')) ADVANCE(303); END_STATE(); case 39: if (lookahead == '\r') SKIP(39); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(144); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); 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); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 40: if (lookahead == '\r') SKIP(40); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(143); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (lookahead == '0' || - lookahead == '1') ADVANCE(310); + lookahead == '1') ADVANCE(313); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -13194,320 +13407,323 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 41: if (lookahead == '\r') SKIP(41); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(94); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(123); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(320); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(389); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(388); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 42: if (lookahead == '\r') SKIP(42); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(147); + if (lookahead == 'a') ADVANCE(297); + if (lookahead == 'b') ADVANCE(302); + if (lookahead == 'f') ADVANCE(298); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(317); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('c' <= lookahead && lookahead <= 'e')) ADVANCE(303); END_STATE(); case 43: if (lookahead == '\r') SKIP(43); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(165); + if (lookahead == '.') ADVANCE(164); 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(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); if (lookahead == '^') ADVANCE(242); - if (lookahead == 'i') ADVANCE(335); - if (lookahead == '{') ADVANCE(220); + if (lookahead == '_') ADVANCE(144); + if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(389); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(388); 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); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 44: if (lookahead == '\r') SKIP(44); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(143); + if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); + if (lookahead == '0' || + lookahead == '1') ADVANCE(313); 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 == '\r') SKIP(45); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(94); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 46: if (lookahead == '\r') SKIP(46); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(210); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 47: if (lookahead == '\r') SKIP(47); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(167); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(87); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(105); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(210); + if (lookahead == '\\') ADVANCE(72); 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 == 'i') ADVANCE(338); + if (lookahead == '{') ADVANCE(220); 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 48: if (lookahead == '\r') SKIP(48); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(147); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'b') ADVANCE(302); + if (lookahead == 'e') ADVANCE(295); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -13516,34 +13732,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == 'c' || - lookahead == 'd') ADVANCE(300); + lookahead == 'd') ADVANCE(303); END_STATE(); case 49: if (lookahead == '\r') SKIP(49); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(266); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + 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 == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || @@ -13551,34 +13770,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(49); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 50: if (lookahead == '\r') SKIP(50); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || @@ -13586,100 +13805,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(50); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 51: if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(188); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); 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 == 'a') ADVANCE(123); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); 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 (lookahead == '\r') SKIP(52); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(186); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(210); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '|') ADVANCE(217); - if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(52); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 53: if (lookahead == '\r') SKIP(53); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(315); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(85); + if (lookahead == '0') ADVANCE(318); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(86); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(103); + if (lookahead == '>') ADVANCE(104); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); if (lookahead == '^') ADVANCE(243); if (lookahead == '|') ADVANCE(218); @@ -13688,110 +13908,113 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(319); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 54: 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 (lookahead == '#') ADVANCE(382); + if (lookahead == ',') ADVANCE(172); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == 'n') ADVANCE(357); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 55: 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(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(86); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(255); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(147); + if (lookahead == 'a') ADVANCE(300); + if (lookahead == 'b') ADVANCE(302); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(386); + lookahead == 'l') ADVANCE(389); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(385); + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(56); + lookahead == 0xfeff) SKIP(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('c' <= lookahead && lookahead <= 'f')) ADVANCE(303); + END_STATE(); + case 56: + if (lookahead == '\r') SKIP(56); + if (lookahead == '#') ADVANCE(382); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == 'f') ADVANCE(366); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(56); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 57: if (lookahead == '\r') SKIP(57); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(86); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(255); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(104); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(122); + if (lookahead == 'b') ADVANCE(138); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'n') ADVANCE(129); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || @@ -13802,337 +14025,373 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 58: 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(382); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '+') ADVANCE(222); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '<') ADVANCE(87); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(72); 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(242); + if (lookahead == '_') ADVANCE(147); + if (lookahead == 'a') ADVANCE(301); + if (lookahead == 'b') ADVANCE(302); + if (lookahead == 'f') ADVANCE(298); + if (lookahead == 'i') ADVANCE(111); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(389); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(388); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('c' <= lookahead && lookahead <= 'e')) ADVANCE(303); END_STATE(); case 59: 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(90); + if (lookahead == '#') ADVANCE(382); + if (lookahead == ')') ADVANCE(171); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(259); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); - if (lookahead == '^') ADVANCE(242); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'w') ADVANCE(118); if (lookahead == '|') ADVANCE(217); + if (lookahead == '}') ADVANCE(221); 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 (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(382); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '+') ADVANCE(222); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(233); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(87); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(269); + if (lookahead == '?') ADVANCE(403); + if (lookahead == '@') ADVANCE(211); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(72); 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 (lookahead == '^') ADVANCE(242); + if (lookahead == '|') ADVANCE(217); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(60); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 61: 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 (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); + if (lookahead == ')') ADVANCE(171); + if (lookahead == ',') ADVANCE(172); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(259); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(266); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(132); + if (lookahead == '}') ADVANCE(221); 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 (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 (lookahead == '#') ADVANCE(382); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == 'a') ADVANCE(351); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); + if (lookahead == '|') ADVANCE(217); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 63: 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 (lookahead == '#') ADVANCE(382); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '\\') ADVANCE(72); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(63); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 64: if (lookahead == '\r') SKIP(64); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); 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(170); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(187); 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(72); + if (lookahead == 'a') ADVANCE(351); + if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'o') ADVANCE(364); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 65: if (lookahead == '\r') SKIP(65); - 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(382); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '-') ADVANCE(94); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(88); 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 (lookahead == '>') ADVANCE(106); + if (lookahead == '@') ADVANCE(97); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == '^') ADVANCE(98); + if (lookahead == 'i') ADVANCE(124); + if (lookahead == '|') ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(65); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); END_STATE(); case 66: if (lookahead == '\r') SKIP(66); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); 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(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '=') ADVANCE(206); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(66); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 67: if (lookahead == '\r') SKIP(67); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); 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(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == ':') ADVANCE(187); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(365); - if (lookahead == '|') ADVANCE(217); + if (lookahead == 'a') ADVANCE(350); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == '}') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(67); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 68: if (lookahead == '\r') SKIP(68); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); - if (lookahead == ':') ADVANCE(185); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == '.') ADVANCE(164); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '=') ADVANCE(206); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == 'e') ADVANCE(373); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'w') ADVANCE(339); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(368); + if (lookahead == '|') ADVANCE(217); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(68); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 69: if (lookahead == '\r') SKIP(69); - if (lookahead == '#') ADVANCE(379); + if (lookahead == '#') ADVANCE(382); 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 (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '[') ADVANCE(208); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == 'e') ADVANCE(376); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'w') ADVANCE(342); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 70: if (lookahead == '\r') SKIP(70); - if (lookahead == '#') ADVANCE(379); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == 'e') ADVANCE(372); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '&') ADVANCE(239); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(179); + if (lookahead == ',') ADVANCE(172); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(72); 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); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 71: + if (lookahead == '\r') SKIP(71); + if (lookahead == '#') ADVANCE(382); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == 'e') ADVANCE(375); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(71); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); + END_STATE(); + case 72: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(380); + lookahead == '\n') ADVANCE(383); END_STATE(); - case 72: - if (lookahead == '\r') SKIP(72); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + case 73: + if (lookahead == '\r') SKIP(73); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(241); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(224); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(253); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); + if (lookahead == '>') ADVANCE(267); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(218); if (lookahead == '~') ADVANCE(246); @@ -14140,38 +14399,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + lookahead == 0xfeff) SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 73: - if (lookahead == '\r') SKIP(73); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + case 74: + if (lookahead == '\r') SKIP(74); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -14179,36 +14436,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + lookahead == 0xfeff) SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 74: - if (lookahead == '\r') SKIP(74); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + case 75: + if (lookahead == '\r') SKIP(75); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'o') ADVANCE(364); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -14216,37 +14473,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + lookahead == 0xfeff) SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 75: - if (lookahead == '\r') SKIP(75); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + case 76: + if (lookahead == '\r') SKIP(76); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(164); + if (lookahead == '.') ADVANCE(166); 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 == '0') ADVANCE(315); + if (lookahead == '<') ADVANCE(254); + if (lookahead == '>') ADVANCE(105); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(369); + if (lookahead == 'i') ADVANCE(353); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '~') ADVANCE(246); @@ -14254,293 +14505,286 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + lookahead == 0xfeff) SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 76: - if (lookahead == '\r') SKIP(76); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(379); + case 77: + if (lookahead == '\r') SKIP(77); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(179); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(162); + if (lookahead == '.') ADVANCE(164); if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); - if (lookahead == '<') ADVANCE(255); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + if (lookahead == '>') ADVANCE(268); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(351); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); 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: - if (lookahead == '"') ADVANCE(399); + lookahead == 0xfeff) SKIP(77); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 78: - if (lookahead == ')') ADVANCE(397); + if (lookahead == '"') ADVANCE(402); END_STATE(); case 79: - if (lookahead == '*') ADVANCE(99); - if (lookahead == '=') ADVANCE(271); + if (lookahead == ')') ADVANCE(400); END_STATE(); case 80: - if (lookahead == '.') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (lookahead == '*') ADVANCE(100); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 81: - if (lookahead == '.') ADVANCE(282); + if (lookahead == '.') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(323); END_STATE(); case 82: - if (lookahead == '.') ADVANCE(322); - if (lookahead == '_') ADVANCE(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (lookahead == '.') ADVANCE(284); END_STATE(); case 83: - if (lookahead == '.') ADVANCE(322); + if (lookahead == '.') ADVANCE(325); + if (lookahead == '_') ADVANCE(84); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + lookahead == 'e') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 84: - if (lookahead == '/') ADVANCE(100); - if (lookahead == '=') ADVANCE(272); + if (lookahead == '.') ADVANCE(325); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 85: - if (lookahead == '<') ADVANCE(245); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 86: - if (lookahead == '<') ADVANCE(244); + if (lookahead == '<') ADVANCE(245); END_STATE(); case 87: - if (lookahead == '<') ADVANCE(101); + if (lookahead == '<') ADVANCE(244); END_STATE(); case 88: - if (lookahead == '=') ADVANCE(261); + if (lookahead == '<') ADVANCE(102); END_STATE(); case 89: - if (lookahead == '=') ADVANCE(261); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); + if (lookahead == '=') ADVANCE(263); END_STATE(); case 90: - if (lookahead == '=') ADVANCE(275); + if (lookahead == '=') ADVANCE(263); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(292); END_STATE(); case 91: - if (lookahead == '=') ADVANCE(279); + if (lookahead == '=') ADVANCE(277); END_STATE(); case 92: - if (lookahead == '=') ADVANCE(269); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 93: - if (lookahead == '=') ADVANCE(270); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 94: - if (lookahead == '=') ADVANCE(182); + if (lookahead == '=') ADVANCE(272); END_STATE(); case 95: - if (lookahead == '=') ADVANCE(260); + if (lookahead == '=') ADVANCE(184); END_STATE(); case 96: - if (lookahead == '=') ADVANCE(273); + if (lookahead == '=') ADVANCE(262); END_STATE(); case 97: - if (lookahead == '=') ADVANCE(280); + if (lookahead == '=') ADVANCE(275); END_STATE(); case 98: - if (lookahead == '=') ADVANCE(281); + if (lookahead == '=') ADVANCE(282); END_STATE(); case 99: - if (lookahead == '=') ADVANCE(276); + if (lookahead == '=') ADVANCE(283); END_STATE(); case 100: - if (lookahead == '=') ADVANCE(274); + if (lookahead == '=') ADVANCE(278); END_STATE(); case 101: - if (lookahead == '=') ADVANCE(278); + if (lookahead == '=') ADVANCE(276); END_STATE(); case 102: - if (lookahead == '=') ADVANCE(277); + if (lookahead == '=') ADVANCE(280); END_STATE(); case 103: - if (lookahead == '>') ADVANCE(181); + if (lookahead == '=') ADVANCE(279); END_STATE(); case 104: - if (lookahead == '>') ADVANCE(180); + if (lookahead == '>') ADVANCE(183); END_STATE(); case 105: - if (lookahead == '>') ADVANCE(102); + if (lookahead == '>') ADVANCE(182); END_STATE(); case 106: - if (lookahead == ']') ADVANCE(398); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 107: - if (lookahead == 'c') ADVANCE(189); + if (lookahead == ']') ADVANCE(401); END_STATE(); case 108: - if (lookahead == 'd') ADVANCE(227); + if (lookahead == 'c') ADVANCE(191); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'd') ADVANCE(227); END_STATE(); case 110: - if (lookahead == 'f') ADVANCE(183); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(183); - if (lookahead == 'n') ADVANCE(193); + if (lookahead == 'f') ADVANCE(185); END_STATE(); case 112: - if (lookahead == 'f') ADVANCE(183); - if (lookahead == 'n') ADVANCE(193); - if (lookahead == 's') ADVANCE(247); + if (lookahead == 'f') ADVANCE(185); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 113: - if (lookahead == 'g') ADVANCE(116); + if (lookahead == 'f') ADVANCE(185); + if (lookahead == 'n') ADVANCE(204); + if (lookahead == 's') ADVANCE(247); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(116); - if (lookahead == 't') ADVANCE(225); + if (lookahead == 'g') ADVANCE(117); END_STATE(); case 115: - if (lookahead == 'h') ADVANCE(200); + if (lookahead == 'g') ADVANCE(117); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(119); + if (lookahead == 'h') ADVANCE(198); END_STATE(); case 117: - if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 118: - if (lookahead == 'l') ADVANCE(134); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 119: - if (lookahead == 'l') ADVANCE(387); + if (lookahead == 'l') ADVANCE(135); END_STATE(); case 120: - if (lookahead == 'm') ADVANCE(166); + if (lookahead == 'l') ADVANCE(390); END_STATE(); case 121: - if (lookahead == 'n') ADVANCE(108); - if (lookahead == 's') ADVANCE(171); + if (lookahead == 'm') ADVANCE(168); END_STATE(); case 122: - if (lookahead == 'n') ADVANCE(108); + if (lookahead == 'n') ADVANCE(109); if (lookahead == 's') ADVANCE(173); END_STATE(); case 123: - if (lookahead == 'n') ADVANCE(193); + if (lookahead == 'n') ADVANCE(109); + if (lookahead == 's') ADVANCE(175); END_STATE(); case 124: - if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 125: - if (lookahead == 'o') ADVANCE(135); + if (lookahead == 'n') ADVANCE(108); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'o') ADVANCE(136); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(114); + if (lookahead == 'o') ADVANCE(121); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'o') ADVANCE(114); END_STATE(); case 130: - if (lookahead == 'o') ADVANCE(132); - if (lookahead == 'r') ADVANCE(126); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(229); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(191); + if (lookahead == 'r') ADVANCE(229); END_STATE(); case 133: - if (lookahead == 'r') ADVANCE(126); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 134: - if (lookahead == 's') ADVANCE(109); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(225); + if (lookahead == 's') ADVANCE(110); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(115); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 137: - if (lookahead == 'y') ADVANCE(195); + if (lookahead == 't') ADVANCE(116); END_STATE(); case 138: - if (lookahead == '{') ADVANCE(154); + if (lookahead == 'y') ADVANCE(404); END_STATE(); case 139: - if (lookahead == '}') ADVANCE(283); - if (lookahead != 0) ADVANCE(139); + if (lookahead == 'y') ADVANCE(125); END_STATE(); case 140: - if (lookahead == '+' || - lookahead == '-') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead == '{') ADVANCE(156); END_STATE(); case 141: - if (lookahead == '0' || - lookahead == '1') ADVANCE(310); + if (lookahead == '}') ADVANCE(285); + if (lookahead != 0) ADVANCE(141); END_STATE(); case 142: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); + if (lookahead == '+' || + lookahead == '-') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(324); END_STATE(); case 143: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead == '0' || + lookahead == '1') ADVANCE(313); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 145: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(324); END_STATE(); case 146: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); END_STATE(); case 147: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 148: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); END_STATE(); case 149: if (('0' <= lookahead && lookahead <= '9') || @@ -14563,97 +14807,107 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); END_STATE(); case 153: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); END_STATE(); case 154: - if (lookahead != 0 && - lookahead != '}') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); END_STATE(); case 155: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(155); - if (lookahead == '!') ADVANCE(390); - if (lookahead == '"') ADVANCE(77); - if (lookahead == '#') ADVANCE(379); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(292); + END_STATE(); + case 156: + if (lookahead != 0 && + lookahead != '}') ADVANCE(141); + END_STATE(); + case 157: + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(157); + if (lookahead == '!') ADVANCE(393); + if (lookahead == '"') ADVANCE(78); + if (lookahead == '#') ADVANCE(382); if (lookahead == '%') ADVANCE(236); if (lookahead == '&') ADVANCE(240); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(178); if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(163); + if (lookahead == '.') ADVANCE(165); if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(303); - if (lookahead == '1') ADVANCE(304); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '0') ADVANCE(306); + if (lookahead == '1') ADVANCE(307); + if (lookahead == ':') ADVANCE(188); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(252); if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(265); - if (lookahead == '?') ADVANCE(400); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(403); if (lookahead == '@') ADVANCE(212); if (lookahead == '[') ADVANCE(209); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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(379); + if (lookahead == 'a') ADVANCE(350); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'w') ADVANCE(342); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(219); if (lookahead == '}') ADVANCE(221); if (lookahead == '~') ADVANCE(246); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(318); + lookahead == 'j') ADVANCE(321); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(377); + lookahead == 'l') ADVANCE(380); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(377); - if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); + lookahead == 'u') ADVANCE(380); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(309); 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); + lookahead == 0xfeff) SKIP(157); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 156: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(156); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '#') ADVANCE(379); + case 158: + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(158); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == ')') ADVANCE(171); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(170); + if (lookahead == ',') ADVANCE(172); if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(161); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); + if (lookahead == ':') ADVANCE(187); + if (lookahead == ';') ADVANCE(163); if (lookahead == '<') ADVANCE(249); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(263); - if (lookahead == '?') ADVANCE(400); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(403); if (lookahead == '@') ADVANCE(211); if (lookahead == '[') ADVANCE(208); - if (lookahead == '\\') ADVANCE(71); + if (lookahead == '\\') ADVANCE(72); 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 == 'a') ADVANCE(369); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'w') ADVANCE(342); if (lookahead == '{') ADVANCE(220); if (lookahead == '|') ADVANCE(217); if (lookahead == '}') ADVANCE(221); @@ -14662,283 +14916,276 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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); + lookahead == 0xfeff) SKIP(158); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 157: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(157); - if (lookahead == '#') ADVANCE(379); + case 159: + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(159); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'e') ADVANCE(345); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'w') ADVANCE(342); 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); + lookahead == 0xfeff) SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 158: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(158); - if (lookahead == '#') ADVANCE(379); + case 160: + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(160); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'w') ADVANCE(342); 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); + lookahead == 0xfeff) SKIP(160); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); - case 159: - if (eof) ADVANCE(160); - if (lookahead == '\r') SKIP(159); - if (lookahead == '#') ADVANCE(379); + case 161: + if (eof) ADVANCE(162); + if (lookahead == '\r') SKIP(161); + if (lookahead == '#') ADVANCE(382); if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(168); - if (lookahead == '*') ADVANCE(175); + if (lookahead == '(') ADVANCE(170); + if (lookahead == '*') ADVANCE(177); if (lookahead == '+') ADVANCE(222); if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '0') ADVANCE(312); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '0') ADVANCE(315); 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(72); + if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'e') ADVANCE(346); + if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'i') ADVANCE(338); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'w') ADVANCE(342); 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(ts_builtin_sym_end); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_SEMI); + lookahead == 0xfeff) SKIP(161); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(380); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(81); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (lookahead == '.') ADVANCE(82); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_from); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(323); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_from); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(323); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_from); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(351); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 173: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(124); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (lookahead == 'y') ADVANCE(354); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(125); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '=') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(204); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '=') ADVANCE(271); + if (lookahead == '*') ADVANCE(203); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(271); + if (lookahead == '*') ADVANCE(202); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(100); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(277); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(273); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(279); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(184); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_async); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_async); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_by); + ACCEPT_TOKEN(anon_sym_except); + if (lookahead == '*') ADVANCE(197); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_by); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_except); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(199); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_with); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_with); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(399); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(396); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(278); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(276); + ACCEPT_TOKEN(anon_sym_in); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 207: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(260); + if (lookahead == '=') ADVANCE(262); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(398); + if (lookahead == ']') ADVANCE(401); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_RBRACK); @@ -14948,36 +15195,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(273); + if (lookahead == '=') ADVANCE(275); END_STATE(); case 213: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 214: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(395); - if (lookahead == '=') ADVANCE(270); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '-') ADVANCE(398); + if (lookahead == '=') ADVANCE(272); + if (lookahead == '>') ADVANCE(201); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(270); + if (lookahead == '=') ADVANCE(272); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(202); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 218: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(281); + if (lookahead == '=') ADVANCE(283); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(281); - if (lookahead == '|') ADVANCE(393); + if (lookahead == '=') ADVANCE(283); + if (lookahead == '|') ADVANCE(396); END_STATE(); case 220: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -14990,33 +15237,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(394); - if (lookahead == '=') ADVANCE(269); + if (lookahead == '+') ADVANCE(397); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 224: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(269); + if (lookahead == '=') ADVANCE(271); END_STATE(); case 225: ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 226: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 227: ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 228: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 229: ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 230: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 231: ACCEPT_TOKEN(anon_sym_SLASH); @@ -15024,7 +15271,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 232: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '/') ADVANCE(238); - if (lookahead == '=') ADVANCE(272); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_SLASH); @@ -15032,47 +15279,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 234: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(272); + if (lookahead == '=') ADVANCE(274); END_STATE(); case 235: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 236: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(275); + if (lookahead == '=') ADVANCE(277); END_STATE(); case 237: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 238: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(274); + if (lookahead == '=') ADVANCE(276); END_STATE(); case 239: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 240: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(392); - if (lookahead == '=') ADVANCE(279); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 241: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(279); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 243: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(280); + if (lookahead == '=') ADVANCE(282); END_STATE(); case 244: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 245: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(278); + if (lookahead == '=') ADVANCE(280); END_STATE(); case 246: ACCEPT_TOKEN(anon_sym_TILDE); @@ -15082,7 +15329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 248: ACCEPT_TOKEN(anon_sym_is); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_LT); @@ -15094,19 +15341,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 251: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(245); - if (lookahead == '=') ADVANCE(259); + if (lookahead == '=') ADVANCE(261); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(245); - if (lookahead == '=') ADVANCE(259); - if (lookahead == '>') ADVANCE(268); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(270); END_STATE(); case 253: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(245); - if (lookahead == '=') ADVANCE(258); - if (lookahead == '>') ADVANCE(268); + if (lookahead == '=') ADVANCE(260); + if (lookahead == '>') ADVANCE(270); END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_LT); @@ -15115,755 +15362,778 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 255: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(244); - if (lookahead == '=') ADVANCE(258); - if (lookahead == '>') ADVANCE(268); + if (lookahead == '=') ADVANCE(260); END_STATE(); case 256: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(101); + if (lookahead == '<') ADVANCE(244); + if (lookahead == '=') ADVANCE(260); + if (lookahead == '>') ADVANCE(270); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(258); - if (lookahead == '>') ADVANCE(268); + if (lookahead == '<') ADVANCE(102); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(260); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(391); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(260); + if (lookahead == '>') ADVANCE(270); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(394); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(262); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 265: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(181); END_STATE(); case 266: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(180); + if (lookahead == '=') ADVANCE(264); END_STATE(); case 267: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(180); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(183); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '>') ADVANCE(182); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 283: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 284: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 285: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); END_STATE(); case 286: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(286); + END_STATE(); + case 288: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 380, - '\n', 283, + 0, 383, + '\n', 285, '\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, + 'N', 140, + 'U', 154, + 'u', 150, + 'x', 148, + '"', 285, + '\'', 285, + '\\', 285, + 'a', 285, + 'b', 285, + 'f', 285, + 'n', 285, + 'r', 285, + 't', 285, + 'v', 285, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 287: + case 289: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(289); - if (lookahead == '\r') ADVANCE(289); + if ((!eof && lookahead == 00)) ADVANCE(291); + if (lookahead == '\r') ADVANCE(291); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(289); + lookahead != '}') ADVANCE(291); END_STATE(); - case 288: + case 290: 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, + '\r', 290, + '#', 291, + '\\', 289, + '\t', 290, + 0x0b, 290, + '\f', 290, + ' ', 290, + 0x200b, 290, + 0x2060, 290, + 0xfeff, 290, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(289); + lookahead != '}') ADVANCE(291); END_STATE(); - case 289: + case 291: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(289); - END_STATE(); - case 290: - ACCEPT_TOKEN(sym_type_conversion); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_0x); + lookahead != '}') ADVANCE(291); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_0X); + ACCEPT_TOKEN(sym_type_conversion); END_STATE(); 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); + ACCEPT_TOKEN(anon_sym_0x); END_STATE(); 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); + ACCEPT_TOKEN(anon_sym_0X); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'n') ADVANCE(108); - if (lookahead == 's') ADVANCE(173); + if (lookahead == 'l') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'n') ADVANCE(109); + if (lookahead == 's') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'r') ADVANCE(126); + if (lookahead == 'n') ADVANCE(109); + if (lookahead == 's') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 's') ADVANCE(171); + if (lookahead == 'o') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'y') ADVANCE(195); + if (lookahead == 'r') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 's') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(300); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_0o); + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 's') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_0O); + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == 'y') ADVANCE(404); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); 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); + ACCEPT_TOKEN(aux_sym_integer_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 304: - ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == '0' || - lookahead == '1') ADVANCE(304); - if (('2' <= lookahead && lookahead <= '7')) ADVANCE(306); + ACCEPT_TOKEN(anon_sym_0o); END_STATE(); 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); + ACCEPT_TOKEN(anon_sym_0O); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym_integer_token2); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(306); + if (lookahead == 'B') ADVANCE(312); + if (lookahead == 'O') ADVANCE(305); + if (lookahead == 'X') ADVANCE(294); + if (lookahead == 'x') ADVANCE(293); + if (lookahead == '0' || + lookahead == '1') ADVANCE(307); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); 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); + if (lookahead == '0' || + lookahead == '1') ADVANCE(307); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_0b); + ACCEPT_TOKEN(aux_sym_integer_token2); + if (lookahead == '0' || + lookahead == '1') ADVANCE(308); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(310); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_0B); + ACCEPT_TOKEN(aux_sym_integer_token2); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); END_STATE(); case 310: - ACCEPT_TOKEN(aux_sym_integer_token3); - if (lookahead == '0' || - lookahead == '1') ADVANCE(310); + ACCEPT_TOKEN(aux_sym_integer_token2); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(310); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 311: - ACCEPT_TOKEN(aux_sym_integer_token4); + ACCEPT_TOKEN(anon_sym_0b); 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); + ACCEPT_TOKEN(anon_sym_0B); 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); + ACCEPT_TOKEN(aux_sym_integer_token3); + if (lookahead == '0' || + lookahead == '1') 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); + ADVANCE_MAP( + '.', 325, + 'B', 312, + 'O', 305, + 'X', 294, + '_', 317, + 'b', 311, + 'o', 304, + 'x', 293, + 'E', 142, + 'e', 142, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_integer_token4); - if (lookahead == '_') ADVANCE(311); + if (lookahead == '.') ADVANCE(325); + if (lookahead == '_') ADVANCE(317); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 317: - ACCEPT_TOKEN(aux_sym_integer_token5); + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == '.') ADVANCE(325); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 318: - ACCEPT_TOKEN(aux_sym_integer_token5); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == 'B') ADVANCE(312); + if (lookahead == 'O') ADVANCE(305); + if (lookahead == 'X') ADVANCE(294); + if (lookahead == '_') ADVANCE(314); + if (lookahead == 'b') ADVANCE(311); + if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'x') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); END_STATE(); case 319: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(aux_sym_integer_token4); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); 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); + ACCEPT_TOKEN(aux_sym_integer_token5); 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); + ACCEPT_TOKEN(aux_sym_integer_token5); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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 == '_') ADVANCE(325); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(142); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + lookahead == 'j') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(323); END_STATE(); case 324: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(199); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(326); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(324); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(142); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(323); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(324); 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); + if (lookahead == '*') ADVANCE(197); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'c') ADVANCE(192); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'c') ADVANCE(334); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'c') ADVANCE(335); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'c') ADVANCE(336); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'd') ADVANCE(228); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'e') ADVANCE(190); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'e') ADVANCE(361); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'e') ADVANCE(362); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'e') ADVANCE(363); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'f') ADVANCE(186); + if (lookahead == 'n') ADVANCE(205); + if (lookahead == 's') ADVANCE(248); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'f') ADVANCE(186); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'g') ADVANCE(343); + if (lookahead == 't') ADVANCE(226); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'g') ADVANCE(343); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'h') ADVANCE(199); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'i') ADVANCE(371); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'i') ADVANCE(348); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'x') ADVANCE(329); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'x') ADVANCE(330); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'x') ADVANCE(331); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'l') ADVANCE(367); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'l') ADVANCE(391); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'm') ADVANCE(169); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'n') ADVANCE(332); + if (lookahead == 's') ADVANCE(174); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'n') ADVANCE(332); + if (lookahead == 's') ADVANCE(176); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'n') ADVANCE(332); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'n') ADVANCE(205); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'n') ADVANCE(328); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(339); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(349); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(340); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'r') ADVANCE(356); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(365); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'o') ADVANCE(370); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'p') ADVANCE(372); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'p') ADVANCE(373); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'p') ADVANCE(374); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'r') ADVANCE(230); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'r') ADVANCE(194); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'r') ADVANCE(356); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 's') ADVANCE(333); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 's') ADVANCE(176); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 's') ADVANCE(378); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 't') ADVANCE(226); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 't') ADVANCE(341); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 't') ADVANCE(195); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 't') ADVANCE(196); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 't') ADVANCE(327); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'x') ADVANCE(329); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); 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); + if (lookahead == 'x') ADVANCE(330); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 377: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (lookahead == 'y') ADVANCE(405); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); case 378: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(354); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); + END_STATE(); + case 379: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0' || + lookahead == '1') ADVANCE(308); + if (('2' <= lookahead && lookahead <= '7')) ADVANCE(310); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); + END_STATE(); + case 381: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(379); + if (lookahead == '\r') ADVANCE(382); if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + lookahead != '\n') ADVANCE(381); END_STATE(); - case 379: + case 382: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(379); + lookahead != '\n') ADVANCE(382); END_STATE(); - case 380: + case 383: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); - case 381: + case 384: ACCEPT_TOKEN(sym_line_continuation); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(384); + lookahead != '\r') ADVANCE(387); END_STATE(); - case 382: + case 385: ACCEPT_TOKEN(aux_sym_run_directive_token1); - if ((!eof && lookahead == 00)) ADVANCE(381); - if (lookahead == '\n') ADVANCE(380); + if ((!eof && lookahead == 00)) ADVANCE(384); + if (lookahead == '\n') ADVANCE(383); if (lookahead == '\r') ADVANCE(1); - if (lookahead != 0) ADVANCE(384); + if (lookahead != 0) ADVANCE(387); END_STATE(); - case 383: + case 386: ACCEPT_TOKEN(aux_sym_run_directive_token1); ADVANCE_MAP( - '#', 378, - '\\', 382, - '\t', 383, - 0x0b, 383, - '\f', 383, - ' ', 383, - 0x200b, 383, - 0x2060, 383, - 0xfeff, 383, + '#', 381, + '\\', 385, + '\t', 386, + 0x0b, 386, + '\f', 386, + ' ', 386, + 0x200b, 386, + 0x2060, 386, + 0xfeff, 386, ); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(384); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(387); END_STATE(); - case 384: + case 387: ACCEPT_TOKEN(aux_sym_run_directive_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(384); + lookahead != '\r') ADVANCE(387); END_STATE(); - case 385: + case 388: ACCEPT_TOKEN(sym_c_integer_signedness); END_STATE(); - case 386: + case 389: ACCEPT_TOKEN(aux_sym_c_integer_type_token1); END_STATE(); - case 387: + case 390: ACCEPT_TOKEN(anon_sym_nogil); END_STATE(); - case 388: + case 391: ACCEPT_TOKEN(anon_sym_nogil); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(377); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); END_STATE(); - case 389: + case 392: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(261); + if (lookahead == '=') ADVANCE(263); END_STATE(); - case 390: + case 393: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(261); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); + if (lookahead == '=') ADVANCE(263); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(292); END_STATE(); - case 391: + case 394: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 392: + case 395: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 393: + case 396: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 394: + case 397: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 395: + case 398: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 396: + case 399: ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 397: + case 400: ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 398: + case 401: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 399: + case 402: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 400: + case 403: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_by); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_by); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(380); + END_STATE(); default: return false; } @@ -17028,279 +17298,279 @@ 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 = 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}, + [1] = {.lex_state = 158, .external_lex_state = 2}, + [2] = {.lex_state = 158, .external_lex_state = 3}, + [3] = {.lex_state = 158, .external_lex_state = 3}, + [4] = {.lex_state = 158, .external_lex_state = 3}, + [5] = {.lex_state = 158, .external_lex_state = 3}, + [6] = {.lex_state = 158, .external_lex_state = 3}, + [7] = {.lex_state = 158, .external_lex_state = 3}, + [8] = {.lex_state = 158, .external_lex_state = 3}, + [9] = {.lex_state = 158, .external_lex_state = 3}, + [10] = {.lex_state = 158, .external_lex_state = 3}, + [11] = {.lex_state = 158, .external_lex_state = 3}, + [12] = {.lex_state = 158, .external_lex_state = 3}, + [13] = {.lex_state = 158, .external_lex_state = 3}, + [14] = {.lex_state = 158, .external_lex_state = 3}, + [15] = {.lex_state = 158, .external_lex_state = 3}, + [16] = {.lex_state = 158, .external_lex_state = 3}, + [17] = {.lex_state = 158, .external_lex_state = 3}, + [18] = {.lex_state = 158, .external_lex_state = 3}, + [19] = {.lex_state = 158, .external_lex_state = 3}, + [20] = {.lex_state = 158, .external_lex_state = 3}, + [21] = {.lex_state = 158, .external_lex_state = 3}, + [22] = {.lex_state = 158, .external_lex_state = 3}, + [23] = {.lex_state = 158, .external_lex_state = 3}, + [24] = {.lex_state = 158, .external_lex_state = 3}, + [25] = {.lex_state = 158, .external_lex_state = 3}, + [26] = {.lex_state = 158, .external_lex_state = 3}, + [27] = {.lex_state = 158, .external_lex_state = 3}, + [28] = {.lex_state = 158, .external_lex_state = 3}, + [29] = {.lex_state = 158, .external_lex_state = 3}, + [30] = {.lex_state = 158, .external_lex_state = 3}, + [31] = {.lex_state = 158, .external_lex_state = 3}, + [32] = {.lex_state = 158, .external_lex_state = 3}, + [33] = {.lex_state = 158, .external_lex_state = 3}, + [34] = {.lex_state = 158, .external_lex_state = 3}, + [35] = {.lex_state = 158, .external_lex_state = 3}, + [36] = {.lex_state = 158, .external_lex_state = 3}, + [37] = {.lex_state = 158, .external_lex_state = 3}, + [38] = {.lex_state = 158, .external_lex_state = 3}, + [39] = {.lex_state = 158, .external_lex_state = 3}, + [40] = {.lex_state = 158, .external_lex_state = 3}, + [41] = {.lex_state = 158, .external_lex_state = 3}, + [42] = {.lex_state = 158, .external_lex_state = 3}, + [43] = {.lex_state = 158, .external_lex_state = 3}, + [44] = {.lex_state = 158, .external_lex_state = 3}, + [45] = {.lex_state = 158, .external_lex_state = 3}, + [46] = {.lex_state = 158, .external_lex_state = 3}, + [47] = {.lex_state = 158, .external_lex_state = 3}, + [48] = {.lex_state = 158, .external_lex_state = 3}, + [49] = {.lex_state = 158, .external_lex_state = 3}, + [50] = {.lex_state = 158, .external_lex_state = 3}, + [51] = {.lex_state = 158, .external_lex_state = 3}, + [52] = {.lex_state = 158, .external_lex_state = 3}, + [53] = {.lex_state = 158, .external_lex_state = 3}, + [54] = {.lex_state = 158, .external_lex_state = 3}, + [55] = {.lex_state = 158, .external_lex_state = 3}, + [56] = {.lex_state = 158, .external_lex_state = 3}, + [57] = {.lex_state = 158, .external_lex_state = 3}, + [58] = {.lex_state = 158, .external_lex_state = 3}, + [59] = {.lex_state = 158, .external_lex_state = 3}, + [60] = {.lex_state = 158, .external_lex_state = 3}, + [61] = {.lex_state = 158, .external_lex_state = 3}, + [62] = {.lex_state = 158, .external_lex_state = 3}, + [63] = {.lex_state = 158, .external_lex_state = 3}, + [64] = {.lex_state = 158, .external_lex_state = 3}, + [65] = {.lex_state = 158, .external_lex_state = 3}, + [66] = {.lex_state = 158, .external_lex_state = 3}, + [67] = {.lex_state = 158, .external_lex_state = 3}, + [68] = {.lex_state = 158, .external_lex_state = 3}, + [69] = {.lex_state = 158, .external_lex_state = 3}, + [70] = {.lex_state = 158, .external_lex_state = 3}, + [71] = {.lex_state = 158, .external_lex_state = 3}, + [72] = {.lex_state = 158, .external_lex_state = 3}, + [73] = {.lex_state = 158, .external_lex_state = 3}, + [74] = {.lex_state = 158, .external_lex_state = 3}, + [75] = {.lex_state = 158, .external_lex_state = 3}, + [76] = {.lex_state = 158, .external_lex_state = 3}, + [77] = {.lex_state = 158, .external_lex_state = 3}, + [78] = {.lex_state = 158, .external_lex_state = 3}, + [79] = {.lex_state = 158, .external_lex_state = 3}, + [80] = {.lex_state = 158, .external_lex_state = 3}, + [81] = {.lex_state = 158, .external_lex_state = 3}, + [82] = {.lex_state = 158, .external_lex_state = 3}, + [83] = {.lex_state = 158, .external_lex_state = 3}, + [84] = {.lex_state = 158, .external_lex_state = 3}, + [85] = {.lex_state = 158, .external_lex_state = 3}, + [86] = {.lex_state = 158, .external_lex_state = 3}, + [87] = {.lex_state = 158, .external_lex_state = 3}, + [88] = {.lex_state = 158, .external_lex_state = 3}, + [89] = {.lex_state = 158, .external_lex_state = 3}, + [90] = {.lex_state = 158, .external_lex_state = 3}, + [91] = {.lex_state = 158, .external_lex_state = 3}, + [92] = {.lex_state = 158, .external_lex_state = 3}, + [93] = {.lex_state = 158, .external_lex_state = 3}, + [94] = {.lex_state = 158, .external_lex_state = 3}, + [95] = {.lex_state = 158, .external_lex_state = 3}, + [96] = {.lex_state = 158, .external_lex_state = 3}, + [97] = {.lex_state = 158, .external_lex_state = 3}, + [98] = {.lex_state = 158, .external_lex_state = 3}, + [99] = {.lex_state = 158, .external_lex_state = 3}, + [100] = {.lex_state = 158, .external_lex_state = 3}, + [101] = {.lex_state = 158, .external_lex_state = 3}, + [102] = {.lex_state = 158, .external_lex_state = 3}, + [103] = {.lex_state = 158, .external_lex_state = 3}, + [104] = {.lex_state = 158, .external_lex_state = 3}, + [105] = {.lex_state = 158, .external_lex_state = 3}, + [106] = {.lex_state = 158, .external_lex_state = 3}, + [107] = {.lex_state = 158, .external_lex_state = 3}, + [108] = {.lex_state = 158, .external_lex_state = 3}, + [109] = {.lex_state = 158, .external_lex_state = 3}, + [110] = {.lex_state = 158, .external_lex_state = 3}, + [111] = {.lex_state = 158, .external_lex_state = 3}, + [112] = {.lex_state = 158, .external_lex_state = 3}, + [113] = {.lex_state = 158, .external_lex_state = 3}, + [114] = {.lex_state = 158, .external_lex_state = 3}, + [115] = {.lex_state = 158, .external_lex_state = 3}, + [116] = {.lex_state = 158, .external_lex_state = 3}, + [117] = {.lex_state = 158, .external_lex_state = 3}, + [118] = {.lex_state = 158, .external_lex_state = 3}, + [119] = {.lex_state = 158, .external_lex_state = 3}, + [120] = {.lex_state = 158, .external_lex_state = 3}, + [121] = {.lex_state = 158, .external_lex_state = 3}, + [122] = {.lex_state = 158, .external_lex_state = 3}, + [123] = {.lex_state = 158, .external_lex_state = 3}, + [124] = {.lex_state = 158, .external_lex_state = 3}, + [125] = {.lex_state = 158, .external_lex_state = 3}, + [126] = {.lex_state = 158, .external_lex_state = 3}, + [127] = {.lex_state = 158, .external_lex_state = 3}, + [128] = {.lex_state = 158, .external_lex_state = 3}, + [129] = {.lex_state = 158, .external_lex_state = 3}, + [130] = {.lex_state = 158, .external_lex_state = 3}, + [131] = {.lex_state = 158, .external_lex_state = 3}, + [132] = {.lex_state = 158, .external_lex_state = 3}, + [133] = {.lex_state = 158, .external_lex_state = 3}, + [134] = {.lex_state = 158, .external_lex_state = 3}, + [135] = {.lex_state = 158, .external_lex_state = 3}, + [136] = {.lex_state = 158, .external_lex_state = 3}, + [137] = {.lex_state = 158, .external_lex_state = 3}, + [138] = {.lex_state = 158, .external_lex_state = 3}, + [139] = {.lex_state = 158, .external_lex_state = 3}, + [140] = {.lex_state = 158, .external_lex_state = 3}, + [141] = {.lex_state = 158, .external_lex_state = 3}, + [142] = {.lex_state = 158, .external_lex_state = 3}, + [143] = {.lex_state = 158, .external_lex_state = 3}, + [144] = {.lex_state = 158, .external_lex_state = 3}, + [145] = {.lex_state = 158, .external_lex_state = 3}, + [146] = {.lex_state = 158, .external_lex_state = 3}, + [147] = {.lex_state = 158, .external_lex_state = 3}, + [148] = {.lex_state = 158, .external_lex_state = 3}, + [149] = {.lex_state = 158, .external_lex_state = 3}, + [150] = {.lex_state = 158, .external_lex_state = 3}, + [151] = {.lex_state = 158, .external_lex_state = 3}, + [152] = {.lex_state = 158, .external_lex_state = 3}, + [153] = {.lex_state = 158, .external_lex_state = 3}, + [154] = {.lex_state = 158, .external_lex_state = 3}, + [155] = {.lex_state = 158, .external_lex_state = 3}, + [156] = {.lex_state = 158, .external_lex_state = 3}, + [157] = {.lex_state = 158, .external_lex_state = 3}, + [158] = {.lex_state = 158, .external_lex_state = 3}, + [159] = {.lex_state = 158, .external_lex_state = 3}, + [160] = {.lex_state = 158, .external_lex_state = 3}, + [161] = {.lex_state = 158, .external_lex_state = 3}, + [162] = {.lex_state = 158, .external_lex_state = 3}, + [163] = {.lex_state = 158, .external_lex_state = 3}, + [164] = {.lex_state = 158, .external_lex_state = 3}, + [165] = {.lex_state = 158, .external_lex_state = 3}, + [166] = {.lex_state = 158, .external_lex_state = 3}, + [167] = {.lex_state = 158, .external_lex_state = 3}, + [168] = {.lex_state = 158, .external_lex_state = 3}, + [169] = {.lex_state = 158, .external_lex_state = 3}, + [170] = {.lex_state = 158, .external_lex_state = 3}, + [171] = {.lex_state = 158, .external_lex_state = 3}, + [172] = {.lex_state = 158, .external_lex_state = 3}, + [173] = {.lex_state = 158, .external_lex_state = 3}, + [174] = {.lex_state = 158, .external_lex_state = 3}, + [175] = {.lex_state = 158, .external_lex_state = 3}, + [176] = {.lex_state = 158, .external_lex_state = 3}, + [177] = {.lex_state = 158, .external_lex_state = 3}, + [178] = {.lex_state = 158, .external_lex_state = 3}, + [179] = {.lex_state = 158, .external_lex_state = 3}, + [180] = {.lex_state = 158, .external_lex_state = 3}, + [181] = {.lex_state = 158, .external_lex_state = 3}, + [182] = {.lex_state = 158, .external_lex_state = 3}, + [183] = {.lex_state = 158, .external_lex_state = 3}, + [184] = {.lex_state = 158, .external_lex_state = 3}, + [185] = {.lex_state = 158, .external_lex_state = 3}, + [186] = {.lex_state = 158, .external_lex_state = 3}, + [187] = {.lex_state = 158, .external_lex_state = 3}, + [188] = {.lex_state = 158, .external_lex_state = 3}, + [189] = {.lex_state = 158, .external_lex_state = 3}, + [190] = {.lex_state = 158, .external_lex_state = 3}, + [191] = {.lex_state = 158, .external_lex_state = 3}, + [192] = {.lex_state = 158, .external_lex_state = 3}, + [193] = {.lex_state = 158, .external_lex_state = 3}, + [194] = {.lex_state = 158, .external_lex_state = 3}, + [195] = {.lex_state = 158, .external_lex_state = 3}, + [196] = {.lex_state = 158, .external_lex_state = 3}, + [197] = {.lex_state = 158, .external_lex_state = 3}, + [198] = {.lex_state = 158, .external_lex_state = 3}, + [199] = {.lex_state = 158, .external_lex_state = 3}, + [200] = {.lex_state = 158, .external_lex_state = 3}, + [201] = {.lex_state = 158, .external_lex_state = 3}, + [202] = {.lex_state = 158, .external_lex_state = 3}, + [203] = {.lex_state = 158, .external_lex_state = 3}, + [204] = {.lex_state = 158, .external_lex_state = 3}, + [205] = {.lex_state = 158, .external_lex_state = 3}, + [206] = {.lex_state = 158, .external_lex_state = 3}, + [207] = {.lex_state = 158, .external_lex_state = 3}, + [208] = {.lex_state = 158, .external_lex_state = 3}, + [209] = {.lex_state = 158, .external_lex_state = 3}, + [210] = {.lex_state = 158, .external_lex_state = 3}, + [211] = {.lex_state = 158, .external_lex_state = 3}, + [212] = {.lex_state = 158, .external_lex_state = 3}, + [213] = {.lex_state = 158, .external_lex_state = 3}, + [214] = {.lex_state = 158, .external_lex_state = 3}, + [215] = {.lex_state = 158, .external_lex_state = 3}, + [216] = {.lex_state = 158, .external_lex_state = 3}, + [217] = {.lex_state = 158, .external_lex_state = 3}, + [218] = {.lex_state = 158, .external_lex_state = 3}, + [219] = {.lex_state = 158, .external_lex_state = 3}, + [220] = {.lex_state = 158, .external_lex_state = 3}, + [221] = {.lex_state = 158, .external_lex_state = 3}, + [222] = {.lex_state = 158, .external_lex_state = 3}, + [223] = {.lex_state = 158, .external_lex_state = 3}, + [224] = {.lex_state = 158, .external_lex_state = 3}, + [225] = {.lex_state = 158, .external_lex_state = 3}, + [226] = {.lex_state = 158, .external_lex_state = 3}, + [227] = {.lex_state = 158, .external_lex_state = 3}, + [228] = {.lex_state = 158, .external_lex_state = 3}, + [229] = {.lex_state = 158, .external_lex_state = 3}, + [230] = {.lex_state = 158, .external_lex_state = 3}, + [231] = {.lex_state = 158, .external_lex_state = 3}, + [232] = {.lex_state = 158, .external_lex_state = 3}, + [233] = {.lex_state = 158, .external_lex_state = 3}, + [234] = {.lex_state = 158, .external_lex_state = 3}, + [235] = {.lex_state = 158, .external_lex_state = 3}, + [236] = {.lex_state = 158, .external_lex_state = 3}, + [237] = {.lex_state = 158, .external_lex_state = 3}, + [238] = {.lex_state = 158, .external_lex_state = 3}, + [239] = {.lex_state = 158, .external_lex_state = 3}, + [240] = {.lex_state = 158, .external_lex_state = 3}, + [241] = {.lex_state = 158, .external_lex_state = 3}, + [242] = {.lex_state = 158, .external_lex_state = 3}, + [243] = {.lex_state = 158, .external_lex_state = 3}, + [244] = {.lex_state = 158, .external_lex_state = 3}, + [245] = {.lex_state = 158, .external_lex_state = 3}, + [246] = {.lex_state = 158, .external_lex_state = 2}, + [247] = {.lex_state = 158, .external_lex_state = 3}, + [248] = {.lex_state = 158, .external_lex_state = 3}, + [249] = {.lex_state = 158, .external_lex_state = 2}, + [250] = {.lex_state = 158, .external_lex_state = 2}, + [251] = {.lex_state = 158, .external_lex_state = 3}, + [252] = {.lex_state = 158, .external_lex_state = 3}, + [253] = {.lex_state = 158, .external_lex_state = 3}, + [254] = {.lex_state = 158, .external_lex_state = 2}, + [255] = {.lex_state = 158, .external_lex_state = 3}, + [256] = {.lex_state = 158, .external_lex_state = 3}, + [257] = {.lex_state = 158, .external_lex_state = 3}, + [258] = {.lex_state = 158, .external_lex_state = 3}, + [259] = {.lex_state = 158, .external_lex_state = 3}, + [260] = {.lex_state = 158, .external_lex_state = 3}, + [261] = {.lex_state = 158, .external_lex_state = 3}, + [262] = {.lex_state = 5, .external_lex_state = 4}, + [263] = {.lex_state = 5, .external_lex_state = 4}, + [264] = {.lex_state = 5, .external_lex_state = 4}, + [265] = {.lex_state = 5, .external_lex_state = 4}, + [266] = {.lex_state = 5, .external_lex_state = 4}, + [267] = {.lex_state = 5, .external_lex_state = 4}, + [268] = {.lex_state = 5, .external_lex_state = 4}, + [269] = {.lex_state = 5, .external_lex_state = 4}, + [270] = {.lex_state = 5, .external_lex_state = 4}, + [271] = {.lex_state = 5, .external_lex_state = 4}, + [272] = {.lex_state = 5, .external_lex_state = 4}, + [273] = {.lex_state = 5, .external_lex_state = 4}, [274] = {.lex_state = 5, .external_lex_state = 4}, [275] = {.lex_state = 5, .external_lex_state = 4}, [276] = {.lex_state = 5, .external_lex_state = 4}, @@ -17313,26 +17583,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [286] = {.lex_state = 6, .external_lex_state = 4}, + [287] = {.lex_state = 6, .external_lex_state = 4}, + [288] = {.lex_state = 6, .external_lex_state = 4}, + [289] = {.lex_state = 6, .external_lex_state = 4}, + [290] = {.lex_state = 6, .external_lex_state = 4}, + [291] = {.lex_state = 6, .external_lex_state = 4}, + [292] = {.lex_state = 6, .external_lex_state = 4}, + [293] = {.lex_state = 6, .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}, + [298] = {.lex_state = 5, .external_lex_state = 4}, + [299] = {.lex_state = 5, .external_lex_state = 4}, + [300] = {.lex_state = 5, .external_lex_state = 4}, + [301] = {.lex_state = 5, .external_lex_state = 4}, + [302] = {.lex_state = 5, .external_lex_state = 4}, + [303] = {.lex_state = 5, .external_lex_state = 4}, + [304] = {.lex_state = 5, .external_lex_state = 4}, + [305] = {.lex_state = 5, .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}, @@ -17447,17 +17717,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [420] = {.lex_state = 5, .external_lex_state = 4}, [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}, + [427] = {.lex_state = 5, .external_lex_state = 4}, [428] = {.lex_state = 5, .external_lex_state = 4}, [429] = {.lex_state = 5, .external_lex_state = 4}, - [430] = {.lex_state = 5, .external_lex_state = 4}, + [430] = {.lex_state = 7, .external_lex_state = 5}, [431] = {.lex_state = 5, .external_lex_state = 4}, [432] = {.lex_state = 5, .external_lex_state = 4}, [433] = {.lex_state = 5, .external_lex_state = 4}, @@ -17487,7 +17757,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [460] = {.lex_state = 7, .external_lex_state = 5}, [461] = {.lex_state = 5, .external_lex_state = 4}, [462] = {.lex_state = 5, .external_lex_state = 4}, [463] = {.lex_state = 5, .external_lex_state = 4}, @@ -17557,61 +17827,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [530] = {.lex_state = 7, .external_lex_state = 5}, + [531] = {.lex_state = 7, .external_lex_state = 5}, + [532] = {.lex_state = 5, .external_lex_state = 5}, + [533] = {.lex_state = 5, .external_lex_state = 5}, + [534] = {.lex_state = 5, .external_lex_state = 5}, + [535] = {.lex_state = 5, .external_lex_state = 5}, + [536] = {.lex_state = 5, .external_lex_state = 5}, + [537] = {.lex_state = 5, .external_lex_state = 5}, + [538] = {.lex_state = 5, .external_lex_state = 5}, + [539] = {.lex_state = 5, .external_lex_state = 5}, + [540] = {.lex_state = 5, .external_lex_state = 5}, + [541] = {.lex_state = 5, .external_lex_state = 5}, + [542] = {.lex_state = 5, .external_lex_state = 5}, + [543] = {.lex_state = 5, .external_lex_state = 5}, + [544] = {.lex_state = 5, .external_lex_state = 5}, + [545] = {.lex_state = 5, .external_lex_state = 5}, + [546] = {.lex_state = 5, .external_lex_state = 5}, + [547] = {.lex_state = 5, .external_lex_state = 5}, + [548] = {.lex_state = 5, .external_lex_state = 5}, + [549] = {.lex_state = 5, .external_lex_state = 5}, + [550] = {.lex_state = 5, .external_lex_state = 5}, + [551] = {.lex_state = 5, .external_lex_state = 5}, + [552] = {.lex_state = 5, .external_lex_state = 5}, + [553] = {.lex_state = 5, .external_lex_state = 5}, + [554] = {.lex_state = 5, .external_lex_state = 2}, [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}, + [556] = {.lex_state = 7, .external_lex_state = 5}, + [557] = {.lex_state = 73, .external_lex_state = 5}, + [558] = {.lex_state = 8, .external_lex_state = 6}, + [559] = {.lex_state = 8, .external_lex_state = 6}, + [560] = {.lex_state = 8, .external_lex_state = 6}, + [561] = {.lex_state = 9, .external_lex_state = 6}, + [562] = {.lex_state = 9, .external_lex_state = 6}, + [563] = {.lex_state = 9, .external_lex_state = 6}, + [564] = {.lex_state = 9, .external_lex_state = 6}, + [565] = {.lex_state = 9, .external_lex_state = 6}, + [566] = {.lex_state = 9, .external_lex_state = 6}, + [567] = {.lex_state = 9, .external_lex_state = 6}, + [568] = {.lex_state = 9, .external_lex_state = 6}, + [569] = {.lex_state = 9, .external_lex_state = 6}, + [570] = {.lex_state = 9, .external_lex_state = 6}, + [571] = {.lex_state = 9, .external_lex_state = 6}, + [572] = {.lex_state = 9, .external_lex_state = 6}, + [573] = {.lex_state = 9, .external_lex_state = 6}, + [574] = {.lex_state = 9, .external_lex_state = 6}, + [575] = {.lex_state = 9, .external_lex_state = 6}, + [576] = {.lex_state = 9, .external_lex_state = 6}, + [577] = {.lex_state = 9, .external_lex_state = 6}, + [578] = {.lex_state = 9, .external_lex_state = 6}, + [579] = {.lex_state = 9, .external_lex_state = 6}, + [580] = {.lex_state = 9, .external_lex_state = 6}, + [581] = {.lex_state = 9, .external_lex_state = 6}, + [582] = {.lex_state = 9, .external_lex_state = 6}, + [583] = {.lex_state = 9, .external_lex_state = 6}, + [584] = {.lex_state = 9, .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}, @@ -17623,748 +17893,748 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [596] = {.lex_state = 8, .external_lex_state = 6}, + [597] = {.lex_state = 8, .external_lex_state = 6}, + [598] = {.lex_state = 8, .external_lex_state = 6}, + [599] = {.lex_state = 10, .external_lex_state = 5}, + [600] = {.lex_state = 8, .external_lex_state = 2}, + [601] = {.lex_state = 10, .external_lex_state = 7}, + [602] = {.lex_state = 10, .external_lex_state = 7}, + [603] = {.lex_state = 8, .external_lex_state = 2}, + [604] = {.lex_state = 8, .external_lex_state = 2}, + [605] = {.lex_state = 8, .external_lex_state = 2}, + [606] = {.lex_state = 8, .external_lex_state = 2}, + [607] = {.lex_state = 8, .external_lex_state = 2}, + [608] = {.lex_state = 8, .external_lex_state = 2}, + [609] = {.lex_state = 8, .external_lex_state = 2}, + [610] = {.lex_state = 11, .external_lex_state = 5}, + [611] = {.lex_state = 12, .external_lex_state = 5}, + [612] = {.lex_state = 13, .external_lex_state = 5}, + [613] = {.lex_state = 13, .external_lex_state = 5}, + [614] = {.lex_state = 14, .external_lex_state = 6}, + [615] = {.lex_state = 15, .external_lex_state = 5}, + [616] = {.lex_state = 14, .external_lex_state = 7}, + [617] = {.lex_state = 15, .external_lex_state = 5}, + [618] = {.lex_state = 13, .external_lex_state = 7}, + [619] = {.lex_state = 13, .external_lex_state = 7}, + [620] = {.lex_state = 14, .external_lex_state = 7}, + [621] = {.lex_state = 14, .external_lex_state = 6}, + [622] = {.lex_state = 74, .external_lex_state = 5}, + [623] = {.lex_state = 74, .external_lex_state = 5}, + [624] = {.lex_state = 14, .external_lex_state = 6}, + [625] = {.lex_state = 10, .external_lex_state = 2}, + [626] = {.lex_state = 16, .external_lex_state = 7}, + [627] = {.lex_state = 16, .external_lex_state = 6}, + [628] = {.lex_state = 14, .external_lex_state = 8}, + [629] = {.lex_state = 14, .external_lex_state = 8}, + [630] = {.lex_state = 14, .external_lex_state = 8}, + [631] = {.lex_state = 17, .external_lex_state = 7}, + [632] = {.lex_state = 10, .external_lex_state = 8}, + [633] = {.lex_state = 11, .external_lex_state = 5}, + [634] = {.lex_state = 17, .external_lex_state = 7}, + [635] = {.lex_state = 14, .external_lex_state = 6}, + [636] = {.lex_state = 16, .external_lex_state = 8}, + [637] = {.lex_state = 11, .external_lex_state = 5}, + [638] = {.lex_state = 10, .external_lex_state = 6}, + [639] = {.lex_state = 16, .external_lex_state = 7}, + [640] = {.lex_state = 14, .external_lex_state = 6}, + [641] = {.lex_state = 13, .external_lex_state = 2}, + [642] = {.lex_state = 16, .external_lex_state = 6}, + [643] = {.lex_state = 13, .external_lex_state = 8}, + [644] = {.lex_state = 18, .external_lex_state = 2}, + [645] = {.lex_state = 13, .external_lex_state = 2}, + [646] = {.lex_state = 14, .external_lex_state = 8}, + [647] = {.lex_state = 16, .external_lex_state = 8}, + [648] = {.lex_state = 10, .external_lex_state = 8}, + [649] = {.lex_state = 10, .external_lex_state = 6}, + [650] = {.lex_state = 10, .external_lex_state = 7}, + [651] = {.lex_state = 15, .external_lex_state = 2}, + [652] = {.lex_state = 15, .external_lex_state = 2}, + [653] = {.lex_state = 14, .external_lex_state = 8}, + [654] = {.lex_state = 16, .external_lex_state = 6}, + [655] = {.lex_state = 16, .external_lex_state = 8}, + [656] = {.lex_state = 14, .external_lex_state = 6}, + [657] = {.lex_state = 16, .external_lex_state = 7}, + [658] = {.lex_state = 10, .external_lex_state = 6}, + [659] = {.lex_state = 13, .external_lex_state = 8}, + [660] = {.lex_state = 10, .external_lex_state = 6}, + [661] = {.lex_state = 75, .external_lex_state = 2}, + [662] = {.lex_state = 10, .external_lex_state = 6}, + [663] = {.lex_state = 19, .external_lex_state = 2}, + [664] = {.lex_state = 75, .external_lex_state = 2}, + [665] = {.lex_state = 19, .external_lex_state = 2}, + [666] = {.lex_state = 19, .external_lex_state = 2}, + [667] = {.lex_state = 8, .external_lex_state = 8}, + [668] = {.lex_state = 8, .external_lex_state = 8}, + [669] = {.lex_state = 8, .external_lex_state = 6}, + [670] = {.lex_state = 8, .external_lex_state = 8}, + [671] = {.lex_state = 9, .external_lex_state = 7}, + [672] = {.lex_state = 8, .external_lex_state = 6}, + [673] = {.lex_state = 8, .external_lex_state = 6}, + [674] = {.lex_state = 8, .external_lex_state = 8}, + [675] = {.lex_state = 9, .external_lex_state = 7}, + [676] = {.lex_state = 9, .external_lex_state = 7}, + [677] = {.lex_state = 8, .external_lex_state = 2}, + [678] = {.lex_state = 8, .external_lex_state = 6}, + [679] = {.lex_state = 8, .external_lex_state = 6}, + [680] = {.lex_state = 8, .external_lex_state = 8}, + [681] = {.lex_state = 8, .external_lex_state = 8}, + [682] = {.lex_state = 9, .external_lex_state = 7}, + [683] = {.lex_state = 8, .external_lex_state = 8}, + [684] = {.lex_state = 8, .external_lex_state = 6}, + [685] = {.lex_state = 8, .external_lex_state = 6}, + [686] = {.lex_state = 8, .external_lex_state = 2}, + [687] = {.lex_state = 8, .external_lex_state = 6}, + [688] = {.lex_state = 8, .external_lex_state = 8}, + [689] = {.lex_state = 9, .external_lex_state = 7}, + [690] = {.lex_state = 8, .external_lex_state = 2}, + [691] = {.lex_state = 9, .external_lex_state = 7}, + [692] = {.lex_state = 8, .external_lex_state = 6}, + [693] = {.lex_state = 8, .external_lex_state = 8}, + [694] = {.lex_state = 9, .external_lex_state = 7}, + [695] = {.lex_state = 8, .external_lex_state = 8}, + [696] = {.lex_state = 8, .external_lex_state = 6}, + [697] = {.lex_state = 8, .external_lex_state = 8}, + [698] = {.lex_state = 9, .external_lex_state = 7}, + [699] = {.lex_state = 8, .external_lex_state = 6}, + [700] = {.lex_state = 8, .external_lex_state = 2}, + [701] = {.lex_state = 9, .external_lex_state = 8}, + [702] = {.lex_state = 9, .external_lex_state = 8}, + [703] = {.lex_state = 9, .external_lex_state = 8}, + [704] = {.lex_state = 8, .external_lex_state = 2}, + [705] = {.lex_state = 9, .external_lex_state = 8}, + [706] = {.lex_state = 9, .external_lex_state = 8}, + [707] = {.lex_state = 9, .external_lex_state = 8}, + [708] = {.lex_state = 9, .external_lex_state = 6}, + [709] = {.lex_state = 9, .external_lex_state = 6}, + [710] = {.lex_state = 9, .external_lex_state = 2}, + [711] = {.lex_state = 9, .external_lex_state = 2}, + [712] = {.lex_state = 9, .external_lex_state = 2}, + [713] = {.lex_state = 9, .external_lex_state = 2}, + [714] = {.lex_state = 9, .external_lex_state = 2}, + [715] = {.lex_state = 9, .external_lex_state = 2}, + [716] = {.lex_state = 9, .external_lex_state = 6}, + [717] = {.lex_state = 9, .external_lex_state = 2}, + [718] = {.lex_state = 9, .external_lex_state = 6}, + [719] = {.lex_state = 9, .external_lex_state = 2}, + [720] = {.lex_state = 9, .external_lex_state = 6}, + [721] = {.lex_state = 9, .external_lex_state = 2}, + [722] = {.lex_state = 8, .external_lex_state = 6}, + [723] = {.lex_state = 9, .external_lex_state = 2}, + [724] = {.lex_state = 20, .external_lex_state = 6}, + [725] = {.lex_state = 9, .external_lex_state = 6}, + [726] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [729] = {.lex_state = 9, .external_lex_state = 2}, + [730] = {.lex_state = 21, .external_lex_state = 5}, [731] = {.lex_state = 9, .external_lex_state = 2}, - [732] = {.lex_state = 9, .external_lex_state = 6}, + [732] = {.lex_state = 9, .external_lex_state = 2}, [733] = {.lex_state = 9, .external_lex_state = 2}, - [734] = {.lex_state = 21, .external_lex_state = 6}, + [734] = {.lex_state = 9, .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}, + [736] = {.lex_state = 9, .external_lex_state = 2}, + [737] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [740] = {.lex_state = 9, .external_lex_state = 6}, + [741] = {.lex_state = 21, .external_lex_state = 5}, + [742] = {.lex_state = 20, .external_lex_state = 6}, + [743] = {.lex_state = 9, .external_lex_state = 2}, + [744] = {.lex_state = 9, .external_lex_state = 2}, + [745] = {.lex_state = 9, .external_lex_state = 2}, [746] = {.lex_state = 9, .external_lex_state = 6}, - [747] = {.lex_state = 9, .external_lex_state = 2}, + [747] = {.lex_state = 9, .external_lex_state = 6}, [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}, + [749] = {.lex_state = 9, .external_lex_state = 6}, + [750] = {.lex_state = 159, .external_lex_state = 9}, + [751] = {.lex_state = 161, .external_lex_state = 2}, + [752] = {.lex_state = 9, .external_lex_state = 6}, + [753] = {.lex_state = 9, .external_lex_state = 6}, + [754] = {.lex_state = 8, .external_lex_state = 6}, + [755] = {.lex_state = 8, .external_lex_state = 8}, + [756] = {.lex_state = 8, .external_lex_state = 6}, + [757] = {.lex_state = 8, .external_lex_state = 6}, + [758] = {.lex_state = 8, .external_lex_state = 6}, + [759] = {.lex_state = 8, .external_lex_state = 8}, + [760] = {.lex_state = 8, .external_lex_state = 6}, + [761] = {.lex_state = 9, .external_lex_state = 6}, + [762] = {.lex_state = 9, .external_lex_state = 6}, [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}, + [764] = {.lex_state = 9, .external_lex_state = 6}, + [765] = {.lex_state = 9, .external_lex_state = 6}, + [766] = {.lex_state = 9, .external_lex_state = 6}, + [767] = {.lex_state = 9, .external_lex_state = 6}, [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}, + [769] = {.lex_state = 8, .external_lex_state = 6}, + [770] = {.lex_state = 9, .external_lex_state = 6}, + [771] = {.lex_state = 9, .external_lex_state = 6}, + [772] = {.lex_state = 159, .external_lex_state = 10}, + [773] = {.lex_state = 161, .external_lex_state = 3}, + [774] = {.lex_state = 159, .external_lex_state = 10}, + [775] = {.lex_state = 161, .external_lex_state = 3}, + [776] = {.lex_state = 8, .external_lex_state = 6}, + [777] = {.lex_state = 8, .external_lex_state = 8}, + [778] = {.lex_state = 8, .external_lex_state = 6}, + [779] = {.lex_state = 9, .external_lex_state = 6}, + [780] = {.lex_state = 9, .external_lex_state = 6}, + [781] = {.lex_state = 9, .external_lex_state = 6}, [782] = {.lex_state = 8, .external_lex_state = 6}, - [783] = {.lex_state = 157, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 6}, + [783] = {.lex_state = 8, .external_lex_state = 8}, + [784] = {.lex_state = 8, .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}, + [788] = {.lex_state = 9, .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}, + [792] = {.lex_state = 9, .external_lex_state = 6}, + [793] = {.lex_state = 9, .external_lex_state = 6}, [794] = {.lex_state = 9, .external_lex_state = 6}, - [795] = {.lex_state = 9, .external_lex_state = 6}, - [796] = {.lex_state = 9, .external_lex_state = 6}, + [795] = {.lex_state = 8, .external_lex_state = 6}, + [796] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [799] = {.lex_state = 9, .external_lex_state = 6}, + [800] = {.lex_state = 9, .external_lex_state = 6}, [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}, + [805] = {.lex_state = 9, .external_lex_state = 6}, [806] = {.lex_state = 9, .external_lex_state = 6}, [807] = {.lex_state = 9, .external_lex_state = 6}, - [808] = {.lex_state = 159, .external_lex_state = 10}, + [808] = {.lex_state = 9, .external_lex_state = 6}, [809] = {.lex_state = 9, .external_lex_state = 6}, - [810] = {.lex_state = 9, .external_lex_state = 6}, + [810] = {.lex_state = 159, .external_lex_state = 9}, [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}, + [813] = {.lex_state = 161, .external_lex_state = 2}, + [814] = {.lex_state = 8, .external_lex_state = 6}, + [815] = {.lex_state = 8, .external_lex_state = 8}, + [816] = {.lex_state = 8, .external_lex_state = 6}, + [817] = {.lex_state = 8, .external_lex_state = 8}, [818] = {.lex_state = 9, .external_lex_state = 6}, [819] = {.lex_state = 9, .external_lex_state = 6}, - [820] = {.lex_state = 9, .external_lex_state = 6}, + [820] = {.lex_state = 5, .external_lex_state = 7}, [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}, + [822] = {.lex_state = 21, .external_lex_state = 2}, + [823] = {.lex_state = 22, .external_lex_state = 6}, + [824] = {.lex_state = 22, .external_lex_state = 6}, + [825] = {.lex_state = 21, .external_lex_state = 2}, + [826] = {.lex_state = 22, .external_lex_state = 6}, + [827] = {.lex_state = 9, .external_lex_state = 2}, + [828] = {.lex_state = 8, .external_lex_state = 7}, + [829] = {.lex_state = 22, .external_lex_state = 6}, + [830] = {.lex_state = 8, .external_lex_state = 7}, + [831] = {.lex_state = 8, .external_lex_state = 8}, + [832] = {.lex_state = 8, .external_lex_state = 6}, + [833] = {.lex_state = 8, .external_lex_state = 8}, + [834] = {.lex_state = 22, .external_lex_state = 8}, + [835] = {.lex_state = 22, .external_lex_state = 7}, + [836] = {.lex_state = 22, .external_lex_state = 7}, + [837] = {.lex_state = 22, .external_lex_state = 7}, + [838] = {.lex_state = 22, .external_lex_state = 7}, + [839] = {.lex_state = 8, .external_lex_state = 6}, + [840] = {.lex_state = 22, .external_lex_state = 8}, + [841] = {.lex_state = 22, .external_lex_state = 8}, + [842] = {.lex_state = 22, .external_lex_state = 8}, + [843] = {.lex_state = 160, .external_lex_state = 3}, + [844] = {.lex_state = 5, .external_lex_state = 6}, + [845] = {.lex_state = 160, .external_lex_state = 2}, + [846] = {.lex_state = 158, .external_lex_state = 2}, + [847] = {.lex_state = 5, .external_lex_state = 5}, + [848] = {.lex_state = 5, .external_lex_state = 8}, + [849] = {.lex_state = 8, .external_lex_state = 7}, + [850] = {.lex_state = 9, .external_lex_state = 7}, + [851] = {.lex_state = 160, .external_lex_state = 2}, + [852] = {.lex_state = 9, .external_lex_state = 7}, + [853] = {.lex_state = 9, .external_lex_state = 7}, + [854] = {.lex_state = 9, .external_lex_state = 7}, + [855] = {.lex_state = 9, .external_lex_state = 7}, + [856] = {.lex_state = 9, .external_lex_state = 7}, + [857] = {.lex_state = 5, .external_lex_state = 5}, + [858] = {.lex_state = 160, .external_lex_state = 2}, + [859] = {.lex_state = 8, .external_lex_state = 2}, + [860] = {.lex_state = 158, .external_lex_state = 2}, + [861] = {.lex_state = 9, .external_lex_state = 7}, + [862] = {.lex_state = 5, .external_lex_state = 7}, + [863] = {.lex_state = 9, .external_lex_state = 7}, + [864] = {.lex_state = 8, .external_lex_state = 2}, + [865] = {.lex_state = 158, .external_lex_state = 3}, + [866] = {.lex_state = 160, .external_lex_state = 3}, + [867] = {.lex_state = 160, .external_lex_state = 2}, + [868] = {.lex_state = 159, .external_lex_state = 9}, + [869] = {.lex_state = 160, .external_lex_state = 3}, + [870] = {.lex_state = 159, .external_lex_state = 10}, + [871] = {.lex_state = 161, .external_lex_state = 3}, + [872] = {.lex_state = 9, .external_lex_state = 7}, + [873] = {.lex_state = 161, .external_lex_state = 2}, + [874] = {.lex_state = 9, .external_lex_state = 7}, + [875] = {.lex_state = 158, .external_lex_state = 3}, + [876] = {.lex_state = 158, .external_lex_state = 3}, + [877] = {.lex_state = 160, .external_lex_state = 3}, + [878] = {.lex_state = 158, .external_lex_state = 3}, + [879] = {.lex_state = 8, .external_lex_state = 2}, + [880] = {.lex_state = 8, .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}, + [882] = {.lex_state = 9, .external_lex_state = 7}, + [883] = {.lex_state = 9, .external_lex_state = 7}, + [884] = {.lex_state = 9, .external_lex_state = 7}, + [885] = {.lex_state = 9, .external_lex_state = 7}, + [886] = {.lex_state = 158, .external_lex_state = 2}, + [887] = {.lex_state = 9, .external_lex_state = 7}, + [888] = {.lex_state = 158, .external_lex_state = 2}, + [889] = {.lex_state = 8, .external_lex_state = 8}, + [890] = {.lex_state = 158, .external_lex_state = 2}, + [891] = {.lex_state = 5, .external_lex_state = 5}, [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 = 9, .external_lex_state = 7}, + [893] = {.lex_state = 22, .external_lex_state = 7}, + [894] = {.lex_state = 8, .external_lex_state = 8}, + [895] = {.lex_state = 22, .external_lex_state = 7}, + [896] = {.lex_state = 8, .external_lex_state = 8}, + [897] = {.lex_state = 5, .external_lex_state = 5}, + [898] = {.lex_state = 8, .external_lex_state = 8}, + [899] = {.lex_state = 8, .external_lex_state = 8}, + [900] = {.lex_state = 8, .external_lex_state = 8}, + [901] = {.lex_state = 8, .external_lex_state = 8}, + [902] = {.lex_state = 8, .external_lex_state = 8}, + [903] = {.lex_state = 160, .external_lex_state = 2}, + [904] = {.lex_state = 158, .external_lex_state = 3}, + [905] = {.lex_state = 9, .external_lex_state = 2}, + [906] = {.lex_state = 158, .external_lex_state = 3}, + [907] = {.lex_state = 8, .external_lex_state = 8}, + [908] = {.lex_state = 8, .external_lex_state = 8}, + [909] = {.lex_state = 8, .external_lex_state = 8}, + [910] = {.lex_state = 8, .external_lex_state = 8}, + [911] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [913] = {.lex_state = 8, .external_lex_state = 8}, + [914] = {.lex_state = 8, .external_lex_state = 8}, + [915] = {.lex_state = 158, .external_lex_state = 3}, + [916] = {.lex_state = 158, .external_lex_state = 2}, + [917] = {.lex_state = 22, .external_lex_state = 8}, + [918] = {.lex_state = 8, .external_lex_state = 8}, + [919] = {.lex_state = 8, .external_lex_state = 8}, + [920] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [923] = {.lex_state = 160, .external_lex_state = 3}, + [924] = {.lex_state = 158, .external_lex_state = 3}, [925] = {.lex_state = 8, .external_lex_state = 8}, - [926] = {.lex_state = 156, .external_lex_state = 2}, + [926] = {.lex_state = 158, .external_lex_state = 3}, [927] = {.lex_state = 8, .external_lex_state = 8}, - [928] = {.lex_state = 9, .external_lex_state = 2}, - [929] = {.lex_state = 8, .external_lex_state = 8}, + [928] = {.lex_state = 8, .external_lex_state = 5}, + [929] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [934] = {.lex_state = 8, .external_lex_state = 8}, + [935] = {.lex_state = 158, .external_lex_state = 3}, + [936] = {.lex_state = 22, .external_lex_state = 8}, [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}, + [940] = {.lex_state = 8, .external_lex_state = 8}, + [941] = {.lex_state = 8, .external_lex_state = 8}, + [942] = {.lex_state = 158, .external_lex_state = 2}, + [943] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [948] = {.lex_state = 158, .external_lex_state = 2}, + [949] = {.lex_state = 22, .external_lex_state = 6}, + [950] = {.lex_state = 22, .external_lex_state = 6}, [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}, + [952] = {.lex_state = 8, .external_lex_state = 7}, + [953] = {.lex_state = 159, .external_lex_state = 10}, + [954] = {.lex_state = 161, .external_lex_state = 3}, + [955] = {.lex_state = 8, .external_lex_state = 6}, + [956] = {.lex_state = 159, .external_lex_state = 10}, + [957] = {.lex_state = 161, .external_lex_state = 3}, + [958] = {.lex_state = 159, .external_lex_state = 9}, + [959] = {.lex_state = 8, .external_lex_state = 5}, + [960] = {.lex_state = 8, .external_lex_state = 2}, + [961] = {.lex_state = 8, .external_lex_state = 5}, + [962] = {.lex_state = 161, .external_lex_state = 2}, + [963] = {.lex_state = 159, .external_lex_state = 10}, + [964] = {.lex_state = 8, .external_lex_state = 5}, + [965] = {.lex_state = 8, .external_lex_state = 2}, + [966] = {.lex_state = 8, .external_lex_state = 2}, + [967] = {.lex_state = 161, .external_lex_state = 3}, + [968] = {.lex_state = 159, .external_lex_state = 10}, + [969] = {.lex_state = 8, .external_lex_state = 5}, + [970] = {.lex_state = 8, .external_lex_state = 8}, + [971] = {.lex_state = 161, .external_lex_state = 3}, + [972] = {.lex_state = 8, .external_lex_state = 2}, + [973] = {.lex_state = 159, .external_lex_state = 9}, + [974] = {.lex_state = 159, .external_lex_state = 9}, + [975] = {.lex_state = 8, .external_lex_state = 2}, [976] = {.lex_state = 8, .external_lex_state = 2}, - [977] = {.lex_state = 8, .external_lex_state = 6}, + [977] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [980] = {.lex_state = 8, .external_lex_state = 5}, + [981] = {.lex_state = 161, .external_lex_state = 2}, + [982] = {.lex_state = 161, .external_lex_state = 2}, + [983] = {.lex_state = 23, .external_lex_state = 7}, + [984] = {.lex_state = 8, .external_lex_state = 8}, + [985] = {.lex_state = 24, .external_lex_state = 2}, + [986] = {.lex_state = 8, .external_lex_state = 5}, [987] = {.lex_state = 8, .external_lex_state = 2}, - [988] = {.lex_state = 157, .external_lex_state = 2}, - [989] = {.lex_state = 159, .external_lex_state = 9}, + [988] = {.lex_state = 8, .external_lex_state = 8}, + [989] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [991] = {.lex_state = 8, .external_lex_state = 2}, + [992] = {.lex_state = 8, .external_lex_state = 2}, + [993] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [995] = {.lex_state = 159, .external_lex_state = 10}, + [996] = {.lex_state = 159, .external_lex_state = 10}, + [997] = {.lex_state = 159, .external_lex_state = 10}, + [998] = {.lex_state = 159, .external_lex_state = 10}, + [999] = {.lex_state = 159, .external_lex_state = 10}, + [1000] = {.lex_state = 8, .external_lex_state = 8}, + [1001] = {.lex_state = 8, .external_lex_state = 2}, + [1002] = {.lex_state = 8, .external_lex_state = 5}, + [1003] = {.lex_state = 8, .external_lex_state = 5}, + [1004] = {.lex_state = 8, .external_lex_state = 2}, + [1005] = {.lex_state = 161, .external_lex_state = 3}, + [1006] = {.lex_state = 8, .external_lex_state = 2}, + [1007] = {.lex_state = 8, .external_lex_state = 6}, + [1008] = {.lex_state = 159, .external_lex_state = 9}, + [1009] = {.lex_state = 159, .external_lex_state = 9}, + [1010] = {.lex_state = 8, .external_lex_state = 6}, + [1011] = {.lex_state = 161, .external_lex_state = 3}, + [1012] = {.lex_state = 161, .external_lex_state = 2}, + [1013] = {.lex_state = 159, .external_lex_state = 9}, [1014] = {.lex_state = 8, .external_lex_state = 2}, - [1015] = {.lex_state = 8, .external_lex_state = 2}, + [1015] = {.lex_state = 159, .external_lex_state = 9}, [1016] = {.lex_state = 8, .external_lex_state = 6}, - [1017] = {.lex_state = 8, .external_lex_state = 2}, + [1017] = {.lex_state = 159, .external_lex_state = 9}, [1018] = {.lex_state = 8, .external_lex_state = 2}, - [1019] = {.lex_state = 157, .external_lex_state = 2}, - [1020] = {.lex_state = 157, .external_lex_state = 2}, + [1019] = {.lex_state = 161, .external_lex_state = 3}, + [1020] = {.lex_state = 8, .external_lex_state = 8}, [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}, + [1022] = {.lex_state = 8, .external_lex_state = 2}, + [1023] = {.lex_state = 8, .external_lex_state = 8}, + [1024] = {.lex_state = 8, .external_lex_state = 2}, + [1025] = {.lex_state = 159, .external_lex_state = 9}, + [1026] = {.lex_state = 8, .external_lex_state = 2}, + [1027] = {.lex_state = 24, .external_lex_state = 2}, + [1028] = {.lex_state = 8, .external_lex_state = 2}, + [1029] = {.lex_state = 8, .external_lex_state = 2}, + [1030] = {.lex_state = 23, .external_lex_state = 7}, + [1031] = {.lex_state = 8, .external_lex_state = 2}, + [1032] = {.lex_state = 8, .external_lex_state = 2}, + [1033] = {.lex_state = 8, .external_lex_state = 2}, + [1034] = {.lex_state = 8, .external_lex_state = 2}, + [1035] = {.lex_state = 8, .external_lex_state = 2}, + [1036] = {.lex_state = 161, .external_lex_state = 3}, + [1037] = {.lex_state = 8, .external_lex_state = 2}, + [1038] = {.lex_state = 8, .external_lex_state = 2}, + [1039] = {.lex_state = 161, .external_lex_state = 2}, + [1040] = {.lex_state = 161, .external_lex_state = 3}, + [1041] = {.lex_state = 161, .external_lex_state = 2}, + [1042] = {.lex_state = 8, .external_lex_state = 2}, + [1043] = {.lex_state = 159, .external_lex_state = 10}, + [1044] = {.lex_state = 8, .external_lex_state = 7}, + [1045] = {.lex_state = 161, .external_lex_state = 2}, + [1046] = {.lex_state = 8, .external_lex_state = 2}, + [1047] = {.lex_state = 161, .external_lex_state = 2}, + [1048] = {.lex_state = 8, .external_lex_state = 2}, + [1049] = {.lex_state = 161, .external_lex_state = 2}, + [1050] = {.lex_state = 159, .external_lex_state = 10}, + [1051] = {.lex_state = 8, .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}, + [1053] = {.lex_state = 158, .external_lex_state = 2}, + [1054] = {.lex_state = 160, .external_lex_state = 2}, + [1055] = {.lex_state = 160, .external_lex_state = 3}, + [1056] = {.lex_state = 160, .external_lex_state = 3}, + [1057] = {.lex_state = 158, .external_lex_state = 3}, + [1058] = {.lex_state = 158, .external_lex_state = 2}, + [1059] = {.lex_state = 160, .external_lex_state = 2}, + [1060] = {.lex_state = 158, .external_lex_state = 3}, + [1061] = {.lex_state = 160, .external_lex_state = 3}, + [1062] = {.lex_state = 158, .external_lex_state = 3}, + [1063] = {.lex_state = 160, .external_lex_state = 3}, + [1064] = {.lex_state = 158, .external_lex_state = 2}, + [1065] = {.lex_state = 25, .external_lex_state = 6}, + [1066] = {.lex_state = 25, .external_lex_state = 6}, [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}, + [1068] = {.lex_state = 160, .external_lex_state = 2}, + [1069] = {.lex_state = 160, .external_lex_state = 3}, + [1070] = {.lex_state = 160, .external_lex_state = 3}, + [1071] = {.lex_state = 160, .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}, + [1074] = {.lex_state = 160, .external_lex_state = 2}, + [1075] = {.lex_state = 160, .external_lex_state = 2}, + [1076] = {.lex_state = 25, .external_lex_state = 2}, + [1077] = {.lex_state = 8, .external_lex_state = 2}, + [1078] = {.lex_state = 158, .external_lex_state = 2}, + [1079] = {.lex_state = 26, .external_lex_state = 6}, + [1080] = {.lex_state = 26, .external_lex_state = 8}, + [1081] = {.lex_state = 8, .external_lex_state = 2}, + [1082] = {.lex_state = 158, .external_lex_state = 2}, + [1083] = {.lex_state = 160, .external_lex_state = 2}, + [1084] = {.lex_state = 26, .external_lex_state = 7}, + [1085] = {.lex_state = 8, .external_lex_state = 2}, + [1086] = {.lex_state = 160, .external_lex_state = 3}, + [1087] = {.lex_state = 8, .external_lex_state = 2}, [1088] = {.lex_state = 158, .external_lex_state = 3}, - [1089] = {.lex_state = 158, .external_lex_state = 3}, + [1089] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1091] = {.lex_state = 26, .external_lex_state = 8}, + [1092] = {.lex_state = 8, .external_lex_state = 2}, + [1093] = {.lex_state = 8, .external_lex_state = 2}, + [1094] = {.lex_state = 8, .external_lex_state = 2}, + [1095] = {.lex_state = 160, .external_lex_state = 2}, + [1096] = {.lex_state = 8, .external_lex_state = 2}, + [1097] = {.lex_state = 158, .external_lex_state = 2}, + [1098] = {.lex_state = 160, .external_lex_state = 2}, [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}, + [1100] = {.lex_state = 8, .external_lex_state = 2}, + [1101] = {.lex_state = 8, .external_lex_state = 2}, + [1102] = {.lex_state = 160, .external_lex_state = 2}, + [1103] = {.lex_state = 158, .external_lex_state = 2}, + [1104] = {.lex_state = 158, .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}, + [1106] = {.lex_state = 160, .external_lex_state = 2}, + [1107] = {.lex_state = 158, .external_lex_state = 2}, + [1108] = {.lex_state = 26, .external_lex_state = 7}, [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}, + [1110] = {.lex_state = 160, .external_lex_state = 3}, + [1111] = {.lex_state = 8, .external_lex_state = 2}, + [1112] = {.lex_state = 158, .external_lex_state = 2}, + [1113] = {.lex_state = 158, .external_lex_state = 3}, + [1114] = {.lex_state = 8, .external_lex_state = 2}, + [1115] = {.lex_state = 8, .external_lex_state = 2}, + [1116] = {.lex_state = 8, .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}, + [1118] = {.lex_state = 158, .external_lex_state = 2}, + [1119] = {.lex_state = 26, .external_lex_state = 6}, + [1120] = {.lex_state = 160, .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}, + [1122] = {.lex_state = 160, .external_lex_state = 2}, + [1123] = {.lex_state = 160, .external_lex_state = 3}, + [1124] = {.lex_state = 160, .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}, + [1126] = {.lex_state = 160, .external_lex_state = 2}, + [1127] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1130] = {.lex_state = 160, .external_lex_state = 3}, + [1131] = {.lex_state = 158, .external_lex_state = 3}, + [1132] = {.lex_state = 160, .external_lex_state = 3}, + [1133] = {.lex_state = 158, .external_lex_state = 3}, + [1134] = {.lex_state = 25, .external_lex_state = 2}, + [1135] = {.lex_state = 160, .external_lex_state = 3}, + [1136] = {.lex_state = 158, .external_lex_state = 2}, + [1137] = {.lex_state = 160, .external_lex_state = 3}, + [1138] = {.lex_state = 158, .external_lex_state = 2}, + [1139] = {.lex_state = 8, .external_lex_state = 2}, + [1140] = {.lex_state = 158, .external_lex_state = 3}, + [1141] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1143] = {.lex_state = 158, .external_lex_state = 3}, + [1144] = {.lex_state = 158, .external_lex_state = 3}, + [1145] = {.lex_state = 158, .external_lex_state = 3}, + [1146] = {.lex_state = 158, .external_lex_state = 3}, + [1147] = {.lex_state = 158, .external_lex_state = 3}, + [1148] = {.lex_state = 158, .external_lex_state = 3}, + [1149] = {.lex_state = 158, .external_lex_state = 2}, + [1150] = {.lex_state = 158, .external_lex_state = 2}, + [1151] = {.lex_state = 158, .external_lex_state = 2}, + [1152] = {.lex_state = 158, .external_lex_state = 3}, + [1153] = {.lex_state = 158, .external_lex_state = 3}, + [1154] = {.lex_state = 158, .external_lex_state = 3}, + [1155] = {.lex_state = 158, .external_lex_state = 3}, + [1156] = {.lex_state = 158, .external_lex_state = 3}, + [1157] = {.lex_state = 158, .external_lex_state = 3}, + [1158] = {.lex_state = 158, .external_lex_state = 3}, + [1159] = {.lex_state = 158, .external_lex_state = 3}, + [1160] = {.lex_state = 158, .external_lex_state = 3}, + [1161] = {.lex_state = 158, .external_lex_state = 3}, + [1162] = {.lex_state = 158, .external_lex_state = 3}, + [1163] = {.lex_state = 158, .external_lex_state = 3}, + [1164] = {.lex_state = 158, .external_lex_state = 3}, + [1165] = {.lex_state = 158, .external_lex_state = 3}, + [1166] = {.lex_state = 158, .external_lex_state = 3}, + [1167] = {.lex_state = 158, .external_lex_state = 3}, + [1168] = {.lex_state = 158, .external_lex_state = 3}, + [1169] = {.lex_state = 158, .external_lex_state = 3}, + [1170] = {.lex_state = 158, .external_lex_state = 3}, [1171] = {.lex_state = 158, .external_lex_state = 3}, - [1172] = {.lex_state = 8, .external_lex_state = 2}, - [1173] = {.lex_state = 8, .external_lex_state = 2}, + [1172] = {.lex_state = 158, .external_lex_state = 3}, + [1173] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1175] = {.lex_state = 158, .external_lex_state = 3}, + [1176] = {.lex_state = 158, .external_lex_state = 3}, + [1177] = {.lex_state = 158, .external_lex_state = 3}, + [1178] = {.lex_state = 158, .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}, + [1180] = {.lex_state = 8, .external_lex_state = 2}, + [1181] = {.lex_state = 158, .external_lex_state = 2}, + [1182] = {.lex_state = 158, .external_lex_state = 2}, + [1183] = {.lex_state = 158, .external_lex_state = 3}, + [1184] = {.lex_state = 158, .external_lex_state = 3}, + [1185] = {.lex_state = 158, .external_lex_state = 3}, + [1186] = {.lex_state = 158, .external_lex_state = 3}, + [1187] = {.lex_state = 158, .external_lex_state = 3}, + [1188] = {.lex_state = 158, .external_lex_state = 3}, + [1189] = {.lex_state = 8, .external_lex_state = 2}, + [1190] = {.lex_state = 158, .external_lex_state = 3}, + [1191] = {.lex_state = 158, .external_lex_state = 3}, + [1192] = {.lex_state = 158, .external_lex_state = 3}, + [1193] = {.lex_state = 158, .external_lex_state = 3}, + [1194] = {.lex_state = 158, .external_lex_state = 3}, + [1195] = {.lex_state = 158, .external_lex_state = 3}, + [1196] = {.lex_state = 158, .external_lex_state = 3}, + [1197] = {.lex_state = 158, .external_lex_state = 3}, + [1198] = {.lex_state = 158, .external_lex_state = 3}, + [1199] = {.lex_state = 158, .external_lex_state = 3}, + [1200] = {.lex_state = 158, .external_lex_state = 3}, + [1201] = {.lex_state = 158, .external_lex_state = 3}, + [1202] = {.lex_state = 158, .external_lex_state = 3}, + [1203] = {.lex_state = 158, .external_lex_state = 3}, + [1204] = {.lex_state = 158, .external_lex_state = 3}, + [1205] = {.lex_state = 158, .external_lex_state = 3}, + [1206] = {.lex_state = 158, .external_lex_state = 3}, + [1207] = {.lex_state = 158, .external_lex_state = 3}, + [1208] = {.lex_state = 158, .external_lex_state = 2}, + [1209] = {.lex_state = 158, .external_lex_state = 3}, + [1210] = {.lex_state = 158, .external_lex_state = 3}, + [1211] = {.lex_state = 158, .external_lex_state = 3}, + [1212] = {.lex_state = 158, .external_lex_state = 3}, + [1213] = {.lex_state = 158, .external_lex_state = 3}, + [1214] = {.lex_state = 158, .external_lex_state = 3}, + [1215] = {.lex_state = 158, .external_lex_state = 3}, + [1216] = {.lex_state = 158, .external_lex_state = 3}, + [1217] = {.lex_state = 158, .external_lex_state = 3}, + [1218] = {.lex_state = 158, .external_lex_state = 3}, + [1219] = {.lex_state = 158, .external_lex_state = 3}, + [1220] = {.lex_state = 158, .external_lex_state = 3}, + [1221] = {.lex_state = 158, .external_lex_state = 3}, + [1222] = {.lex_state = 158, .external_lex_state = 3}, + [1223] = {.lex_state = 158, .external_lex_state = 3}, + [1224] = {.lex_state = 158, .external_lex_state = 3}, + [1225] = {.lex_state = 158, .external_lex_state = 3}, + [1226] = {.lex_state = 158, .external_lex_state = 3}, + [1227] = {.lex_state = 158, .external_lex_state = 3}, + [1228] = {.lex_state = 158, .external_lex_state = 3}, + [1229] = {.lex_state = 158, .external_lex_state = 3}, + [1230] = {.lex_state = 158, .external_lex_state = 3}, + [1231] = {.lex_state = 158, .external_lex_state = 3}, + [1232] = {.lex_state = 158, .external_lex_state = 3}, + [1233] = {.lex_state = 158, .external_lex_state = 3}, + [1234] = {.lex_state = 158, .external_lex_state = 3}, + [1235] = {.lex_state = 158, .external_lex_state = 3}, + [1236] = {.lex_state = 158, .external_lex_state = 3}, + [1237] = {.lex_state = 158, .external_lex_state = 3}, + [1238] = {.lex_state = 158, .external_lex_state = 3}, + [1239] = {.lex_state = 158, .external_lex_state = 3}, + [1240] = {.lex_state = 158, .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}, + [1246] = {.lex_state = 8, .external_lex_state = 2}, + [1247] = {.lex_state = 158, .external_lex_state = 2}, + [1248] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1250] = {.lex_state = 158, .external_lex_state = 2}, + [1251] = {.lex_state = 8, .external_lex_state = 2}, + [1252] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1254] = {.lex_state = 23, .external_lex_state = 6}, + [1255] = {.lex_state = 8, .external_lex_state = 2}, + [1256] = {.lex_state = 158, .external_lex_state = 3}, + [1257] = {.lex_state = 158, .external_lex_state = 3}, + [1258] = {.lex_state = 158, .external_lex_state = 3}, + [1259] = {.lex_state = 8, .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}, + [1261] = {.lex_state = 8, .external_lex_state = 2}, + [1262] = {.lex_state = 158, .external_lex_state = 3}, + [1263] = {.lex_state = 158, .external_lex_state = 3}, + [1264] = {.lex_state = 158, .external_lex_state = 3}, + [1265] = {.lex_state = 158, .external_lex_state = 3}, + [1266] = {.lex_state = 158, .external_lex_state = 3}, + [1267] = {.lex_state = 158, .external_lex_state = 3}, + [1268] = {.lex_state = 158, .external_lex_state = 3}, + [1269] = {.lex_state = 158, .external_lex_state = 3}, + [1270] = {.lex_state = 8, .external_lex_state = 2}, + [1271] = {.lex_state = 158, .external_lex_state = 3}, + [1272] = {.lex_state = 158, .external_lex_state = 3}, + [1273] = {.lex_state = 158, .external_lex_state = 3}, + [1274] = {.lex_state = 158, .external_lex_state = 3}, + [1275] = {.lex_state = 158, .external_lex_state = 3}, + [1276] = {.lex_state = 158, .external_lex_state = 3}, + [1277] = {.lex_state = 158, .external_lex_state = 3}, + [1278] = {.lex_state = 158, .external_lex_state = 3}, + [1279] = {.lex_state = 158, .external_lex_state = 3}, + [1280] = {.lex_state = 158, .external_lex_state = 3}, + [1281] = {.lex_state = 158, .external_lex_state = 3}, + [1282] = {.lex_state = 158, .external_lex_state = 3}, + [1283] = {.lex_state = 158, .external_lex_state = 3}, + [1284] = {.lex_state = 158, .external_lex_state = 3}, + [1285] = {.lex_state = 158, .external_lex_state = 3}, + [1286] = {.lex_state = 158, .external_lex_state = 3}, + [1287] = {.lex_state = 158, .external_lex_state = 3}, + [1288] = {.lex_state = 158, .external_lex_state = 3}, + [1289] = {.lex_state = 158, .external_lex_state = 3}, + [1290] = {.lex_state = 158, .external_lex_state = 3}, + [1291] = {.lex_state = 158, .external_lex_state = 3}, + [1292] = {.lex_state = 158, .external_lex_state = 3}, + [1293] = {.lex_state = 158, .external_lex_state = 3}, + [1294] = {.lex_state = 158, .external_lex_state = 3}, + [1295] = {.lex_state = 158, .external_lex_state = 3}, + [1296] = {.lex_state = 158, .external_lex_state = 3}, + [1297] = {.lex_state = 158, .external_lex_state = 3}, + [1298] = {.lex_state = 158, .external_lex_state = 3}, + [1299] = {.lex_state = 158, .external_lex_state = 3}, + [1300] = {.lex_state = 158, .external_lex_state = 3}, + [1301] = {.lex_state = 158, .external_lex_state = 3}, + [1302] = {.lex_state = 158, .external_lex_state = 2}, + [1303] = {.lex_state = 158, .external_lex_state = 3}, + [1304] = {.lex_state = 158, .external_lex_state = 3}, + [1305] = {.lex_state = 158, .external_lex_state = 3}, + [1306] = {.lex_state = 158, .external_lex_state = 3}, + [1307] = {.lex_state = 158, .external_lex_state = 3}, + [1308] = {.lex_state = 158, .external_lex_state = 3}, + [1309] = {.lex_state = 158, .external_lex_state = 3}, + [1310] = {.lex_state = 158, .external_lex_state = 3}, + [1311] = {.lex_state = 158, .external_lex_state = 3}, + [1312] = {.lex_state = 158, .external_lex_state = 3}, + [1313] = {.lex_state = 158, .external_lex_state = 3}, + [1314] = {.lex_state = 158, .external_lex_state = 3}, + [1315] = {.lex_state = 158, .external_lex_state = 3}, + [1316] = {.lex_state = 158, .external_lex_state = 3}, + [1317] = {.lex_state = 158, .external_lex_state = 3}, + [1318] = {.lex_state = 158, .external_lex_state = 3}, + [1319] = {.lex_state = 158, .external_lex_state = 3}, + [1320] = {.lex_state = 158, .external_lex_state = 3}, + [1321] = {.lex_state = 158, .external_lex_state = 3}, + [1322] = {.lex_state = 158, .external_lex_state = 3}, + [1323] = {.lex_state = 158, .external_lex_state = 2}, + [1324] = {.lex_state = 8, .external_lex_state = 2}, + [1325] = {.lex_state = 8, .external_lex_state = 2}, + [1326] = {.lex_state = 8, .external_lex_state = 2}, + [1327] = {.lex_state = 8, .external_lex_state = 2}, + [1328] = {.lex_state = 8, .external_lex_state = 2}, + [1329] = {.lex_state = 8, .external_lex_state = 2}, + [1330] = {.lex_state = 8, .external_lex_state = 2}, + [1331] = {.lex_state = 158, .external_lex_state = 2}, + [1332] = {.lex_state = 8, .external_lex_state = 2}, + [1333] = {.lex_state = 8, .external_lex_state = 2}, + [1334] = {.lex_state = 158, .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}, + [1337] = {.lex_state = 158, .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}, @@ -18376,7 +18646,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1349] = {.lex_state = 27, .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}, @@ -18387,7 +18657,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1360] = {.lex_state = 158, .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}, @@ -18401,7 +18671,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1374] = {.lex_state = 158, .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}, @@ -18409,20 +18679,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1382] = {.lex_state = 158, .external_lex_state = 2}, + [1383] = {.lex_state = 158, .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}, + [1386] = {.lex_state = 158, .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}, + [1388] = {.lex_state = 158, .external_lex_state = 2}, + [1389] = {.lex_state = 158, .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}, + [1395] = {.lex_state = 158, .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}, @@ -18436,182 +18706,182 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1409] = {.lex_state = 158, .external_lex_state = 2}, + [1410] = {.lex_state = 27, .external_lex_state = 2}, + [1411] = {.lex_state = 158, .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}, + [1413] = {.lex_state = 158, .external_lex_state = 2}, + [1414] = {.lex_state = 8, .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}, + [1417] = {.lex_state = 8, .external_lex_state = 2}, + [1418] = {.lex_state = 8, .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}, + [1420] = {.lex_state = 158, .external_lex_state = 2}, + [1421] = {.lex_state = 158, .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}, + [1423] = {.lex_state = 158, .external_lex_state = 2}, + [1424] = {.lex_state = 8, .external_lex_state = 2}, + [1425] = {.lex_state = 8, .external_lex_state = 2}, + [1426] = {.lex_state = 8, .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}, + [1428] = {.lex_state = 8, .external_lex_state = 2}, + [1429] = {.lex_state = 8, .external_lex_state = 2}, + [1430] = {.lex_state = 8, .external_lex_state = 2}, + [1431] = {.lex_state = 8, .external_lex_state = 2}, + [1432] = {.lex_state = 8, .external_lex_state = 2}, + [1433] = {.lex_state = 8, .external_lex_state = 2}, + [1434] = {.lex_state = 158, .external_lex_state = 2}, + [1435] = {.lex_state = 8, .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}, + [1437] = {.lex_state = 8, .external_lex_state = 2}, + [1438] = {.lex_state = 8, .external_lex_state = 2}, + [1439] = {.lex_state = 8, .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}, + [1441] = {.lex_state = 8, .external_lex_state = 2}, + [1442] = {.lex_state = 8, .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}, + [1445] = {.lex_state = 158, .external_lex_state = 2}, + [1446] = {.lex_state = 158, .external_lex_state = 2}, + [1447] = {.lex_state = 158, .external_lex_state = 2}, + [1448] = {.lex_state = 158, .external_lex_state = 2}, + [1449] = {.lex_state = 158, .external_lex_state = 2}, + [1450] = {.lex_state = 23, .external_lex_state = 6}, + [1451] = {.lex_state = 8, .external_lex_state = 2}, + [1452] = {.lex_state = 158, .external_lex_state = 2}, + [1453] = {.lex_state = 158, .external_lex_state = 2}, + [1454] = {.lex_state = 8, .external_lex_state = 2}, + [1455] = {.lex_state = 158, .external_lex_state = 2}, + [1456] = {.lex_state = 158, .external_lex_state = 2}, + [1457] = {.lex_state = 158, .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}, + [1459] = {.lex_state = 8, .external_lex_state = 2}, + [1460] = {.lex_state = 158, .external_lex_state = 2}, + [1461] = {.lex_state = 158, .external_lex_state = 2}, + [1462] = {.lex_state = 158, .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}, + [1464] = {.lex_state = 8, .external_lex_state = 2}, + [1465] = {.lex_state = 158, .external_lex_state = 2}, + [1466] = {.lex_state = 8, .external_lex_state = 2}, + [1467] = {.lex_state = 158, .external_lex_state = 2}, + [1468] = {.lex_state = 8, .external_lex_state = 2}, + [1469] = {.lex_state = 8, .external_lex_state = 2}, + [1470] = {.lex_state = 8, .external_lex_state = 2}, + [1471] = {.lex_state = 8, .external_lex_state = 2}, + [1472] = {.lex_state = 8, .external_lex_state = 2}, + [1473] = {.lex_state = 8, .external_lex_state = 2}, + [1474] = {.lex_state = 158, .external_lex_state = 2}, + [1475] = {.lex_state = 158, .external_lex_state = 2}, + [1476] = {.lex_state = 8, .external_lex_state = 2}, + [1477] = {.lex_state = 8, .external_lex_state = 2}, + [1478] = {.lex_state = 8, .external_lex_state = 2}, + [1479] = {.lex_state = 8, .external_lex_state = 2}, + [1480] = {.lex_state = 8, .external_lex_state = 2}, + [1481] = {.lex_state = 158, .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}, + [1483] = {.lex_state = 8, .external_lex_state = 2}, + [1484] = {.lex_state = 158, .external_lex_state = 2}, + [1485] = {.lex_state = 8, .external_lex_state = 2}, + [1486] = {.lex_state = 8, .external_lex_state = 2}, + [1487] = {.lex_state = 158, .external_lex_state = 2}, + [1488] = {.lex_state = 8, .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}, + [1490] = {.lex_state = 158, .external_lex_state = 2}, + [1491] = {.lex_state = 158, .external_lex_state = 2}, + [1492] = {.lex_state = 158, .external_lex_state = 2}, + [1493] = {.lex_state = 158, .external_lex_state = 2}, + [1494] = {.lex_state = 158, .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}, + [1496] = {.lex_state = 8, .external_lex_state = 2}, + [1497] = {.lex_state = 158, .external_lex_state = 2}, + [1498] = {.lex_state = 158, .external_lex_state = 2}, + [1499] = {.lex_state = 158, .external_lex_state = 2}, + [1500] = {.lex_state = 8, .external_lex_state = 2}, + [1501] = {.lex_state = 158, .external_lex_state = 2}, + [1502] = {.lex_state = 158, .external_lex_state = 2}, + [1503] = {.lex_state = 158, .external_lex_state = 2}, + [1504] = {.lex_state = 8, .external_lex_state = 2}, + [1505] = {.lex_state = 158, .external_lex_state = 2}, + [1506] = {.lex_state = 158, .external_lex_state = 2}, + [1507] = {.lex_state = 158, .external_lex_state = 2}, + [1508] = {.lex_state = 8, .external_lex_state = 2}, + [1509] = {.lex_state = 8, .external_lex_state = 2}, + [1510] = {.lex_state = 158, .external_lex_state = 2}, + [1511] = {.lex_state = 8, .external_lex_state = 2}, + [1512] = {.lex_state = 158, .external_lex_state = 2}, + [1513] = {.lex_state = 158, .external_lex_state = 2}, + [1514] = {.lex_state = 158, .external_lex_state = 2}, + [1515] = {.lex_state = 158, .external_lex_state = 2}, + [1516] = {.lex_state = 158, .external_lex_state = 2}, + [1517] = {.lex_state = 8, .external_lex_state = 2}, + [1518] = {.lex_state = 158, .external_lex_state = 2}, + [1519] = {.lex_state = 158, .external_lex_state = 2}, + [1520] = {.lex_state = 158, .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}, + [1523] = {.lex_state = 158, .external_lex_state = 2}, + [1524] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1527] = {.lex_state = 158, .external_lex_state = 2}, + [1528] = {.lex_state = 158, .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}, + [1530] = {.lex_state = 158, .external_lex_state = 2}, + [1531] = {.lex_state = 158, .external_lex_state = 2}, + [1532] = {.lex_state = 158, .external_lex_state = 2}, + [1533] = {.lex_state = 158, .external_lex_state = 2}, + [1534] = {.lex_state = 158, .external_lex_state = 2}, + [1535] = {.lex_state = 158, .external_lex_state = 2}, + [1536] = {.lex_state = 158, .external_lex_state = 2}, + [1537] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1540] = {.lex_state = 158, .external_lex_state = 2}, + [1541] = {.lex_state = 158, .external_lex_state = 2}, + [1542] = {.lex_state = 158, .external_lex_state = 2}, + [1543] = {.lex_state = 158, .external_lex_state = 2}, + [1544] = {.lex_state = 158, .external_lex_state = 2}, + [1545] = {.lex_state = 158, .external_lex_state = 2}, + [1546] = {.lex_state = 158, .external_lex_state = 2}, + [1547] = {.lex_state = 158, .external_lex_state = 2}, + [1548] = {.lex_state = 158, .external_lex_state = 2}, + [1549] = {.lex_state = 158, .external_lex_state = 2}, + [1550] = {.lex_state = 158, .external_lex_state = 2}, + [1551] = {.lex_state = 158, .external_lex_state = 2}, + [1552] = {.lex_state = 158, .external_lex_state = 2}, + [1553] = {.lex_state = 158, .external_lex_state = 2}, + [1554] = {.lex_state = 158, .external_lex_state = 2}, + [1555] = {.lex_state = 158, .external_lex_state = 2}, + [1556] = {.lex_state = 158, .external_lex_state = 2}, + [1557] = {.lex_state = 158, .external_lex_state = 2}, + [1558] = {.lex_state = 158, .external_lex_state = 2}, + [1559] = {.lex_state = 158, .external_lex_state = 2}, + [1560] = {.lex_state = 158, .external_lex_state = 2}, + [1561] = {.lex_state = 158, .external_lex_state = 2}, + [1562] = {.lex_state = 158, .external_lex_state = 2}, + [1563] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1565] = {.lex_state = 158, .external_lex_state = 2}, + [1566] = {.lex_state = 158, .external_lex_state = 2}, + [1567] = {.lex_state = 158, .external_lex_state = 2}, + [1568] = {.lex_state = 8, .external_lex_state = 2}, + [1569] = {.lex_state = 158, .external_lex_state = 2}, + [1570] = {.lex_state = 158, .external_lex_state = 2}, + [1571] = {.lex_state = 158, .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}, + [1573] = {.lex_state = 8, .external_lex_state = 2}, + [1574] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1577] = {.lex_state = 8, .external_lex_state = 2}, + [1578] = {.lex_state = 8, .external_lex_state = 2}, [1579] = {.lex_state = 8, .external_lex_state = 2}, - [1580] = {.lex_state = 156, .external_lex_state = 3}, + [1580] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1584] = {.lex_state = 8, .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}, @@ -18621,226 +18891,226 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1594] = {.lex_state = 8, .external_lex_state = 2}, + [1595] = {.lex_state = 8, .external_lex_state = 2}, + [1596] = {.lex_state = 8, .external_lex_state = 2}, + [1597] = {.lex_state = 8, .external_lex_state = 2}, + [1598] = {.lex_state = 8, .external_lex_state = 2}, [1599] = {.lex_state = 8, .external_lex_state = 2}, - [1600] = {.lex_state = 156, .external_lex_state = 3}, + [1600] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1604] = {.lex_state = 8, .external_lex_state = 2}, + [1605] = {.lex_state = 8, .external_lex_state = 2}, + [1606] = {.lex_state = 8, .external_lex_state = 2}, + [1607] = {.lex_state = 8, .external_lex_state = 2}, + [1608] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1612] = {.lex_state = 8, .external_lex_state = 2}, + [1613] = {.lex_state = 8, .external_lex_state = 2}, [1614] = {.lex_state = 8, .external_lex_state = 2}, - [1615] = {.lex_state = 156, .external_lex_state = 3}, + [1615] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1617] = {.lex_state = 8, .external_lex_state = 2}, + [1618] = {.lex_state = 8, .external_lex_state = 2}, + [1619] = {.lex_state = 8, .external_lex_state = 2}, + [1620] = {.lex_state = 8, .external_lex_state = 2}, + [1621] = {.lex_state = 8, .external_lex_state = 2}, + [1622] = {.lex_state = 8, .external_lex_state = 2}, + [1623] = {.lex_state = 8, .external_lex_state = 2}, + [1624] = {.lex_state = 8, .external_lex_state = 2}, + [1625] = {.lex_state = 8, .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}, + [1627] = {.lex_state = 8, .external_lex_state = 2}, + [1628] = {.lex_state = 8, .external_lex_state = 2}, + [1629] = {.lex_state = 8, .external_lex_state = 2}, + [1630] = {.lex_state = 8, .external_lex_state = 2}, + [1631] = {.lex_state = 8, .external_lex_state = 2}, + [1632] = {.lex_state = 8, .external_lex_state = 2}, + [1633] = {.lex_state = 8, .external_lex_state = 2}, + [1634] = {.lex_state = 8, .external_lex_state = 2}, + [1635] = {.lex_state = 8, .external_lex_state = 2}, + [1636] = {.lex_state = 8, .external_lex_state = 2}, + [1637] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1639] = {.lex_state = 8, .external_lex_state = 2}, + [1640] = {.lex_state = 8, .external_lex_state = 2}, + [1641] = {.lex_state = 8, .external_lex_state = 2}, [1642] = {.lex_state = 8, .external_lex_state = 2}, - [1643] = {.lex_state = 156, .external_lex_state = 3}, + [1643] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1647] = {.lex_state = 8, .external_lex_state = 2}, + [1648] = {.lex_state = 8, .external_lex_state = 2}, + [1649] = {.lex_state = 8, .external_lex_state = 2}, + [1650] = {.lex_state = 8, .external_lex_state = 2}, + [1651] = {.lex_state = 8, .external_lex_state = 2}, + [1652] = {.lex_state = 8, .external_lex_state = 2}, + [1653] = {.lex_state = 8, .external_lex_state = 2}, + [1654] = {.lex_state = 8, .external_lex_state = 2}, + [1655] = {.lex_state = 8, .external_lex_state = 2}, + [1656] = {.lex_state = 8, .external_lex_state = 2}, + [1657] = {.lex_state = 8, .external_lex_state = 2}, + [1658] = {.lex_state = 8, .external_lex_state = 2}, + [1659] = {.lex_state = 8, .external_lex_state = 2}, + [1660] = {.lex_state = 8, .external_lex_state = 2}, + [1661] = {.lex_state = 8, .external_lex_state = 2}, + [1662] = {.lex_state = 8, .external_lex_state = 2}, + [1663] = {.lex_state = 8, .external_lex_state = 2}, + [1664] = {.lex_state = 158, .external_lex_state = 2}, + [1665] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1667] = {.lex_state = 158, .external_lex_state = 2}, + [1668] = {.lex_state = 158, .external_lex_state = 2}, + [1669] = {.lex_state = 158, .external_lex_state = 2}, + [1670] = {.lex_state = 158, .external_lex_state = 2}, + [1671] = {.lex_state = 158, .external_lex_state = 2}, + [1672] = {.lex_state = 158, .external_lex_state = 2}, + [1673] = {.lex_state = 158, .external_lex_state = 2}, + [1674] = {.lex_state = 8, .external_lex_state = 2}, + [1675] = {.lex_state = 8, .external_lex_state = 2}, + [1676] = {.lex_state = 158, .external_lex_state = 2}, + [1677] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1681] = {.lex_state = 158, .external_lex_state = 2}, + [1682] = {.lex_state = 158, .external_lex_state = 2}, + [1683] = {.lex_state = 158, .external_lex_state = 2}, + [1684] = {.lex_state = 158, .external_lex_state = 2}, + [1685] = {.lex_state = 158, .external_lex_state = 2}, + [1686] = {.lex_state = 158, .external_lex_state = 2}, + [1687] = {.lex_state = 158, .external_lex_state = 2}, + [1688] = {.lex_state = 158, .external_lex_state = 2}, + [1689] = {.lex_state = 158, .external_lex_state = 2}, + [1690] = {.lex_state = 158, .external_lex_state = 2}, + [1691] = {.lex_state = 158, .external_lex_state = 2}, + [1692] = {.lex_state = 158, .external_lex_state = 2}, + [1693] = {.lex_state = 158, .external_lex_state = 2}, + [1694] = {.lex_state = 158, .external_lex_state = 2}, + [1695] = {.lex_state = 158, .external_lex_state = 2}, + [1696] = {.lex_state = 158, .external_lex_state = 2}, + [1697] = {.lex_state = 158, .external_lex_state = 2}, + [1698] = {.lex_state = 158, .external_lex_state = 2}, + [1699] = {.lex_state = 158, .external_lex_state = 2}, + [1700] = {.lex_state = 158, .external_lex_state = 2}, + [1701] = {.lex_state = 158, .external_lex_state = 2}, + [1702] = {.lex_state = 158, .external_lex_state = 2}, + [1703] = {.lex_state = 158, .external_lex_state = 2}, + [1704] = {.lex_state = 8, .external_lex_state = 2}, + [1705] = {.lex_state = 158, .external_lex_state = 2}, + [1706] = {.lex_state = 158, .external_lex_state = 2}, + [1707] = {.lex_state = 158, .external_lex_state = 2}, + [1708] = {.lex_state = 158, .external_lex_state = 2}, + [1709] = {.lex_state = 158, .external_lex_state = 2}, + [1710] = {.lex_state = 158, .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}, + [1712] = {.lex_state = 8, .external_lex_state = 2}, + [1713] = {.lex_state = 158, .external_lex_state = 2}, + [1714] = {.lex_state = 8, .external_lex_state = 2}, + [1715] = {.lex_state = 8, .external_lex_state = 2}, + [1716] = {.lex_state = 158, .external_lex_state = 2}, + [1717] = {.lex_state = 158, .external_lex_state = 2}, + [1718] = {.lex_state = 158, .external_lex_state = 2}, + [1719] = {.lex_state = 158, .external_lex_state = 2}, + [1720] = {.lex_state = 158, .external_lex_state = 2}, + [1721] = {.lex_state = 158, .external_lex_state = 2}, + [1722] = {.lex_state = 158, .external_lex_state = 2}, + [1723] = {.lex_state = 158, .external_lex_state = 2}, + [1724] = {.lex_state = 158, .external_lex_state = 2}, + [1725] = {.lex_state = 158, .external_lex_state = 2}, + [1726] = {.lex_state = 158, .external_lex_state = 2}, + [1727] = {.lex_state = 158, .external_lex_state = 2}, + [1728] = {.lex_state = 158, .external_lex_state = 2}, + [1729] = {.lex_state = 158, .external_lex_state = 2}, + [1730] = {.lex_state = 158, .external_lex_state = 2}, + [1731] = {.lex_state = 158, .external_lex_state = 2}, + [1732] = {.lex_state = 158, .external_lex_state = 2}, + [1733] = {.lex_state = 158, .external_lex_state = 2}, + [1734] = {.lex_state = 158, .external_lex_state = 2}, + [1735] = {.lex_state = 158, .external_lex_state = 2}, + [1736] = {.lex_state = 158, .external_lex_state = 2}, + [1737] = {.lex_state = 158, .external_lex_state = 2}, + [1738] = {.lex_state = 8, .external_lex_state = 2}, + [1739] = {.lex_state = 158, .external_lex_state = 2}, + [1740] = {.lex_state = 158, .external_lex_state = 2}, + [1741] = {.lex_state = 158, .external_lex_state = 2}, + [1742] = {.lex_state = 158, .external_lex_state = 2}, + [1743] = {.lex_state = 158, .external_lex_state = 2}, + [1744] = {.lex_state = 158, .external_lex_state = 2}, + [1745] = {.lex_state = 158, .external_lex_state = 2}, + [1746] = {.lex_state = 158, .external_lex_state = 2}, + [1747] = {.lex_state = 158, .external_lex_state = 2}, + [1748] = {.lex_state = 8, .external_lex_state = 2}, + [1749] = {.lex_state = 8, .external_lex_state = 2}, + [1750] = {.lex_state = 8, .external_lex_state = 2}, + [1751] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1753] = {.lex_state = 8, .external_lex_state = 2}, + [1754] = {.lex_state = 8, .external_lex_state = 2}, + [1755] = {.lex_state = 8, .external_lex_state = 2}, + [1756] = {.lex_state = 8, .external_lex_state = 2}, + [1757] = {.lex_state = 8, .external_lex_state = 2}, + [1758] = {.lex_state = 8, .external_lex_state = 2}, + [1759] = {.lex_state = 8, .external_lex_state = 2}, + [1760] = {.lex_state = 8, .external_lex_state = 2}, + [1761] = {.lex_state = 8, .external_lex_state = 2}, + [1762] = {.lex_state = 8, .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}, + [1766] = {.lex_state = 8, .external_lex_state = 2}, + [1767] = {.lex_state = 8, .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}, + [1769] = {.lex_state = 8, .external_lex_state = 2}, + [1770] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1772] = {.lex_state = 8, .external_lex_state = 2}, + [1773] = {.lex_state = 8, .external_lex_state = 2}, + [1774] = {.lex_state = 8, .external_lex_state = 2}, + [1775] = {.lex_state = 158, .external_lex_state = 2}, + [1776] = {.lex_state = 158, .external_lex_state = 2}, + [1777] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1779] = {.lex_state = 8, .external_lex_state = 2}, + [1780] = {.lex_state = 158, .external_lex_state = 2}, + [1781] = {.lex_state = 158, .external_lex_state = 2}, + [1782] = {.lex_state = 158, .external_lex_state = 2}, + [1783] = {.lex_state = 8, .external_lex_state = 2}, + [1784] = {.lex_state = 158, .external_lex_state = 2}, + [1785] = {.lex_state = 158, .external_lex_state = 2}, + [1786] = {.lex_state = 158, .external_lex_state = 2}, + [1787] = {.lex_state = 158, .external_lex_state = 2}, + [1788] = {.lex_state = 8, .external_lex_state = 2}, + [1789] = {.lex_state = 8, .external_lex_state = 2}, + [1790] = {.lex_state = 8, .external_lex_state = 2}, + [1791] = {.lex_state = 8, .external_lex_state = 2}, + [1792] = {.lex_state = 158, .external_lex_state = 3}, + [1793] = {.lex_state = 8, .external_lex_state = 2}, + [1794] = {.lex_state = 8, .external_lex_state = 2}, [1795] = {.lex_state = 8, .external_lex_state = 2}, [1796] = {.lex_state = 8, .external_lex_state = 2}, - [1797] = {.lex_state = 156, .external_lex_state = 3}, + [1797] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1799] = {.lex_state = 8, .external_lex_state = 2}, + [1800] = {.lex_state = 158, .external_lex_state = 3}, + [1801] = {.lex_state = 8, .external_lex_state = 2}, + [1802] = {.lex_state = 8, .external_lex_state = 2}, + [1803] = {.lex_state = 158, .external_lex_state = 3}, + [1804] = {.lex_state = 8, .external_lex_state = 2}, [1805] = {.lex_state = 8, .external_lex_state = 2}, - [1806] = {.lex_state = 156, .external_lex_state = 3}, - [1807] = {.lex_state = 156, .external_lex_state = 3}, + [1806] = {.lex_state = 8, .external_lex_state = 2}, + [1807] = {.lex_state = 8, .external_lex_state = 2}, [1808] = {.lex_state = 8, .external_lex_state = 2}, [1809] = {.lex_state = 8, .external_lex_state = 2}, - [1810] = {.lex_state = 156, .external_lex_state = 3}, + [1810] = {.lex_state = 8, .external_lex_state = 2}, [1811] = {.lex_state = 8, .external_lex_state = 2}, - [1812] = {.lex_state = 156, .external_lex_state = 3}, - [1813] = {.lex_state = 156, .external_lex_state = 2}, + [1812] = {.lex_state = 8, .external_lex_state = 2}, + [1813] = {.lex_state = 8, .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}, @@ -18848,52 +19118,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1821] = {.lex_state = 158, .external_lex_state = 3}, [1822] = {.lex_state = 8, .external_lex_state = 2}, - [1823] = {.lex_state = 156, .external_lex_state = 2}, + [1823] = {.lex_state = 8, .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}, + [1826] = {.lex_state = 158, .external_lex_state = 3}, + [1827] = {.lex_state = 158, .external_lex_state = 3}, + [1828] = {.lex_state = 158, .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}, + [1830] = {.lex_state = 158, .external_lex_state = 2}, + [1831] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1834] = {.lex_state = 158, .external_lex_state = 3}, + [1835] = {.lex_state = 158, .external_lex_state = 2}, [1836] = {.lex_state = 8, .external_lex_state = 2}, - [1837] = {.lex_state = 8, .external_lex_state = 2}, + [1837] = {.lex_state = 158, .external_lex_state = 2}, [1838] = {.lex_state = 8, .external_lex_state = 2}, - [1839] = {.lex_state = 156, .external_lex_state = 3}, + [1839] = {.lex_state = 158, .external_lex_state = 2}, [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}, + [1842] = {.lex_state = 158, .external_lex_state = 3}, + [1843] = {.lex_state = 158, .external_lex_state = 3}, + [1844] = {.lex_state = 158, .external_lex_state = 3}, + [1845] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1848] = {.lex_state = 158, .external_lex_state = 3}, + [1849] = {.lex_state = 158, .external_lex_state = 3}, + [1850] = {.lex_state = 158, .external_lex_state = 3}, [1851] = {.lex_state = 8, .external_lex_state = 2}, - [1852] = {.lex_state = 8, .external_lex_state = 2}, - [1853] = {.lex_state = 8, .external_lex_state = 2}, + [1852] = {.lex_state = 158, .external_lex_state = 3}, + [1853] = {.lex_state = 158, .external_lex_state = 3}, [1854] = {.lex_state = 8, .external_lex_state = 2}, [1855] = {.lex_state = 8, .external_lex_state = 2}, - [1856] = {.lex_state = 8, .external_lex_state = 2}, + [1856] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1858] = {.lex_state = 158, .external_lex_state = 3}, + [1859] = {.lex_state = 158, .external_lex_state = 3}, + [1860] = {.lex_state = 158, .external_lex_state = 3}, [1861] = {.lex_state = 8, .external_lex_state = 2}, - [1862] = {.lex_state = 8, .external_lex_state = 2}, + [1862] = {.lex_state = 158, .external_lex_state = 3}, [1863] = {.lex_state = 8, .external_lex_state = 2}, - [1864] = {.lex_state = 8, .external_lex_state = 2}, + [1864] = {.lex_state = 158, .external_lex_state = 3}, [1865] = {.lex_state = 8, .external_lex_state = 2}, - [1866] = {.lex_state = 8, .external_lex_state = 2}, + [1866] = {.lex_state = 158, .external_lex_state = 3}, [1867] = {.lex_state = 8, .external_lex_state = 2}, [1868] = {.lex_state = 8, .external_lex_state = 2}, [1869] = {.lex_state = 8, .external_lex_state = 2}, @@ -18912,19 +19182,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1885] = {.lex_state = 158, .external_lex_state = 3}, + [1886] = {.lex_state = 158, .external_lex_state = 3}, + [1887] = {.lex_state = 158, .external_lex_state = 3}, + [1888] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1890] = {.lex_state = 8, .external_lex_state = 2}, + [1891] = {.lex_state = 158, .external_lex_state = 3}, + [1892] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [1897] = {.lex_state = 158, .external_lex_state = 3}, [1898] = {.lex_state = 8, .external_lex_state = 2}, [1899] = {.lex_state = 8, .external_lex_state = 2}, [1900] = {.lex_state = 8, .external_lex_state = 2}, @@ -18937,7 +19207,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1910] = {.lex_state = 8, .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}, @@ -18945,16 +19215,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1918] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1925] = {.lex_state = 8, .external_lex_state = 2}, [1926] = {.lex_state = 8, .external_lex_state = 2}, - [1927] = {.lex_state = 156, .external_lex_state = 2}, + [1927] = {.lex_state = 8, .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}, @@ -18972,38 +19242,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1945] = {.lex_state = 8, .external_lex_state = 2}, + [1946] = {.lex_state = 8, .external_lex_state = 2}, [1947] = {.lex_state = 8, .external_lex_state = 2}, - [1948] = {.lex_state = 156, .external_lex_state = 2}, + [1948] = {.lex_state = 158, .external_lex_state = 3}, [1949] = {.lex_state = 8, .external_lex_state = 2}, - [1950] = {.lex_state = 156, .external_lex_state = 3}, + [1950] = {.lex_state = 8, .external_lex_state = 2}, [1951] = {.lex_state = 8, .external_lex_state = 2}, [1952] = {.lex_state = 8, .external_lex_state = 2}, - [1953] = {.lex_state = 156, .external_lex_state = 2}, + [1953] = {.lex_state = 8, .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}, + [1955] = {.lex_state = 8, .external_lex_state = 2}, + [1956] = {.lex_state = 8, .external_lex_state = 2}, + [1957] = {.lex_state = 8, .external_lex_state = 2}, + [1958] = {.lex_state = 8, .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}, + [1961] = {.lex_state = 8, .external_lex_state = 2}, [1962] = {.lex_state = 8, .external_lex_state = 2}, - [1963] = {.lex_state = 156, .external_lex_state = 3}, + [1963] = {.lex_state = 8, .external_lex_state = 2}, [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}, + [1965] = {.lex_state = 8, .external_lex_state = 2}, + [1966] = {.lex_state = 8, .external_lex_state = 2}, + [1967] = {.lex_state = 8, .external_lex_state = 2}, + [1968] = {.lex_state = 158, .external_lex_state = 3}, + [1969] = {.lex_state = 8, .external_lex_state = 2}, + [1970] = {.lex_state = 158, .external_lex_state = 3}, + [1971] = {.lex_state = 8, .external_lex_state = 2}, + [1972] = {.lex_state = 158, .external_lex_state = 3}, + [1973] = {.lex_state = 8, .external_lex_state = 2}, + [1974] = {.lex_state = 158, .external_lex_state = 2}, [1975] = {.lex_state = 8, .external_lex_state = 2}, - [1976] = {.lex_state = 8, .external_lex_state = 2}, + [1976] = {.lex_state = 158, .external_lex_state = 3}, [1977] = {.lex_state = 8, .external_lex_state = 2}, [1978] = {.lex_state = 8, .external_lex_state = 2}, [1979] = {.lex_state = 8, .external_lex_state = 2}, @@ -19023,1899 +19293,1899 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1996] = {.lex_state = 8, .external_lex_state = 2}, + [1997] = {.lex_state = 8, .external_lex_state = 2}, + [1998] = {.lex_state = 8, .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}, + [2001] = {.lex_state = 8, .external_lex_state = 2}, + [2002] = {.lex_state = 8, .external_lex_state = 2}, + [2003] = {.lex_state = 8, .external_lex_state = 2}, + [2004] = {.lex_state = 158, .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}, + [2008] = {.lex_state = 158, .external_lex_state = 3}, + [2009] = {.lex_state = 158, .external_lex_state = 3}, + [2010] = {.lex_state = 158, .external_lex_state = 3}, + [2011] = {.lex_state = 8, .external_lex_state = 2}, + [2012] = {.lex_state = 158, .external_lex_state = 2}, + [2013] = {.lex_state = 158, .external_lex_state = 3}, [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}, + [2015] = {.lex_state = 158, .external_lex_state = 3}, + [2016] = {.lex_state = 158, .external_lex_state = 3}, + [2017] = {.lex_state = 8, .external_lex_state = 2}, + [2018] = {.lex_state = 8, .external_lex_state = 2}, + [2019] = {.lex_state = 8, .external_lex_state = 2}, + [2020] = {.lex_state = 8, .external_lex_state = 2}, + [2021] = {.lex_state = 8, .external_lex_state = 2}, + [2022] = {.lex_state = 8, .external_lex_state = 2}, + [2023] = {.lex_state = 8, .external_lex_state = 2}, + [2024] = {.lex_state = 8, .external_lex_state = 2}, + [2025] = {.lex_state = 8, .external_lex_state = 2}, + [2026] = {.lex_state = 8, .external_lex_state = 2}, + [2027] = {.lex_state = 8, .external_lex_state = 2}, + [2028] = {.lex_state = 8, .external_lex_state = 2}, + [2029] = {.lex_state = 8, .external_lex_state = 2}, + [2030] = {.lex_state = 8, .external_lex_state = 2}, + [2031] = {.lex_state = 8, .external_lex_state = 2}, + [2032] = {.lex_state = 8, .external_lex_state = 2}, + [2033] = {.lex_state = 8, .external_lex_state = 2}, + [2034] = {.lex_state = 8, .external_lex_state = 2}, + [2035] = {.lex_state = 8, .external_lex_state = 2}, + [2036] = {.lex_state = 8, .external_lex_state = 2}, + [2037] = {.lex_state = 8, .external_lex_state = 2}, + [2038] = {.lex_state = 158, .external_lex_state = 3}, + [2039] = {.lex_state = 158, .external_lex_state = 3}, + [2040] = {.lex_state = 158, .external_lex_state = 3}, + [2041] = {.lex_state = 158, .external_lex_state = 3}, + [2042] = {.lex_state = 158, .external_lex_state = 3}, + [2043] = {.lex_state = 158, .external_lex_state = 3}, + [2044] = {.lex_state = 158, .external_lex_state = 3}, + [2045] = {.lex_state = 8, .external_lex_state = 2}, + [2046] = {.lex_state = 8, .external_lex_state = 2}, + [2047] = {.lex_state = 8, .external_lex_state = 2}, + [2048] = {.lex_state = 8, .external_lex_state = 2}, + [2049] = {.lex_state = 8, .external_lex_state = 2}, + [2050] = {.lex_state = 8, .external_lex_state = 2}, + [2051] = {.lex_state = 8, .external_lex_state = 2}, + [2052] = {.lex_state = 158, .external_lex_state = 3}, + [2053] = {.lex_state = 158, .external_lex_state = 3}, + [2054] = {.lex_state = 8, .external_lex_state = 2}, + [2055] = {.lex_state = 8, .external_lex_state = 2}, + [2056] = {.lex_state = 8, .external_lex_state = 2}, + [2057] = {.lex_state = 158, .external_lex_state = 2}, + [2058] = {.lex_state = 158, .external_lex_state = 2}, + [2059] = {.lex_state = 158, .external_lex_state = 2}, + [2060] = {.lex_state = 158, .external_lex_state = 3}, + [2061] = {.lex_state = 158, .external_lex_state = 3}, + [2062] = {.lex_state = 158, .external_lex_state = 2}, + [2063] = {.lex_state = 158, .external_lex_state = 2}, + [2064] = {.lex_state = 158, .external_lex_state = 3}, + [2065] = {.lex_state = 158, .external_lex_state = 3}, + [2066] = {.lex_state = 158, .external_lex_state = 2}, + [2067] = {.lex_state = 28, .external_lex_state = 2}, + [2068] = {.lex_state = 158, .external_lex_state = 3}, + [2069] = {.lex_state = 23, .external_lex_state = 6}, + [2070] = {.lex_state = 158, .external_lex_state = 2}, + [2071] = {.lex_state = 76, .external_lex_state = 2}, + [2072] = {.lex_state = 23, .external_lex_state = 8}, + [2073] = {.lex_state = 28, .external_lex_state = 2}, + [2074] = {.lex_state = 158, .external_lex_state = 3}, + [2075] = {.lex_state = 76, .external_lex_state = 2}, + [2076] = {.lex_state = 158, .external_lex_state = 3}, + [2077] = {.lex_state = 158, .external_lex_state = 2}, + [2078] = {.lex_state = 158, .external_lex_state = 2}, + [2079] = {.lex_state = 158, .external_lex_state = 2}, + [2080] = {.lex_state = 158, .external_lex_state = 2}, + [2081] = {.lex_state = 158, .external_lex_state = 2}, + [2082] = {.lex_state = 158, .external_lex_state = 2}, + [2083] = {.lex_state = 158, .external_lex_state = 2}, + [2084] = {.lex_state = 158, .external_lex_state = 2}, + [2085] = {.lex_state = 158, .external_lex_state = 2}, + [2086] = {.lex_state = 158, .external_lex_state = 2}, + [2087] = {.lex_state = 158, .external_lex_state = 2}, + [2088] = {.lex_state = 158, .external_lex_state = 2}, + [2089] = {.lex_state = 158, .external_lex_state = 2}, + [2090] = {.lex_state = 158, .external_lex_state = 2}, + [2091] = {.lex_state = 158, .external_lex_state = 2}, + [2092] = {.lex_state = 158, .external_lex_state = 2}, + [2093] = {.lex_state = 158, .external_lex_state = 2}, + [2094] = {.lex_state = 158, .external_lex_state = 2}, + [2095] = {.lex_state = 158, .external_lex_state = 2}, + [2096] = {.lex_state = 158, .external_lex_state = 2}, + [2097] = {.lex_state = 158, .external_lex_state = 2}, + [2098] = {.lex_state = 158, .external_lex_state = 2}, + [2099] = {.lex_state = 158, .external_lex_state = 2}, + [2100] = {.lex_state = 158, .external_lex_state = 2}, + [2101] = {.lex_state = 158, .external_lex_state = 2}, + [2102] = {.lex_state = 158, .external_lex_state = 2}, + [2103] = {.lex_state = 158, .external_lex_state = 2}, + [2104] = {.lex_state = 158, .external_lex_state = 2}, + [2105] = {.lex_state = 158, .external_lex_state = 2}, + [2106] = {.lex_state = 158, .external_lex_state = 2}, + [2107] = {.lex_state = 158, .external_lex_state = 2}, + [2108] = {.lex_state = 158, .external_lex_state = 2}, + [2109] = {.lex_state = 23, .external_lex_state = 8}, + [2110] = {.lex_state = 158, .external_lex_state = 2}, + [2111] = {.lex_state = 158, .external_lex_state = 2}, + [2112] = {.lex_state = 158, .external_lex_state = 2}, + [2113] = {.lex_state = 158, .external_lex_state = 2}, + [2114] = {.lex_state = 158, .external_lex_state = 2}, + [2115] = {.lex_state = 158, .external_lex_state = 2}, + [2116] = {.lex_state = 158, .external_lex_state = 2}, + [2117] = {.lex_state = 158, .external_lex_state = 2}, + [2118] = {.lex_state = 158, .external_lex_state = 2}, + [2119] = {.lex_state = 158, .external_lex_state = 2}, + [2120] = {.lex_state = 158, .external_lex_state = 2}, + [2121] = {.lex_state = 158, .external_lex_state = 2}, + [2122] = {.lex_state = 158, .external_lex_state = 2}, + [2123] = {.lex_state = 158, .external_lex_state = 2}, + [2124] = {.lex_state = 158, .external_lex_state = 2}, + [2125] = {.lex_state = 158, .external_lex_state = 3}, + [2126] = {.lex_state = 158, .external_lex_state = 2}, + [2127] = {.lex_state = 158, .external_lex_state = 2}, + [2128] = {.lex_state = 158, .external_lex_state = 2}, + [2129] = {.lex_state = 23, .external_lex_state = 2}, + [2130] = {.lex_state = 23, .external_lex_state = 6}, + [2131] = {.lex_state = 158, .external_lex_state = 2}, + [2132] = {.lex_state = 158, .external_lex_state = 3}, + [2133] = {.lex_state = 23, .external_lex_state = 2}, + [2134] = {.lex_state = 158, .external_lex_state = 2}, + [2135] = {.lex_state = 158, .external_lex_state = 3}, + [2136] = {.lex_state = 158, .external_lex_state = 2}, + [2137] = {.lex_state = 158, .external_lex_state = 2}, + [2138] = {.lex_state = 158, .external_lex_state = 3}, + [2139] = {.lex_state = 158, .external_lex_state = 2}, + [2140] = {.lex_state = 158, .external_lex_state = 3}, + [2141] = {.lex_state = 158, .external_lex_state = 3}, + [2142] = {.lex_state = 158, .external_lex_state = 2}, + [2143] = {.lex_state = 158, .external_lex_state = 3}, + [2144] = {.lex_state = 158, .external_lex_state = 3}, + [2145] = {.lex_state = 158, .external_lex_state = 3}, + [2146] = {.lex_state = 158, .external_lex_state = 2}, + [2147] = {.lex_state = 158, .external_lex_state = 3}, + [2148] = {.lex_state = 158, .external_lex_state = 3}, + [2149] = {.lex_state = 158, .external_lex_state = 3}, + [2150] = {.lex_state = 158, .external_lex_state = 3}, + [2151] = {.lex_state = 158, .external_lex_state = 3}, + [2152] = {.lex_state = 158, .external_lex_state = 3}, + [2153] = {.lex_state = 158, .external_lex_state = 3}, + [2154] = {.lex_state = 158, .external_lex_state = 3}, + [2155] = {.lex_state = 158, .external_lex_state = 3}, + [2156] = {.lex_state = 158, .external_lex_state = 3}, + [2157] = {.lex_state = 158, .external_lex_state = 3}, + [2158] = {.lex_state = 158, .external_lex_state = 3}, + [2159] = {.lex_state = 158, .external_lex_state = 3}, + [2160] = {.lex_state = 158, .external_lex_state = 3}, + [2161] = {.lex_state = 158, .external_lex_state = 3}, + [2162] = {.lex_state = 158, .external_lex_state = 2}, + [2163] = {.lex_state = 158, .external_lex_state = 2}, + [2164] = {.lex_state = 158, .external_lex_state = 3}, + [2165] = {.lex_state = 158, .external_lex_state = 3}, + [2166] = {.lex_state = 158, .external_lex_state = 3}, + [2167] = {.lex_state = 158, .external_lex_state = 2}, + [2168] = {.lex_state = 158, .external_lex_state = 3}, + [2169] = {.lex_state = 158, .external_lex_state = 3}, + [2170] = {.lex_state = 158, .external_lex_state = 3}, + [2171] = {.lex_state = 158, .external_lex_state = 3}, + [2172] = {.lex_state = 158, .external_lex_state = 3}, + [2173] = {.lex_state = 158, .external_lex_state = 3}, + [2174] = {.lex_state = 158, .external_lex_state = 3}, + [2175] = {.lex_state = 158, .external_lex_state = 3}, + [2176] = {.lex_state = 158, .external_lex_state = 3}, + [2177] = {.lex_state = 158, .external_lex_state = 3}, + [2178] = {.lex_state = 158, .external_lex_state = 3}, + [2179] = {.lex_state = 158, .external_lex_state = 3}, + [2180] = {.lex_state = 158, .external_lex_state = 2}, + [2181] = {.lex_state = 158, .external_lex_state = 2}, + [2182] = {.lex_state = 158, .external_lex_state = 3}, + [2183] = {.lex_state = 158, .external_lex_state = 3}, + [2184] = {.lex_state = 158, .external_lex_state = 2}, + [2185] = {.lex_state = 23, .external_lex_state = 2}, + [2186] = {.lex_state = 158, .external_lex_state = 3}, + [2187] = {.lex_state = 158, .external_lex_state = 3}, + [2188] = {.lex_state = 158, .external_lex_state = 3}, + [2189] = {.lex_state = 158, .external_lex_state = 3}, + [2190] = {.lex_state = 158, .external_lex_state = 3}, + [2191] = {.lex_state = 158, .external_lex_state = 3}, + [2192] = {.lex_state = 158, .external_lex_state = 3}, + [2193] = {.lex_state = 158, .external_lex_state = 3}, + [2194] = {.lex_state = 23, .external_lex_state = 2}, + [2195] = {.lex_state = 158, .external_lex_state = 3}, + [2196] = {.lex_state = 158, .external_lex_state = 3}, + [2197] = {.lex_state = 158, .external_lex_state = 3}, + [2198] = {.lex_state = 158, .external_lex_state = 3}, + [2199] = {.lex_state = 158, .external_lex_state = 3}, + [2200] = {.lex_state = 158, .external_lex_state = 3}, + [2201] = {.lex_state = 158, .external_lex_state = 3}, + [2202] = {.lex_state = 158, .external_lex_state = 3}, + [2203] = {.lex_state = 158, .external_lex_state = 3}, + [2204] = {.lex_state = 158, .external_lex_state = 3}, + [2205] = {.lex_state = 158, .external_lex_state = 3}, + [2206] = {.lex_state = 158, .external_lex_state = 2}, + [2207] = {.lex_state = 158, .external_lex_state = 3}, + [2208] = {.lex_state = 158, .external_lex_state = 3}, + [2209] = {.lex_state = 158, .external_lex_state = 3}, + [2210] = {.lex_state = 158, .external_lex_state = 3}, + [2211] = {.lex_state = 158, .external_lex_state = 2}, + [2212] = {.lex_state = 20, .external_lex_state = 7}, + [2213] = {.lex_state = 20, .external_lex_state = 7}, + [2214] = {.lex_state = 20, .external_lex_state = 2}, + [2215] = {.lex_state = 20, .external_lex_state = 2}, + [2216] = {.lex_state = 20, .external_lex_state = 2}, + [2217] = {.lex_state = 20, .external_lex_state = 2}, + [2218] = {.lex_state = 20, .external_lex_state = 2}, + [2219] = {.lex_state = 20, .external_lex_state = 2}, + [2220] = {.lex_state = 20, .external_lex_state = 2}, + [2221] = {.lex_state = 20, .external_lex_state = 2}, + [2222] = {.lex_state = 20, .external_lex_state = 2}, + [2223] = {.lex_state = 20, .external_lex_state = 2}, + [2224] = {.lex_state = 20, .external_lex_state = 8}, + [2225] = {.lex_state = 29, .external_lex_state = 2}, + [2226] = {.lex_state = 20, .external_lex_state = 6}, + [2227] = {.lex_state = 29, .external_lex_state = 2}, + [2228] = {.lex_state = 20, .external_lex_state = 8}, + [2229] = {.lex_state = 30, .external_lex_state = 5}, + [2230] = {.lex_state = 30, .external_lex_state = 5}, + [2231] = {.lex_state = 20, .external_lex_state = 6}, + [2232] = {.lex_state = 20, .external_lex_state = 2}, + [2233] = {.lex_state = 20, .external_lex_state = 2}, + [2234] = {.lex_state = 20, .external_lex_state = 2}, + [2235] = {.lex_state = 20, .external_lex_state = 2}, + [2236] = {.lex_state = 20, .external_lex_state = 2}, + [2237] = {.lex_state = 20, .external_lex_state = 2}, + [2238] = {.lex_state = 20, .external_lex_state = 6}, + [2239] = {.lex_state = 20, .external_lex_state = 6}, + [2240] = {.lex_state = 20, .external_lex_state = 6}, + [2241] = {.lex_state = 20, .external_lex_state = 2}, + [2242] = {.lex_state = 8, .external_lex_state = 2}, + [2243] = {.lex_state = 8, .external_lex_state = 2}, + [2244] = {.lex_state = 31, .external_lex_state = 11}, + [2245] = {.lex_state = 8, .external_lex_state = 2}, + [2246] = {.lex_state = 8, .external_lex_state = 2}, + [2247] = {.lex_state = 8, .external_lex_state = 2}, + [2248] = {.lex_state = 8, .external_lex_state = 2}, + [2249] = {.lex_state = 8, .external_lex_state = 2}, + [2250] = {.lex_state = 8, .external_lex_state = 2}, + [2251] = {.lex_state = 8, .external_lex_state = 2}, + [2252] = {.lex_state = 8, .external_lex_state = 2}, + [2253] = {.lex_state = 8, .external_lex_state = 2}, + [2254] = {.lex_state = 8, .external_lex_state = 2}, + [2255] = {.lex_state = 8, .external_lex_state = 2}, + [2256] = {.lex_state = 8, .external_lex_state = 2}, + [2257] = {.lex_state = 8, .external_lex_state = 2}, + [2258] = {.lex_state = 20, .external_lex_state = 2}, + [2259] = {.lex_state = 20, .external_lex_state = 2}, + [2260] = {.lex_state = 20, .external_lex_state = 2}, + [2261] = {.lex_state = 20, .external_lex_state = 2}, + [2262] = {.lex_state = 20, .external_lex_state = 2}, + [2263] = {.lex_state = 20, .external_lex_state = 2}, + [2264] = {.lex_state = 20, .external_lex_state = 2}, + [2265] = {.lex_state = 20, .external_lex_state = 2}, + [2266] = {.lex_state = 20, .external_lex_state = 2}, + [2267] = {.lex_state = 20, .external_lex_state = 2}, + [2268] = {.lex_state = 20, .external_lex_state = 2}, + [2269] = {.lex_state = 20, .external_lex_state = 2}, + [2270] = {.lex_state = 20, .external_lex_state = 2}, + [2271] = {.lex_state = 20, .external_lex_state = 2}, + [2272] = {.lex_state = 20, .external_lex_state = 2}, + [2273] = {.lex_state = 20, .external_lex_state = 2}, + [2274] = {.lex_state = 20, .external_lex_state = 2}, + [2275] = {.lex_state = 20, .external_lex_state = 2}, + [2276] = {.lex_state = 20, .external_lex_state = 2}, + [2277] = {.lex_state = 20, .external_lex_state = 2}, + [2278] = {.lex_state = 20, .external_lex_state = 2}, + [2279] = {.lex_state = 20, .external_lex_state = 2}, + [2280] = {.lex_state = 20, .external_lex_state = 2}, + [2281] = {.lex_state = 20, .external_lex_state = 2}, + [2282] = {.lex_state = 20, .external_lex_state = 2}, + [2283] = {.lex_state = 20, .external_lex_state = 2}, + [2284] = {.lex_state = 20, .external_lex_state = 2}, + [2285] = {.lex_state = 20, .external_lex_state = 2}, + [2286] = {.lex_state = 20, .external_lex_state = 2}, + [2287] = {.lex_state = 20, .external_lex_state = 2}, + [2288] = {.lex_state = 20, .external_lex_state = 2}, + [2289] = {.lex_state = 20, .external_lex_state = 2}, + [2290] = {.lex_state = 20, .external_lex_state = 2}, + [2291] = {.lex_state = 20, .external_lex_state = 2}, + [2292] = {.lex_state = 20, .external_lex_state = 2}, + [2293] = {.lex_state = 20, .external_lex_state = 2}, + [2294] = {.lex_state = 20, .external_lex_state = 2}, + [2295] = {.lex_state = 20, .external_lex_state = 2}, + [2296] = {.lex_state = 20, .external_lex_state = 2}, + [2297] = {.lex_state = 20, .external_lex_state = 2}, + [2298] = {.lex_state = 20, .external_lex_state = 2}, + [2299] = {.lex_state = 20, .external_lex_state = 2}, + [2300] = {.lex_state = 20, .external_lex_state = 2}, + [2301] = {.lex_state = 20, .external_lex_state = 2}, + [2302] = {.lex_state = 20, .external_lex_state = 2}, + [2303] = {.lex_state = 20, .external_lex_state = 2}, + [2304] = {.lex_state = 20, .external_lex_state = 2}, + [2305] = {.lex_state = 20, .external_lex_state = 2}, + [2306] = {.lex_state = 20, .external_lex_state = 2}, + [2307] = {.lex_state = 20, .external_lex_state = 2}, + [2308] = {.lex_state = 20, .external_lex_state = 2}, + [2309] = {.lex_state = 20, .external_lex_state = 2}, + [2310] = {.lex_state = 20, .external_lex_state = 2}, + [2311] = {.lex_state = 20, .external_lex_state = 2}, + [2312] = {.lex_state = 20, .external_lex_state = 2}, + [2313] = {.lex_state = 20, .external_lex_state = 2}, + [2314] = {.lex_state = 20, .external_lex_state = 2}, + [2315] = {.lex_state = 20, .external_lex_state = 2}, + [2316] = {.lex_state = 20, .external_lex_state = 2}, + [2317] = {.lex_state = 20, .external_lex_state = 2}, + [2318] = {.lex_state = 20, .external_lex_state = 2}, + [2319] = {.lex_state = 20, .external_lex_state = 2}, + [2320] = {.lex_state = 20, .external_lex_state = 2}, + [2321] = {.lex_state = 20, .external_lex_state = 2}, + [2322] = {.lex_state = 20, .external_lex_state = 2}, + [2323] = {.lex_state = 20, .external_lex_state = 2}, + [2324] = {.lex_state = 20, .external_lex_state = 2}, + [2325] = {.lex_state = 20, .external_lex_state = 2}, + [2326] = {.lex_state = 20, .external_lex_state = 2}, + [2327] = {.lex_state = 20, .external_lex_state = 2}, + [2328] = {.lex_state = 20, .external_lex_state = 2}, + [2329] = {.lex_state = 20, .external_lex_state = 2}, + [2330] = {.lex_state = 20, .external_lex_state = 2}, + [2331] = {.lex_state = 20, .external_lex_state = 2}, + [2332] = {.lex_state = 20, .external_lex_state = 2}, + [2333] = {.lex_state = 20, .external_lex_state = 2}, + [2334] = {.lex_state = 20, .external_lex_state = 2}, + [2335] = {.lex_state = 20, .external_lex_state = 2}, + [2336] = {.lex_state = 20, .external_lex_state = 2}, + [2337] = {.lex_state = 20, .external_lex_state = 2}, + [2338] = {.lex_state = 20, .external_lex_state = 2}, + [2339] = {.lex_state = 20, .external_lex_state = 2}, + [2340] = {.lex_state = 20, .external_lex_state = 2}, + [2341] = {.lex_state = 20, .external_lex_state = 2}, + [2342] = {.lex_state = 20, .external_lex_state = 2}, + [2343] = {.lex_state = 20, .external_lex_state = 2}, + [2344] = {.lex_state = 20, .external_lex_state = 2}, + [2345] = {.lex_state = 20, .external_lex_state = 2}, + [2346] = {.lex_state = 20, .external_lex_state = 2}, + [2347] = {.lex_state = 20, .external_lex_state = 2}, + [2348] = {.lex_state = 20, .external_lex_state = 2}, + [2349] = {.lex_state = 20, .external_lex_state = 2}, + [2350] = {.lex_state = 20, .external_lex_state = 2}, + [2351] = {.lex_state = 20, .external_lex_state = 2}, + [2352] = {.lex_state = 20, .external_lex_state = 2}, + [2353] = {.lex_state = 20, .external_lex_state = 2}, + [2354] = {.lex_state = 20, .external_lex_state = 2}, + [2355] = {.lex_state = 20, .external_lex_state = 2}, + [2356] = {.lex_state = 20, .external_lex_state = 2}, + [2357] = {.lex_state = 20, .external_lex_state = 2}, + [2358] = {.lex_state = 20, .external_lex_state = 2}, + [2359] = {.lex_state = 20, .external_lex_state = 2}, + [2360] = {.lex_state = 20, .external_lex_state = 2}, + [2361] = {.lex_state = 20, .external_lex_state = 2}, + [2362] = {.lex_state = 20, .external_lex_state = 2}, + [2363] = {.lex_state = 20, .external_lex_state = 2}, + [2364] = {.lex_state = 20, .external_lex_state = 2}, + [2365] = {.lex_state = 20, .external_lex_state = 2}, + [2366] = {.lex_state = 20, .external_lex_state = 2}, + [2367] = {.lex_state = 20, .external_lex_state = 2}, + [2368] = {.lex_state = 20, .external_lex_state = 2}, + [2369] = {.lex_state = 20, .external_lex_state = 2}, + [2370] = {.lex_state = 20, .external_lex_state = 2}, + [2371] = {.lex_state = 20, .external_lex_state = 2}, + [2372] = {.lex_state = 20, .external_lex_state = 2}, + [2373] = {.lex_state = 20, .external_lex_state = 2}, + [2374] = {.lex_state = 20, .external_lex_state = 2}, + [2375] = {.lex_state = 20, .external_lex_state = 2}, + [2376] = {.lex_state = 20, .external_lex_state = 2}, + [2377] = {.lex_state = 20, .external_lex_state = 2}, + [2378] = {.lex_state = 20, .external_lex_state = 2}, + [2379] = {.lex_state = 20, .external_lex_state = 2}, + [2380] = {.lex_state = 20, .external_lex_state = 2}, + [2381] = {.lex_state = 20, .external_lex_state = 2}, + [2382] = {.lex_state = 20, .external_lex_state = 2}, + [2383] = {.lex_state = 20, .external_lex_state = 2}, + [2384] = {.lex_state = 20, .external_lex_state = 2}, + [2385] = {.lex_state = 20, .external_lex_state = 2}, + [2386] = {.lex_state = 20, .external_lex_state = 2}, + [2387] = {.lex_state = 20, .external_lex_state = 2}, + [2388] = {.lex_state = 20, .external_lex_state = 2}, + [2389] = {.lex_state = 20, .external_lex_state = 2}, + [2390] = {.lex_state = 20, .external_lex_state = 2}, + [2391] = {.lex_state = 20, .external_lex_state = 2}, + [2392] = {.lex_state = 20, .external_lex_state = 2}, + [2393] = {.lex_state = 20, .external_lex_state = 2}, + [2394] = {.lex_state = 31, .external_lex_state = 11}, + [2395] = {.lex_state = 20, .external_lex_state = 2}, + [2396] = {.lex_state = 20, .external_lex_state = 2}, + [2397] = {.lex_state = 20, .external_lex_state = 2}, + [2398] = {.lex_state = 20, .external_lex_state = 2}, + [2399] = {.lex_state = 20, .external_lex_state = 2}, + [2400] = {.lex_state = 20, .external_lex_state = 2}, + [2401] = {.lex_state = 20, .external_lex_state = 2}, + [2402] = {.lex_state = 20, .external_lex_state = 2}, + [2403] = {.lex_state = 20, .external_lex_state = 2}, + [2404] = {.lex_state = 20, .external_lex_state = 2}, + [2405] = {.lex_state = 20, .external_lex_state = 2}, + [2406] = {.lex_state = 20, .external_lex_state = 2}, + [2407] = {.lex_state = 20, .external_lex_state = 2}, + [2408] = {.lex_state = 20, .external_lex_state = 2}, + [2409] = {.lex_state = 20, .external_lex_state = 2}, + [2410] = {.lex_state = 20, .external_lex_state = 2}, + [2411] = {.lex_state = 20, .external_lex_state = 2}, + [2412] = {.lex_state = 20, .external_lex_state = 2}, + [2413] = {.lex_state = 20, .external_lex_state = 2}, + [2414] = {.lex_state = 20, .external_lex_state = 2}, + [2415] = {.lex_state = 20, .external_lex_state = 2}, + [2416] = {.lex_state = 20, .external_lex_state = 2}, + [2417] = {.lex_state = 20, .external_lex_state = 2}, + [2418] = {.lex_state = 20, .external_lex_state = 2}, + [2419] = {.lex_state = 20, .external_lex_state = 2}, + [2420] = {.lex_state = 20, .external_lex_state = 2}, + [2421] = {.lex_state = 20, .external_lex_state = 2}, + [2422] = {.lex_state = 20, .external_lex_state = 2}, + [2423] = {.lex_state = 20, .external_lex_state = 2}, + [2424] = {.lex_state = 20, .external_lex_state = 2}, + [2425] = {.lex_state = 20, .external_lex_state = 2}, + [2426] = {.lex_state = 20, .external_lex_state = 2}, + [2427] = {.lex_state = 20, .external_lex_state = 2}, + [2428] = {.lex_state = 20, .external_lex_state = 2}, + [2429] = {.lex_state = 20, .external_lex_state = 2}, + [2430] = {.lex_state = 20, .external_lex_state = 2}, + [2431] = {.lex_state = 20, .external_lex_state = 2}, + [2432] = {.lex_state = 20, .external_lex_state = 2}, + [2433] = {.lex_state = 20, .external_lex_state = 2}, + [2434] = {.lex_state = 20, .external_lex_state = 2}, + [2435] = {.lex_state = 20, .external_lex_state = 2}, + [2436] = {.lex_state = 20, .external_lex_state = 2}, + [2437] = {.lex_state = 20, .external_lex_state = 2}, + [2438] = {.lex_state = 20, .external_lex_state = 2}, + [2439] = {.lex_state = 20, .external_lex_state = 2}, + [2440] = {.lex_state = 20, .external_lex_state = 2}, + [2441] = {.lex_state = 20, .external_lex_state = 2}, + [2442] = {.lex_state = 20, .external_lex_state = 2}, + [2443] = {.lex_state = 20, .external_lex_state = 2}, + [2444] = {.lex_state = 20, .external_lex_state = 2}, + [2445] = {.lex_state = 20, .external_lex_state = 2}, + [2446] = {.lex_state = 20, .external_lex_state = 2}, + [2447] = {.lex_state = 20, .external_lex_state = 2}, + [2448] = {.lex_state = 20, .external_lex_state = 2}, + [2449] = {.lex_state = 20, .external_lex_state = 2}, + [2450] = {.lex_state = 20, .external_lex_state = 2}, + [2451] = {.lex_state = 20, .external_lex_state = 2}, + [2452] = {.lex_state = 20, .external_lex_state = 2}, + [2453] = {.lex_state = 20, .external_lex_state = 2}, + [2454] = {.lex_state = 20, .external_lex_state = 2}, + [2455] = {.lex_state = 20, .external_lex_state = 2}, + [2456] = {.lex_state = 20, .external_lex_state = 2}, + [2457] = {.lex_state = 20, .external_lex_state = 2}, + [2458] = {.lex_state = 20, .external_lex_state = 2}, + [2459] = {.lex_state = 20, .external_lex_state = 2}, + [2460] = {.lex_state = 20, .external_lex_state = 2}, + [2461] = {.lex_state = 20, .external_lex_state = 2}, + [2462] = {.lex_state = 20, .external_lex_state = 2}, + [2463] = {.lex_state = 20, .external_lex_state = 2}, + [2464] = {.lex_state = 20, .external_lex_state = 2}, + [2465] = {.lex_state = 20, .external_lex_state = 2}, + [2466] = {.lex_state = 20, .external_lex_state = 2}, + [2467] = {.lex_state = 20, .external_lex_state = 2}, + [2468] = {.lex_state = 20, .external_lex_state = 2}, + [2469] = {.lex_state = 20, .external_lex_state = 2}, + [2470] = {.lex_state = 20, .external_lex_state = 2}, + [2471] = {.lex_state = 20, .external_lex_state = 2}, + [2472] = {.lex_state = 20, .external_lex_state = 2}, + [2473] = {.lex_state = 20, .external_lex_state = 2}, + [2474] = {.lex_state = 20, .external_lex_state = 2}, + [2475] = {.lex_state = 20, .external_lex_state = 2}, + [2476] = {.lex_state = 20, .external_lex_state = 2}, + [2477] = {.lex_state = 20, .external_lex_state = 2}, + [2478] = {.lex_state = 20, .external_lex_state = 2}, + [2479] = {.lex_state = 20, .external_lex_state = 2}, + [2480] = {.lex_state = 20, .external_lex_state = 2}, + [2481] = {.lex_state = 20, .external_lex_state = 2}, + [2482] = {.lex_state = 20, .external_lex_state = 2}, + [2483] = {.lex_state = 20, .external_lex_state = 2}, + [2484] = {.lex_state = 20, .external_lex_state = 2}, + [2485] = {.lex_state = 20, .external_lex_state = 2}, + [2486] = {.lex_state = 20, .external_lex_state = 2}, + [2487] = {.lex_state = 20, .external_lex_state = 2}, + [2488] = {.lex_state = 20, .external_lex_state = 2}, + [2489] = {.lex_state = 20, .external_lex_state = 2}, + [2490] = {.lex_state = 20, .external_lex_state = 2}, + [2491] = {.lex_state = 20, .external_lex_state = 2}, + [2492] = {.lex_state = 20, .external_lex_state = 2}, + [2493] = {.lex_state = 20, .external_lex_state = 2}, + [2494] = {.lex_state = 20, .external_lex_state = 2}, + [2495] = {.lex_state = 32, .external_lex_state = 12}, + [2496] = {.lex_state = 32, .external_lex_state = 12}, + [2497] = {.lex_state = 31, .external_lex_state = 5}, + [2498] = {.lex_state = 33, .external_lex_state = 11}, + [2499] = {.lex_state = 33, .external_lex_state = 11}, + [2500] = {.lex_state = 31, .external_lex_state = 5}, + [2501] = {.lex_state = 34, .external_lex_state = 11}, + [2502] = {.lex_state = 34, .external_lex_state = 11}, + [2503] = {.lex_state = 34, .external_lex_state = 11}, + [2504] = {.lex_state = 34, .external_lex_state = 11}, + [2505] = {.lex_state = 35, .external_lex_state = 11}, + [2506] = {.lex_state = 35, .external_lex_state = 11}, + [2507] = {.lex_state = 35, .external_lex_state = 11}, + [2508] = {.lex_state = 35, .external_lex_state = 11}, + [2509] = {.lex_state = 35, .external_lex_state = 11}, + [2510] = {.lex_state = 35, .external_lex_state = 11}, + [2511] = {.lex_state = 35, .external_lex_state = 11}, + [2512] = {.lex_state = 35, .external_lex_state = 11}, + [2513] = {.lex_state = 35, .external_lex_state = 11}, + [2514] = {.lex_state = 35, .external_lex_state = 11}, + [2515] = {.lex_state = 35, .external_lex_state = 11}, + [2516] = {.lex_state = 35, .external_lex_state = 11}, + [2517] = {.lex_state = 35, .external_lex_state = 11}, + [2518] = {.lex_state = 35, .external_lex_state = 11}, + [2519] = {.lex_state = 35, .external_lex_state = 11}, + [2520] = {.lex_state = 35, .external_lex_state = 11}, + [2521] = {.lex_state = 35, .external_lex_state = 11}, + [2522] = {.lex_state = 35, .external_lex_state = 11}, + [2523] = {.lex_state = 36, .external_lex_state = 2}, + [2524] = {.lex_state = 36, .external_lex_state = 2}, + [2525] = {.lex_state = 36, .external_lex_state = 2}, + [2526] = {.lex_state = 15, .external_lex_state = 12}, + [2527] = {.lex_state = 15, .external_lex_state = 12}, + [2528] = {.lex_state = 36, .external_lex_state = 2}, + [2529] = {.lex_state = 36, .external_lex_state = 3}, + [2530] = {.lex_state = 36, .external_lex_state = 3}, + [2531] = {.lex_state = 36, .external_lex_state = 3}, + [2532] = {.lex_state = 36, .external_lex_state = 3}, + [2533] = {.lex_state = 36, .external_lex_state = 3}, + [2534] = {.lex_state = 36, .external_lex_state = 13}, + [2535] = {.lex_state = 36, .external_lex_state = 13}, + [2536] = {.lex_state = 36, .external_lex_state = 13}, + [2537] = {.lex_state = 36, .external_lex_state = 13}, + [2538] = {.lex_state = 36, .external_lex_state = 13}, + [2539] = {.lex_state = 36, .external_lex_state = 13}, + [2540] = {.lex_state = 36, .external_lex_state = 13}, + [2541] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [2543] = {.lex_state = 36, .external_lex_state = 13}, + [2544] = {.lex_state = 36, .external_lex_state = 13}, + [2545] = {.lex_state = 36, .external_lex_state = 13}, + [2546] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [2548] = {.lex_state = 36, .external_lex_state = 12}, + [2549] = {.lex_state = 36, .external_lex_state = 12}, + [2550] = {.lex_state = 36, .external_lex_state = 12}, + [2551] = {.lex_state = 36, .external_lex_state = 12}, + [2552] = {.lex_state = 36, .external_lex_state = 12}, + [2553] = {.lex_state = 38, .external_lex_state = 11}, + [2554] = {.lex_state = 36, .external_lex_state = 12}, + [2555] = {.lex_state = 36, .external_lex_state = 12}, + [2556] = {.lex_state = 36, .external_lex_state = 12}, + [2557] = {.lex_state = 39, .external_lex_state = 11}, + [2558] = {.lex_state = 40, .external_lex_state = 11}, + [2559] = {.lex_state = 36, .external_lex_state = 12}, + [2560] = {.lex_state = 39, .external_lex_state = 11}, + [2561] = {.lex_state = 40, .external_lex_state = 11}, + [2562] = {.lex_state = 41, .external_lex_state = 14}, + [2563] = {.lex_state = 38, .external_lex_state = 11}, + [2564] = {.lex_state = 42, .external_lex_state = 14}, + [2565] = {.lex_state = 43, .external_lex_state = 14}, + [2566] = {.lex_state = 37, .external_lex_state = 12}, + [2567] = {.lex_state = 44, .external_lex_state = 14}, + [2568] = {.lex_state = 45, .external_lex_state = 15}, + [2569] = {.lex_state = 41, .external_lex_state = 16}, + [2570] = {.lex_state = 45, .external_lex_state = 15}, + [2571] = {.lex_state = 37, .external_lex_state = 5}, + [2572] = {.lex_state = 37, .external_lex_state = 5}, + [2573] = {.lex_state = 37, .external_lex_state = 14}, + [2574] = {.lex_state = 41, .external_lex_state = 14}, + [2575] = {.lex_state = 37, .external_lex_state = 5}, + [2576] = {.lex_state = 41, .external_lex_state = 15}, + [2577] = {.lex_state = 41, .external_lex_state = 14}, + [2578] = {.lex_state = 39, .external_lex_state = 14}, + [2579] = {.lex_state = 42, .external_lex_state = 15}, + [2580] = {.lex_state = 44, .external_lex_state = 16}, + [2581] = {.lex_state = 46, .external_lex_state = 15}, + [2582] = {.lex_state = 37, .external_lex_state = 14}, + [2583] = {.lex_state = 44, .external_lex_state = 15}, + [2584] = {.lex_state = 37, .external_lex_state = 14}, + [2585] = {.lex_state = 44, .external_lex_state = 14}, [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}, + [2587] = {.lex_state = 41, .external_lex_state = 16}, + [2588] = {.lex_state = 37, .external_lex_state = 11}, + [2589] = {.lex_state = 42, .external_lex_state = 14}, + [2590] = {.lex_state = 37, .external_lex_state = 14}, + [2591] = {.lex_state = 41, .external_lex_state = 15}, + [2592] = {.lex_state = 43, .external_lex_state = 16}, + [2593] = {.lex_state = 43, .external_lex_state = 15}, + [2594] = {.lex_state = 42, .external_lex_state = 16}, + [2595] = {.lex_state = 37, .external_lex_state = 12}, + [2596] = {.lex_state = 47, .external_lex_state = 2}, + [2597] = {.lex_state = 39, .external_lex_state = 12}, + [2598] = {.lex_state = 41, .external_lex_state = 14}, + [2599] = {.lex_state = 77, .external_lex_state = 11}, + [2600] = {.lex_state = 46, .external_lex_state = 15}, + [2601] = {.lex_state = 40, .external_lex_state = 12}, + [2602] = {.lex_state = 47, .external_lex_state = 2}, + [2603] = {.lex_state = 38, .external_lex_state = 14}, + [2604] = {.lex_state = 43, .external_lex_state = 14}, + [2605] = {.lex_state = 40, .external_lex_state = 14}, + [2606] = {.lex_state = 37, .external_lex_state = 5}, [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}, + [2608] = {.lex_state = 40, .external_lex_state = 12}, + [2609] = {.lex_state = 37, .external_lex_state = 16}, + [2610] = {.lex_state = 41, .external_lex_state = 15}, + [2611] = {.lex_state = 38, .external_lex_state = 12}, + [2612] = {.lex_state = 37, .external_lex_state = 5}, + [2613] = {.lex_state = 41, .external_lex_state = 15}, + [2614] = {.lex_state = 43, .external_lex_state = 15}, + [2615] = {.lex_state = 41, .external_lex_state = 7}, + [2616] = {.lex_state = 37, .external_lex_state = 11}, + [2617] = {.lex_state = 48, .external_lex_state = 11}, + [2618] = {.lex_state = 43, .external_lex_state = 16}, + [2619] = {.lex_state = 37, .external_lex_state = 11}, + [2620] = {.lex_state = 41, .external_lex_state = 16}, + [2621] = {.lex_state = 39, .external_lex_state = 14}, + [2622] = {.lex_state = 42, .external_lex_state = 15}, [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}, + [2624] = {.lex_state = 40, .external_lex_state = 14}, + [2625] = {.lex_state = 37, .external_lex_state = 11}, + [2626] = {.lex_state = 41, .external_lex_state = 15}, + [2627] = {.lex_state = 41, .external_lex_state = 16}, + [2628] = {.lex_state = 41, .external_lex_state = 16}, + [2629] = {.lex_state = 48, .external_lex_state = 11}, + [2630] = {.lex_state = 44, .external_lex_state = 16}, [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}, + [2632] = {.lex_state = 41, .external_lex_state = 14}, + [2633] = {.lex_state = 39, .external_lex_state = 12}, + [2634] = {.lex_state = 37, .external_lex_state = 11}, + [2635] = {.lex_state = 41, .external_lex_state = 7}, + [2636] = {.lex_state = 41, .external_lex_state = 7}, + [2637] = {.lex_state = 44, .external_lex_state = 15}, + [2638] = {.lex_state = 41, .external_lex_state = 14}, + [2639] = {.lex_state = 42, .external_lex_state = 16}, + [2640] = {.lex_state = 41, .external_lex_state = 16}, + [2641] = {.lex_state = 37, .external_lex_state = 11}, + [2642] = {.lex_state = 38, .external_lex_state = 14}, + [2643] = {.lex_state = 41, .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}, + [2646] = {.lex_state = 37, .external_lex_state = 11}, + [2647] = {.lex_state = 37, .external_lex_state = 16}, + [2648] = {.lex_state = 37, .external_lex_state = 11}, + [2649] = {.lex_state = 41, .external_lex_state = 8}, [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}, + [2651] = {.lex_state = 37, .external_lex_state = 12}, + [2652] = {.lex_state = 36, .external_lex_state = 6}, + [2653] = {.lex_state = 36, .external_lex_state = 8}, + [2654] = {.lex_state = 36, .external_lex_state = 6}, + [2655] = {.lex_state = 37, .external_lex_state = 11}, + [2656] = {.lex_state = 37, .external_lex_state = 11}, + [2657] = {.lex_state = 37, .external_lex_state = 11}, + [2658] = {.lex_state = 37, .external_lex_state = 11}, + [2659] = {.lex_state = 37, .external_lex_state = 11}, + [2660] = {.lex_state = 37, .external_lex_state = 7}, + [2661] = {.lex_state = 36, .external_lex_state = 6}, + [2662] = {.lex_state = 36, .external_lex_state = 8}, + [2663] = {.lex_state = 37, .external_lex_state = 2}, + [2664] = {.lex_state = 37, .external_lex_state = 11}, + [2665] = {.lex_state = 36, .external_lex_state = 6}, + [2666] = {.lex_state = 37, .external_lex_state = 11}, [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}, + [2668] = {.lex_state = 37, .external_lex_state = 11}, + [2669] = {.lex_state = 37, .external_lex_state = 11}, + [2670] = {.lex_state = 36, .external_lex_state = 6}, + [2671] = {.lex_state = 36, .external_lex_state = 6}, + [2672] = {.lex_state = 36, .external_lex_state = 8}, + [2673] = {.lex_state = 37, .external_lex_state = 11}, [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}, + [2675] = {.lex_state = 37, .external_lex_state = 7}, + [2676] = {.lex_state = 36, .external_lex_state = 6}, + [2677] = {.lex_state = 36, .external_lex_state = 8}, + [2678] = {.lex_state = 36, .external_lex_state = 6}, + [2679] = {.lex_state = 37, .external_lex_state = 11}, + [2680] = {.lex_state = 36, .external_lex_state = 6}, + [2681] = {.lex_state = 37, .external_lex_state = 2}, + [2682] = {.lex_state = 37, .external_lex_state = 7}, + [2683] = {.lex_state = 37, .external_lex_state = 11}, + [2684] = {.lex_state = 37, .external_lex_state = 11}, [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}, + [2687] = {.lex_state = 41, .external_lex_state = 6}, + [2688] = {.lex_state = 49, .external_lex_state = 14}, + [2689] = {.lex_state = 37, .external_lex_state = 11}, + [2690] = {.lex_state = 36, .external_lex_state = 6}, + [2691] = {.lex_state = 36, .external_lex_state = 6}, + [2692] = {.lex_state = 36, .external_lex_state = 8}, + [2693] = {.lex_state = 37, .external_lex_state = 11}, + [2694] = {.lex_state = 37, .external_lex_state = 11}, + [2695] = {.lex_state = 37, .external_lex_state = 11}, + [2696] = {.lex_state = 36, .external_lex_state = 6}, + [2697] = {.lex_state = 41, .external_lex_state = 6}, + [2698] = {.lex_state = 36, .external_lex_state = 6}, + [2699] = {.lex_state = 36, .external_lex_state = 8}, + [2700] = {.lex_state = 46, .external_lex_state = 15}, + [2701] = {.lex_state = 37, .external_lex_state = 11}, + [2702] = {.lex_state = 36, .external_lex_state = 6}, + [2703] = {.lex_state = 36, .external_lex_state = 8}, + [2704] = {.lex_state = 36, .external_lex_state = 6}, + [2705] = {.lex_state = 41, .external_lex_state = 8}, + [2706] = {.lex_state = 36, .external_lex_state = 6}, [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}, + [2708] = {.lex_state = 41, .external_lex_state = 14}, + [2709] = {.lex_state = 41, .external_lex_state = 6}, + [2710] = {.lex_state = 36, .external_lex_state = 6}, + [2711] = {.lex_state = 36, .external_lex_state = 8}, + [2712] = {.lex_state = 37, .external_lex_state = 11}, + [2713] = {.lex_state = 41, .external_lex_state = 14}, + [2714] = {.lex_state = 38, .external_lex_state = 12}, + [2715] = {.lex_state = 37, .external_lex_state = 14}, + [2716] = {.lex_state = 37, .external_lex_state = 11}, + [2717] = {.lex_state = 37, .external_lex_state = 11}, + [2718] = {.lex_state = 37, .external_lex_state = 11}, + [2719] = {.lex_state = 41, .external_lex_state = 8}, + [2720] = {.lex_state = 36, .external_lex_state = 6}, + [2721] = {.lex_state = 37, .external_lex_state = 11}, + [2722] = {.lex_state = 36, .external_lex_state = 6}, + [2723] = {.lex_state = 37, .external_lex_state = 11}, [2724] = {.lex_state = 37, .external_lex_state = 11}, - [2725] = {.lex_state = 37, .external_lex_state = 12}, + [2725] = {.lex_state = 37, .external_lex_state = 11}, [2726] = {.lex_state = 37, .external_lex_state = 11}, - [2727] = {.lex_state = 37, .external_lex_state = 8}, + [2727] = {.lex_state = 37, .external_lex_state = 11}, [2728] = {.lex_state = 37, .external_lex_state = 11}, - [2729] = {.lex_state = 37, .external_lex_state = 11}, - [2730] = {.lex_state = 36, .external_lex_state = 12}, + [2729] = {.lex_state = 36, .external_lex_state = 6}, + [2730] = {.lex_state = 36, .external_lex_state = 8}, [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}, + [2732] = {.lex_state = 37, .external_lex_state = 14}, + [2733] = {.lex_state = 36, .external_lex_state = 6}, + [2734] = {.lex_state = 36, .external_lex_state = 8}, + [2735] = {.lex_state = 36, .external_lex_state = 8}, + [2736] = {.lex_state = 37, .external_lex_state = 11}, + [2737] = {.lex_state = 37, .external_lex_state = 11}, + [2738] = {.lex_state = 36, .external_lex_state = 6}, + [2739] = {.lex_state = 36, .external_lex_state = 8}, + [2740] = {.lex_state = 36, .external_lex_state = 6}, + [2741] = {.lex_state = 37, .external_lex_state = 11}, + [2742] = {.lex_state = 39, .external_lex_state = 16}, + [2743] = {.lex_state = 40, .external_lex_state = 16}, + [2744] = {.lex_state = 37, .external_lex_state = 16}, + [2745] = {.lex_state = 36, .external_lex_state = 6}, + [2746] = {.lex_state = 37, .external_lex_state = 16}, + [2747] = {.lex_state = 37, .external_lex_state = 11}, + [2748] = {.lex_state = 37, .external_lex_state = 11}, + [2749] = {.lex_state = 37, .external_lex_state = 11}, + [2750] = {.lex_state = 37, .external_lex_state = 11}, + [2751] = {.lex_state = 37, .external_lex_state = 11}, + [2752] = {.lex_state = 36, .external_lex_state = 12}, + [2753] = {.lex_state = 38, .external_lex_state = 16}, + [2754] = {.lex_state = 37, .external_lex_state = 11}, + [2755] = {.lex_state = 37, .external_lex_state = 2}, + [2756] = {.lex_state = 37, .external_lex_state = 11}, + [2757] = {.lex_state = 37, .external_lex_state = 11}, + [2758] = {.lex_state = 37, .external_lex_state = 15}, + [2759] = {.lex_state = 37, .external_lex_state = 11}, + [2760] = {.lex_state = 37, .external_lex_state = 14}, + [2761] = {.lex_state = 37, .external_lex_state = 12}, + [2762] = {.lex_state = 37, .external_lex_state = 15}, + [2763] = {.lex_state = 37, .external_lex_state = 11}, + [2764] = {.lex_state = 37, .external_lex_state = 12}, + [2765] = {.lex_state = 41, .external_lex_state = 15}, + [2766] = {.lex_state = 36, .external_lex_state = 2}, + [2767] = {.lex_state = 37, .external_lex_state = 14}, + [2768] = {.lex_state = 41, .external_lex_state = 14}, + [2769] = {.lex_state = 41, .external_lex_state = 14}, + [2770] = {.lex_state = 37, .external_lex_state = 11}, + [2771] = {.lex_state = 37, .external_lex_state = 11}, + [2772] = {.lex_state = 49, .external_lex_state = 15}, + [2773] = {.lex_state = 41, .external_lex_state = 16}, + [2774] = {.lex_state = 41, .external_lex_state = 16}, + [2775] = {.lex_state = 37, .external_lex_state = 11}, + [2776] = {.lex_state = 41, .external_lex_state = 15}, + [2777] = {.lex_state = 41, .external_lex_state = 16}, + [2778] = {.lex_state = 50, .external_lex_state = 14}, + [2779] = {.lex_state = 36, .external_lex_state = 2}, + [2780] = {.lex_state = 41, .external_lex_state = 14}, + [2781] = {.lex_state = 41, .external_lex_state = 14}, + [2782] = {.lex_state = 41, .external_lex_state = 7}, + [2783] = {.lex_state = 36, .external_lex_state = 2}, + [2784] = {.lex_state = 36, .external_lex_state = 2}, + [2785] = {.lex_state = 37, .external_lex_state = 11}, + [2786] = {.lex_state = 41, .external_lex_state = 14}, + [2787] = {.lex_state = 36, .external_lex_state = 2}, + [2788] = {.lex_state = 41, .external_lex_state = 14}, + [2789] = {.lex_state = 41, .external_lex_state = 7}, + [2790] = {.lex_state = 41, .external_lex_state = 14}, + [2791] = {.lex_state = 37, .external_lex_state = 16}, + [2792] = {.lex_state = 41, .external_lex_state = 16}, + [2793] = {.lex_state = 38, .external_lex_state = 15}, [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}, + [2795] = {.lex_state = 37, .external_lex_state = 14}, + [2796] = {.lex_state = 37, .external_lex_state = 14}, + [2797] = {.lex_state = 41, .external_lex_state = 14}, + [2798] = {.lex_state = 41, .external_lex_state = 15}, + [2799] = {.lex_state = 40, .external_lex_state = 15}, + [2800] = {.lex_state = 37, .external_lex_state = 11}, + [2801] = {.lex_state = 51, .external_lex_state = 14}, + [2802] = {.lex_state = 37, .external_lex_state = 12}, + [2803] = {.lex_state = 39, .external_lex_state = 16}, + [2804] = {.lex_state = 40, .external_lex_state = 16}, + [2805] = {.lex_state = 51, .external_lex_state = 14}, + [2806] = {.lex_state = 41, .external_lex_state = 14}, + [2807] = {.lex_state = 41, .external_lex_state = 14}, + [2808] = {.lex_state = 41, .external_lex_state = 14}, + [2809] = {.lex_state = 41, .external_lex_state = 14}, + [2810] = {.lex_state = 41, .external_lex_state = 14}, + [2811] = {.lex_state = 41, .external_lex_state = 14}, + [2812] = {.lex_state = 41, .external_lex_state = 14}, + [2813] = {.lex_state = 41, .external_lex_state = 15}, + [2814] = {.lex_state = 41, .external_lex_state = 15}, + [2815] = {.lex_state = 52, .external_lex_state = 12}, + [2816] = {.lex_state = 37, .external_lex_state = 11}, + [2817] = {.lex_state = 37, .external_lex_state = 11}, + [2818] = {.lex_state = 49, .external_lex_state = 16}, + [2819] = {.lex_state = 37, .external_lex_state = 11}, + [2820] = {.lex_state = 37, .external_lex_state = 11}, + [2821] = {.lex_state = 38, .external_lex_state = 16}, + [2822] = {.lex_state = 37, .external_lex_state = 14}, + [2823] = {.lex_state = 37, .external_lex_state = 14}, + [2824] = {.lex_state = 37, .external_lex_state = 14}, + [2825] = {.lex_state = 37, .external_lex_state = 14}, + [2826] = {.lex_state = 37, .external_lex_state = 14}, + [2827] = {.lex_state = 37, .external_lex_state = 14}, + [2828] = {.lex_state = 37, .external_lex_state = 14}, + [2829] = {.lex_state = 37, .external_lex_state = 11}, + [2830] = {.lex_state = 37, .external_lex_state = 15}, + [2831] = {.lex_state = 37, .external_lex_state = 11}, + [2832] = {.lex_state = 41, .external_lex_state = 16}, + [2833] = {.lex_state = 37, .external_lex_state = 11}, [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}, + [2835] = {.lex_state = 39, .external_lex_state = 15}, + [2836] = {.lex_state = 41, .external_lex_state = 14}, + [2837] = {.lex_state = 41, .external_lex_state = 15}, + [2838] = {.lex_state = 41, .external_lex_state = 16}, + [2839] = {.lex_state = 41, .external_lex_state = 14}, + [2840] = {.lex_state = 36, .external_lex_state = 7}, + [2841] = {.lex_state = 48, .external_lex_state = 14}, + [2842] = {.lex_state = 41, .external_lex_state = 15}, + [2843] = {.lex_state = 36, .external_lex_state = 7}, + [2844] = {.lex_state = 36, .external_lex_state = 7}, + [2845] = {.lex_state = 41, .external_lex_state = 14}, + [2846] = {.lex_state = 41, .external_lex_state = 14}, + [2847] = {.lex_state = 41, .external_lex_state = 14}, + [2848] = {.lex_state = 41, .external_lex_state = 14}, + [2849] = {.lex_state = 36, .external_lex_state = 12}, + [2850] = {.lex_state = 41, .external_lex_state = 16}, + [2851] = {.lex_state = 41, .external_lex_state = 14}, + [2852] = {.lex_state = 41, .external_lex_state = 14}, + [2853] = {.lex_state = 41, .external_lex_state = 15}, + [2854] = {.lex_state = 41, .external_lex_state = 15}, [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}, + [2856] = {.lex_state = 41, .external_lex_state = 6}, + [2857] = {.lex_state = 41, .external_lex_state = 14}, + [2858] = {.lex_state = 41, .external_lex_state = 14}, + [2859] = {.lex_state = 36, .external_lex_state = 7}, + [2860] = {.lex_state = 36, .external_lex_state = 7}, + [2861] = {.lex_state = 41, .external_lex_state = 14}, + [2862] = {.lex_state = 41, .external_lex_state = 14}, + [2863] = {.lex_state = 41, .external_lex_state = 14}, + [2864] = {.lex_state = 41, .external_lex_state = 14}, + [2865] = {.lex_state = 37, .external_lex_state = 12}, + [2866] = {.lex_state = 41, .external_lex_state = 14}, + [2867] = {.lex_state = 41, .external_lex_state = 16}, + [2868] = {.lex_state = 36, .external_lex_state = 7}, + [2869] = {.lex_state = 36, .external_lex_state = 7}, + [2870] = {.lex_state = 41, .external_lex_state = 16}, + [2871] = {.lex_state = 51, .external_lex_state = 15}, + [2872] = {.lex_state = 51, .external_lex_state = 15}, + [2873] = {.lex_state = 41, .external_lex_state = 16}, + [2874] = {.lex_state = 36, .external_lex_state = 12}, + [2875] = {.lex_state = 41, .external_lex_state = 15}, + [2876] = {.lex_state = 41, .external_lex_state = 15}, + [2877] = {.lex_state = 41, .external_lex_state = 15}, + [2878] = {.lex_state = 41, .external_lex_state = 15}, + [2879] = {.lex_state = 41, .external_lex_state = 16}, + [2880] = {.lex_state = 41, .external_lex_state = 14}, + [2881] = {.lex_state = 36, .external_lex_state = 7}, + [2882] = {.lex_state = 41, .external_lex_state = 15}, + [2883] = {.lex_state = 41, .external_lex_state = 14}, + [2884] = {.lex_state = 41, .external_lex_state = 16}, + [2885] = {.lex_state = 51, .external_lex_state = 16}, + [2886] = {.lex_state = 51, .external_lex_state = 16}, + [2887] = {.lex_state = 41, .external_lex_state = 15}, + [2888] = {.lex_state = 41, .external_lex_state = 15}, + [2889] = {.lex_state = 41, .external_lex_state = 15}, + [2890] = {.lex_state = 41, .external_lex_state = 15}, + [2891] = {.lex_state = 41, .external_lex_state = 15}, + [2892] = {.lex_state = 41, .external_lex_state = 14}, + [2893] = {.lex_state = 41, .external_lex_state = 15}, + [2894] = {.lex_state = 41, .external_lex_state = 15}, + [2895] = {.lex_state = 37, .external_lex_state = 2}, + [2896] = {.lex_state = 41, .external_lex_state = 14}, + [2897] = {.lex_state = 41, .external_lex_state = 16}, + [2898] = {.lex_state = 41, .external_lex_state = 15}, + [2899] = {.lex_state = 41, .external_lex_state = 16}, + [2900] = {.lex_state = 37, .external_lex_state = 7}, + [2901] = {.lex_state = 36, .external_lex_state = 7}, [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}, + [2903] = {.lex_state = 41, .external_lex_state = 15}, + [2904] = {.lex_state = 37, .external_lex_state = 2}, + [2905] = {.lex_state = 41, .external_lex_state = 15}, + [2906] = {.lex_state = 48, .external_lex_state = 14}, + [2907] = {.lex_state = 41, .external_lex_state = 14}, + [2908] = {.lex_state = 41, .external_lex_state = 14}, + [2909] = {.lex_state = 41, .external_lex_state = 16}, + [2910] = {.lex_state = 37, .external_lex_state = 11}, + [2911] = {.lex_state = 36, .external_lex_state = 12}, + [2912] = {.lex_state = 37, .external_lex_state = 11}, + [2913] = {.lex_state = 41, .external_lex_state = 14}, + [2914] = {.lex_state = 37, .external_lex_state = 11}, + [2915] = {.lex_state = 39, .external_lex_state = 15}, + [2916] = {.lex_state = 40, .external_lex_state = 15}, + [2917] = {.lex_state = 37, .external_lex_state = 11}, + [2918] = {.lex_state = 37, .external_lex_state = 11}, + [2919] = {.lex_state = 41, .external_lex_state = 14}, + [2920] = {.lex_state = 37, .external_lex_state = 11}, + [2921] = {.lex_state = 37, .external_lex_state = 11}, + [2922] = {.lex_state = 36, .external_lex_state = 7}, + [2923] = {.lex_state = 41, .external_lex_state = 16}, + [2924] = {.lex_state = 36, .external_lex_state = 7}, + [2925] = {.lex_state = 41, .external_lex_state = 16}, + [2926] = {.lex_state = 41, .external_lex_state = 16}, + [2927] = {.lex_state = 41, .external_lex_state = 15}, + [2928] = {.lex_state = 41, .external_lex_state = 15}, + [2929] = {.lex_state = 41, .external_lex_state = 15}, + [2930] = {.lex_state = 41, .external_lex_state = 16}, + [2931] = {.lex_state = 41, .external_lex_state = 14}, + [2932] = {.lex_state = 41, .external_lex_state = 16}, + [2933] = {.lex_state = 41, .external_lex_state = 16}, + [2934] = {.lex_state = 51, .external_lex_state = 14}, + [2935] = {.lex_state = 41, .external_lex_state = 14}, + [2936] = {.lex_state = 37, .external_lex_state = 11}, + [2937] = {.lex_state = 51, .external_lex_state = 14}, + [2938] = {.lex_state = 41, .external_lex_state = 16}, + [2939] = {.lex_state = 37, .external_lex_state = 16}, + [2940] = {.lex_state = 37, .external_lex_state = 14}, + [2941] = {.lex_state = 41, .external_lex_state = 16}, + [2942] = {.lex_state = 37, .external_lex_state = 14}, + [2943] = {.lex_state = 41, .external_lex_state = 15}, + [2944] = {.lex_state = 41, .external_lex_state = 14}, + [2945] = {.lex_state = 41, .external_lex_state = 14}, + [2946] = {.lex_state = 36, .external_lex_state = 7}, + [2947] = {.lex_state = 36, .external_lex_state = 7}, + [2948] = {.lex_state = 41, .external_lex_state = 14}, + [2949] = {.lex_state = 36, .external_lex_state = 7}, + [2950] = {.lex_state = 36, .external_lex_state = 7}, + [2951] = {.lex_state = 41, .external_lex_state = 16}, + [2952] = {.lex_state = 41, .external_lex_state = 14}, + [2953] = {.lex_state = 37, .external_lex_state = 11}, + [2954] = {.lex_state = 41, .external_lex_state = 14}, + [2955] = {.lex_state = 41, .external_lex_state = 15}, + [2956] = {.lex_state = 36, .external_lex_state = 7}, + [2957] = {.lex_state = 36, .external_lex_state = 7}, + [2958] = {.lex_state = 41, .external_lex_state = 14}, + [2959] = {.lex_state = 37, .external_lex_state = 12}, + [2960] = {.lex_state = 37, .external_lex_state = 11}, + [2961] = {.lex_state = 37, .external_lex_state = 12}, + [2962] = {.lex_state = 41, .external_lex_state = 14}, + [2963] = {.lex_state = 41, .external_lex_state = 16}, + [2964] = {.lex_state = 41, .external_lex_state = 14}, + [2965] = {.lex_state = 36, .external_lex_state = 7}, + [2966] = {.lex_state = 36, .external_lex_state = 7}, + [2967] = {.lex_state = 41, .external_lex_state = 15}, + [2968] = {.lex_state = 36, .external_lex_state = 7}, + [2969] = {.lex_state = 36, .external_lex_state = 12}, + [2970] = {.lex_state = 37, .external_lex_state = 8}, + [2971] = {.lex_state = 48, .external_lex_state = 14}, + [2972] = {.lex_state = 48, .external_lex_state = 14}, + [2973] = {.lex_state = 41, .external_lex_state = 15}, + [2974] = {.lex_state = 41, .external_lex_state = 15}, + [2975] = {.lex_state = 37, .external_lex_state = 14}, + [2976] = {.lex_state = 41, .external_lex_state = 15}, + [2977] = {.lex_state = 41, .external_lex_state = 14}, + [2978] = {.lex_state = 37, .external_lex_state = 12}, + [2979] = {.lex_state = 41, .external_lex_state = 16}, + [2980] = {.lex_state = 51, .external_lex_state = 15}, + [2981] = {.lex_state = 41, .external_lex_state = 16}, + [2982] = {.lex_state = 41, .external_lex_state = 15}, + [2983] = {.lex_state = 37, .external_lex_state = 8}, + [2984] = {.lex_state = 41, .external_lex_state = 14}, + [2985] = {.lex_state = 51, .external_lex_state = 15}, + [2986] = {.lex_state = 37, .external_lex_state = 11}, + [2987] = {.lex_state = 36, .external_lex_state = 12}, + [2988] = {.lex_state = 38, .external_lex_state = 15}, + [2989] = {.lex_state = 41, .external_lex_state = 14}, + [2990] = {.lex_state = 41, .external_lex_state = 15}, + [2991] = {.lex_state = 41, .external_lex_state = 14}, + [2992] = {.lex_state = 41, .external_lex_state = 14}, + [2993] = {.lex_state = 41, .external_lex_state = 14}, + [2994] = {.lex_state = 41, .external_lex_state = 14}, + [2995] = {.lex_state = 41, .external_lex_state = 14}, + [2996] = {.lex_state = 41, .external_lex_state = 14}, + [2997] = {.lex_state = 37, .external_lex_state = 11}, + [2998] = {.lex_state = 41, .external_lex_state = 14}, + [2999] = {.lex_state = 37, .external_lex_state = 11}, + [3000] = {.lex_state = 37, .external_lex_state = 8}, + [3001] = {.lex_state = 41, .external_lex_state = 14}, + [3002] = {.lex_state = 41, .external_lex_state = 14}, + [3003] = {.lex_state = 41, .external_lex_state = 14}, + [3004] = {.lex_state = 36, .external_lex_state = 12}, + [3005] = {.lex_state = 41, .external_lex_state = 14}, + [3006] = {.lex_state = 41, .external_lex_state = 14}, + [3007] = {.lex_state = 41, .external_lex_state = 14}, + [3008] = {.lex_state = 37, .external_lex_state = 11}, + [3009] = {.lex_state = 37, .external_lex_state = 11}, + [3010] = {.lex_state = 41, .external_lex_state = 8}, + [3011] = {.lex_state = 37, .external_lex_state = 16}, + [3012] = {.lex_state = 36, .external_lex_state = 12}, + [3013] = {.lex_state = 36, .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}, + [3015] = {.lex_state = 48, .external_lex_state = 12}, + [3016] = {.lex_state = 41, .external_lex_state = 14}, + [3017] = {.lex_state = 37, .external_lex_state = 11}, + [3018] = {.lex_state = 41, .external_lex_state = 14}, + [3019] = {.lex_state = 37, .external_lex_state = 11}, + [3020] = {.lex_state = 37, .external_lex_state = 11}, + [3021] = {.lex_state = 37, .external_lex_state = 11}, + [3022] = {.lex_state = 41, .external_lex_state = 8}, + [3023] = {.lex_state = 41, .external_lex_state = 14}, + [3024] = {.lex_state = 41, .external_lex_state = 6}, + [3025] = {.lex_state = 41, .external_lex_state = 14}, + [3026] = {.lex_state = 41, .external_lex_state = 14}, + [3027] = {.lex_state = 48, .external_lex_state = 12}, + [3028] = {.lex_state = 48, .external_lex_state = 12}, + [3029] = {.lex_state = 41, .external_lex_state = 14}, + [3030] = {.lex_state = 37, .external_lex_state = 11}, + [3031] = {.lex_state = 37, .external_lex_state = 7}, + [3032] = {.lex_state = 48, .external_lex_state = 11}, + [3033] = {.lex_state = 41, .external_lex_state = 14}, + [3034] = {.lex_state = 41, .external_lex_state = 14}, + [3035] = {.lex_state = 41, .external_lex_state = 16}, [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}, + [3037] = {.lex_state = 41, .external_lex_state = 15}, + [3038] = {.lex_state = 37, .external_lex_state = 14}, + [3039] = {.lex_state = 41, .external_lex_state = 15}, + [3040] = {.lex_state = 41, .external_lex_state = 15}, + [3041] = {.lex_state = 37, .external_lex_state = 14}, [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}, + [3043] = {.lex_state = 41, .external_lex_state = 15}, + [3044] = {.lex_state = 41, .external_lex_state = 16}, + [3045] = {.lex_state = 37, .external_lex_state = 14}, + [3046] = {.lex_state = 37, .external_lex_state = 12}, + [3047] = {.lex_state = 37, .external_lex_state = 12}, + [3048] = {.lex_state = 41, .external_lex_state = 14}, + [3049] = {.lex_state = 37, .external_lex_state = 12}, + [3050] = {.lex_state = 37, .external_lex_state = 12}, + [3051] = {.lex_state = 41, .external_lex_state = 14}, + [3052] = {.lex_state = 41, .external_lex_state = 15}, + [3053] = {.lex_state = 37, .external_lex_state = 12}, + [3054] = {.lex_state = 51, .external_lex_state = 15}, + [3055] = {.lex_state = 37, .external_lex_state = 12}, + [3056] = {.lex_state = 41, .external_lex_state = 15}, + [3057] = {.lex_state = 41, .external_lex_state = 14}, + [3058] = {.lex_state = 51, .external_lex_state = 16}, + [3059] = {.lex_state = 41, .external_lex_state = 16}, + [3060] = {.lex_state = 51, .external_lex_state = 16}, + [3061] = {.lex_state = 41, .external_lex_state = 15}, + [3062] = {.lex_state = 41, .external_lex_state = 15}, + [3063] = {.lex_state = 37, .external_lex_state = 14}, + [3064] = {.lex_state = 37, .external_lex_state = 12}, + [3065] = {.lex_state = 37, .external_lex_state = 12}, + [3066] = {.lex_state = 37, .external_lex_state = 16}, + [3067] = {.lex_state = 37, .external_lex_state = 16}, + [3068] = {.lex_state = 37, .external_lex_state = 14}, + [3069] = {.lex_state = 41, .external_lex_state = 15}, + [3070] = {.lex_state = 41, .external_lex_state = 15}, + [3071] = {.lex_state = 41, .external_lex_state = 15}, + [3072] = {.lex_state = 37, .external_lex_state = 16}, + [3073] = {.lex_state = 37, .external_lex_state = 16}, + [3074] = {.lex_state = 41, .external_lex_state = 15}, + [3075] = {.lex_state = 37, .external_lex_state = 14}, + [3076] = {.lex_state = 41, .external_lex_state = 16}, + [3077] = {.lex_state = 37, .external_lex_state = 11}, + [3078] = {.lex_state = 41, .external_lex_state = 15}, + [3079] = {.lex_state = 41, .external_lex_state = 14}, + [3080] = {.lex_state = 37, .external_lex_state = 12}, + [3081] = {.lex_state = 37, .external_lex_state = 11}, + [3082] = {.lex_state = 41, .external_lex_state = 14}, + [3083] = {.lex_state = 41, .external_lex_state = 15}, + [3084] = {.lex_state = 51, .external_lex_state = 15}, + [3085] = {.lex_state = 41, .external_lex_state = 15}, + [3086] = {.lex_state = 41, .external_lex_state = 16}, + [3087] = {.lex_state = 51, .external_lex_state = 15}, + [3088] = {.lex_state = 51, .external_lex_state = 16}, + [3089] = {.lex_state = 37, .external_lex_state = 12}, + [3090] = {.lex_state = 37, .external_lex_state = 12}, + [3091] = {.lex_state = 37, .external_lex_state = 11}, + [3092] = {.lex_state = 37, .external_lex_state = 12}, + [3093] = {.lex_state = 37, .external_lex_state = 12}, + [3094] = {.lex_state = 37, .external_lex_state = 11}, + [3095] = {.lex_state = 41, .external_lex_state = 16}, + [3096] = {.lex_state = 37, .external_lex_state = 12}, + [3097] = {.lex_state = 36, .external_lex_state = 2}, + [3098] = {.lex_state = 37, .external_lex_state = 11}, + [3099] = {.lex_state = 37, .external_lex_state = 11}, + [3100] = {.lex_state = 41, .external_lex_state = 16}, + [3101] = {.lex_state = 37, .external_lex_state = 16}, + [3102] = {.lex_state = 37, .external_lex_state = 16}, + [3103] = {.lex_state = 37, .external_lex_state = 16}, + [3104] = {.lex_state = 41, .external_lex_state = 16}, + [3105] = {.lex_state = 41, .external_lex_state = 15}, + [3106] = {.lex_state = 41, .external_lex_state = 16}, + [3107] = {.lex_state = 41, .external_lex_state = 16}, + [3108] = {.lex_state = 41, .external_lex_state = 15}, + [3109] = {.lex_state = 37, .external_lex_state = 12}, + [3110] = {.lex_state = 37, .external_lex_state = 12}, + [3111] = {.lex_state = 37, .external_lex_state = 12}, + [3112] = {.lex_state = 37, .external_lex_state = 12}, + [3113] = {.lex_state = 37, .external_lex_state = 12}, + [3114] = {.lex_state = 41, .external_lex_state = 16}, + [3115] = {.lex_state = 37, .external_lex_state = 6}, + [3116] = {.lex_state = 37, .external_lex_state = 12}, + [3117] = {.lex_state = 41, .external_lex_state = 15}, + [3118] = {.lex_state = 41, .external_lex_state = 15}, + [3119] = {.lex_state = 41, .external_lex_state = 15}, + [3120] = {.lex_state = 41, .external_lex_state = 15}, + [3121] = {.lex_state = 41, .external_lex_state = 15}, + [3122] = {.lex_state = 41, .external_lex_state = 16}, + [3123] = {.lex_state = 41, .external_lex_state = 15}, + [3124] = {.lex_state = 41, .external_lex_state = 16}, + [3125] = {.lex_state = 41, .external_lex_state = 16}, + [3126] = {.lex_state = 41, .external_lex_state = 16}, + [3127] = {.lex_state = 41, .external_lex_state = 15}, + [3128] = {.lex_state = 37, .external_lex_state = 12}, + [3129] = {.lex_state = 41, .external_lex_state = 15}, + [3130] = {.lex_state = 37, .external_lex_state = 14}, + [3131] = {.lex_state = 41, .external_lex_state = 15}, + [3132] = {.lex_state = 41, .external_lex_state = 16}, + [3133] = {.lex_state = 37, .external_lex_state = 12}, + [3134] = {.lex_state = 37, .external_lex_state = 14}, + [3135] = {.lex_state = 41, .external_lex_state = 16}, + [3136] = {.lex_state = 41, .external_lex_state = 16}, + [3137] = {.lex_state = 37, .external_lex_state = 12}, + [3138] = {.lex_state = 41, .external_lex_state = 16}, + [3139] = {.lex_state = 50, .external_lex_state = 16}, + [3140] = {.lex_state = 37, .external_lex_state = 12}, + [3141] = {.lex_state = 41, .external_lex_state = 15}, + [3142] = {.lex_state = 41, .external_lex_state = 15}, + [3143] = {.lex_state = 41, .external_lex_state = 15}, + [3144] = {.lex_state = 41, .external_lex_state = 15}, + [3145] = {.lex_state = 37, .external_lex_state = 14}, + [3146] = {.lex_state = 37, .external_lex_state = 14}, + [3147] = {.lex_state = 41, .external_lex_state = 16}, + [3148] = {.lex_state = 37, .external_lex_state = 14}, + [3149] = {.lex_state = 41, .external_lex_state = 16}, + [3150] = {.lex_state = 41, .external_lex_state = 16}, + [3151] = {.lex_state = 41, .external_lex_state = 16}, + [3152] = {.lex_state = 41, .external_lex_state = 15}, + [3153] = {.lex_state = 41, .external_lex_state = 15}, + [3154] = {.lex_state = 37, .external_lex_state = 14}, + [3155] = {.lex_state = 37, .external_lex_state = 14}, + [3156] = {.lex_state = 37, .external_lex_state = 12}, [3157] = {.lex_state = 37, .external_lex_state = 14}, - [3158] = {.lex_state = 37, .external_lex_state = 14}, + [3158] = {.lex_state = 37, .external_lex_state = 12}, [3159] = {.lex_state = 37, .external_lex_state = 14}, - [3160] = {.lex_state = 37, .external_lex_state = 14}, + [3160] = {.lex_state = 37, .external_lex_state = 12}, [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}, + [3162] = {.lex_state = 41, .external_lex_state = 16}, + [3163] = {.lex_state = 37, .external_lex_state = 14}, + [3164] = {.lex_state = 37, .external_lex_state = 12}, + [3165] = {.lex_state = 41, .external_lex_state = 16}, + [3166] = {.lex_state = 37, .external_lex_state = 14}, + [3167] = {.lex_state = 41, .external_lex_state = 16}, + [3168] = {.lex_state = 41, .external_lex_state = 16}, + [3169] = {.lex_state = 37, .external_lex_state = 14}, + [3170] = {.lex_state = 41, .external_lex_state = 16}, + [3171] = {.lex_state = 41, .external_lex_state = 16}, + [3172] = {.lex_state = 37, .external_lex_state = 6}, + [3173] = {.lex_state = 48, .external_lex_state = 12}, + [3174] = {.lex_state = 37, .external_lex_state = 12}, + [3175] = {.lex_state = 48, .external_lex_state = 16}, + [3176] = {.lex_state = 37, .external_lex_state = 15}, + [3177] = {.lex_state = 37, .external_lex_state = 14}, + [3178] = {.lex_state = 37, .external_lex_state = 14}, + [3179] = {.lex_state = 37, .external_lex_state = 14}, + [3180] = {.lex_state = 37, .external_lex_state = 14}, + [3181] = {.lex_state = 37, .external_lex_state = 14}, + [3182] = {.lex_state = 41, .external_lex_state = 16}, + [3183] = {.lex_state = 37, .external_lex_state = 12}, + [3184] = {.lex_state = 37, .external_lex_state = 12}, + [3185] = {.lex_state = 37, .external_lex_state = 12}, + [3186] = {.lex_state = 37, .external_lex_state = 12}, + [3187] = {.lex_state = 41, .external_lex_state = 16}, + [3188] = {.lex_state = 37, .external_lex_state = 14}, + [3189] = {.lex_state = 37, .external_lex_state = 12}, + [3190] = {.lex_state = 37, .external_lex_state = 14}, + [3191] = {.lex_state = 41, .external_lex_state = 16}, + [3192] = {.lex_state = 37, .external_lex_state = 14}, + [3193] = {.lex_state = 37, .external_lex_state = 12}, + [3194] = {.lex_state = 41, .external_lex_state = 16}, + [3195] = {.lex_state = 41, .external_lex_state = 16}, + [3196] = {.lex_state = 37, .external_lex_state = 15}, + [3197] = {.lex_state = 37, .external_lex_state = 12}, + [3198] = {.lex_state = 37, .external_lex_state = 14}, + [3199] = {.lex_state = 37, .external_lex_state = 12}, + [3200] = {.lex_state = 37, .external_lex_state = 14}, + [3201] = {.lex_state = 37, .external_lex_state = 12}, + [3202] = {.lex_state = 37, .external_lex_state = 14}, + [3203] = {.lex_state = 37, .external_lex_state = 14}, + [3204] = {.lex_state = 37, .external_lex_state = 14}, + [3205] = {.lex_state = 37, .external_lex_state = 12}, + [3206] = {.lex_state = 41, .external_lex_state = 16}, + [3207] = {.lex_state = 37, .external_lex_state = 14}, + [3208] = {.lex_state = 37, .external_lex_state = 14}, + [3209] = {.lex_state = 37, .external_lex_state = 14}, + [3210] = {.lex_state = 41, .external_lex_state = 16}, + [3211] = {.lex_state = 37, .external_lex_state = 12}, + [3212] = {.lex_state = 41, .external_lex_state = 16}, + [3213] = {.lex_state = 37, .external_lex_state = 14}, + [3214] = {.lex_state = 41, .external_lex_state = 16}, + [3215] = {.lex_state = 37, .external_lex_state = 12}, + [3216] = {.lex_state = 37, .external_lex_state = 14}, + [3217] = {.lex_state = 37, .external_lex_state = 12}, + [3218] = {.lex_state = 37, .external_lex_state = 14}, + [3219] = {.lex_state = 37, .external_lex_state = 12}, + [3220] = {.lex_state = 37, .external_lex_state = 12}, + [3221] = {.lex_state = 37, .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}, + [3223] = {.lex_state = 37, .external_lex_state = 14}, + [3224] = {.lex_state = 41, .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}, + [3226] = {.lex_state = 37, .external_lex_state = 14}, + [3227] = {.lex_state = 41, .external_lex_state = 16}, + [3228] = {.lex_state = 37, .external_lex_state = 14}, + [3229] = {.lex_state = 37, .external_lex_state = 14}, + [3230] = {.lex_state = 37, .external_lex_state = 12}, + [3231] = {.lex_state = 37, .external_lex_state = 12}, + [3232] = {.lex_state = 41, .external_lex_state = 16}, + [3233] = {.lex_state = 41, .external_lex_state = 16}, + [3234] = {.lex_state = 37, .external_lex_state = 12}, + [3235] = {.lex_state = 37, .external_lex_state = 12}, + [3236] = {.lex_state = 41, .external_lex_state = 15}, + [3237] = {.lex_state = 41, .external_lex_state = 15}, + [3238] = {.lex_state = 37, .external_lex_state = 12}, + [3239] = {.lex_state = 37, .external_lex_state = 14}, + [3240] = {.lex_state = 37, .external_lex_state = 14}, + [3241] = {.lex_state = 37, .external_lex_state = 12}, + [3242] = {.lex_state = 37, .external_lex_state = 14}, + [3243] = {.lex_state = 37, .external_lex_state = 14}, + [3244] = {.lex_state = 41, .external_lex_state = 16}, + [3245] = {.lex_state = 37, .external_lex_state = 14}, + [3246] = {.lex_state = 41, .external_lex_state = 14}, + [3247] = {.lex_state = 41, .external_lex_state = 16}, + [3248] = {.lex_state = 37, .external_lex_state = 14}, + [3249] = {.lex_state = 37, .external_lex_state = 14}, + [3250] = {.lex_state = 37, .external_lex_state = 14}, + [3251] = {.lex_state = 41, .external_lex_state = 16}, + [3252] = {.lex_state = 37, .external_lex_state = 6}, + [3253] = {.lex_state = 37, .external_lex_state = 14}, + [3254] = {.lex_state = 37, .external_lex_state = 14}, [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}, + [3256] = {.lex_state = 41, .external_lex_state = 14}, + [3257] = {.lex_state = 37, .external_lex_state = 14}, + [3258] = {.lex_state = 41, .external_lex_state = 15}, + [3259] = {.lex_state = 37, .external_lex_state = 14}, + [3260] = {.lex_state = 41, .external_lex_state = 15}, + [3261] = {.lex_state = 41, .external_lex_state = 15}, + [3262] = {.lex_state = 51, .external_lex_state = 15}, [3263] = {.lex_state = 37, .external_lex_state = 12}, - [3264] = {.lex_state = 37, .external_lex_state = 12}, + [3264] = {.lex_state = 41, .external_lex_state = 15}, [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}, + [3268] = {.lex_state = 37, .external_lex_state = 14}, + [3269] = {.lex_state = 41, .external_lex_state = 15}, + [3270] = {.lex_state = 37, .external_lex_state = 14}, + [3271] = {.lex_state = 37, .external_lex_state = 14}, + [3272] = {.lex_state = 37, .external_lex_state = 16}, + [3273] = {.lex_state = 41, .external_lex_state = 16}, + [3274] = {.lex_state = 37, .external_lex_state = 12}, + [3275] = {.lex_state = 51, .external_lex_state = 16}, + [3276] = {.lex_state = 37, .external_lex_state = 12}, + [3277] = {.lex_state = 37, .external_lex_state = 12}, + [3278] = {.lex_state = 41, .external_lex_state = 15}, + [3279] = {.lex_state = 41, .external_lex_state = 16}, + [3280] = {.lex_state = 41, .external_lex_state = 16}, + [3281] = {.lex_state = 37, .external_lex_state = 14}, + [3282] = {.lex_state = 37, .external_lex_state = 12}, + [3283] = {.lex_state = 48, .external_lex_state = 16}, + [3284] = {.lex_state = 41, .external_lex_state = 15}, + [3285] = {.lex_state = 37, .external_lex_state = 15}, + [3286] = {.lex_state = 37, .external_lex_state = 11}, + [3287] = {.lex_state = 37, .external_lex_state = 12}, + [3288] = {.lex_state = 53, .external_lex_state = 11}, + [3289] = {.lex_state = 46, .external_lex_state = 15}, + [3290] = {.lex_state = 41, .external_lex_state = 16}, + [3291] = {.lex_state = 41, .external_lex_state = 16}, + [3292] = {.lex_state = 41, .external_lex_state = 16}, + [3293] = {.lex_state = 48, .external_lex_state = 12}, + [3294] = {.lex_state = 41, .external_lex_state = 16}, + [3295] = {.lex_state = 41, .external_lex_state = 16}, + [3296] = {.lex_state = 41, .external_lex_state = 16}, + [3297] = {.lex_state = 53, .external_lex_state = 11}, + [3298] = {.lex_state = 41, .external_lex_state = 16}, + [3299] = {.lex_state = 37, .external_lex_state = 11}, + [3300] = {.lex_state = 41, .external_lex_state = 16}, + [3301] = {.lex_state = 37, .external_lex_state = 15}, + [3302] = {.lex_state = 37, .external_lex_state = 11}, + [3303] = {.lex_state = 36, .external_lex_state = 2}, + [3304] = {.lex_state = 41, .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}, + [3306] = {.lex_state = 53, .external_lex_state = 11}, + [3307] = {.lex_state = 41, .external_lex_state = 16}, + [3308] = {.lex_state = 37, .external_lex_state = 11}, + [3309] = {.lex_state = 37, .external_lex_state = 11}, + [3310] = {.lex_state = 41, .external_lex_state = 16}, + [3311] = {.lex_state = 36, .external_lex_state = 2}, + [3312] = {.lex_state = 15, .external_lex_state = 12}, + [3313] = {.lex_state = 37, .external_lex_state = 15}, + [3314] = {.lex_state = 37, .external_lex_state = 11}, + [3315] = {.lex_state = 15, .external_lex_state = 12}, + [3316] = {.lex_state = 37, .external_lex_state = 15}, + [3317] = {.lex_state = 37, .external_lex_state = 12}, + [3318] = {.lex_state = 37, .external_lex_state = 12}, + [3319] = {.lex_state = 36, .external_lex_state = 2}, + [3320] = {.lex_state = 37, .external_lex_state = 12}, + [3321] = {.lex_state = 41, .external_lex_state = 15}, + [3322] = {.lex_state = 37, .external_lex_state = 15}, + [3323] = {.lex_state = 53, .external_lex_state = 11}, + [3324] = {.lex_state = 37, .external_lex_state = 12}, + [3325] = {.lex_state = 37, .external_lex_state = 12}, + [3326] = {.lex_state = 53, .external_lex_state = 11}, + [3327] = {.lex_state = 37, .external_lex_state = 11}, + [3328] = {.lex_state = 36, .external_lex_state = 2}, + [3329] = {.lex_state = 41, .external_lex_state = 14}, + [3330] = {.lex_state = 41, .external_lex_state = 14}, + [3331] = {.lex_state = 41, .external_lex_state = 14}, + [3332] = {.lex_state = 41, .external_lex_state = 14}, + [3333] = {.lex_state = 41, .external_lex_state = 14}, + [3334] = {.lex_state = 41, .external_lex_state = 14}, + [3335] = {.lex_state = 36, .external_lex_state = 2}, + [3336] = {.lex_state = 36, .external_lex_state = 2}, + [3337] = {.lex_state = 37, .external_lex_state = 16}, + [3338] = {.lex_state = 37, .external_lex_state = 16}, + [3339] = {.lex_state = 48, .external_lex_state = 15}, + [3340] = {.lex_state = 48, .external_lex_state = 15}, + [3341] = {.lex_state = 37, .external_lex_state = 15}, + [3342] = {.lex_state = 37, .external_lex_state = 11}, + [3343] = {.lex_state = 37, .external_lex_state = 11}, + [3344] = {.lex_state = 37, .external_lex_state = 15}, + [3345] = {.lex_state = 37, .external_lex_state = 16}, + [3346] = {.lex_state = 37, .external_lex_state = 12}, + [3347] = {.lex_state = 36, .external_lex_state = 2}, + [3348] = {.lex_state = 36, .external_lex_state = 2}, + [3349] = {.lex_state = 37, .external_lex_state = 12}, + [3350] = {.lex_state = 37, .external_lex_state = 12}, + [3351] = {.lex_state = 37, .external_lex_state = 8}, + [3352] = {.lex_state = 37, .external_lex_state = 12}, + [3353] = {.lex_state = 37, .external_lex_state = 15}, + [3354] = {.lex_state = 53, .external_lex_state = 11}, + [3355] = {.lex_state = 41, .external_lex_state = 15}, + [3356] = {.lex_state = 41, .external_lex_state = 16}, + [3357] = {.lex_state = 41, .external_lex_state = 15}, + [3358] = {.lex_state = 41, .external_lex_state = 15}, + [3359] = {.lex_state = 41, .external_lex_state = 15}, + [3360] = {.lex_state = 41, .external_lex_state = 16}, + [3361] = {.lex_state = 41, .external_lex_state = 15}, + [3362] = {.lex_state = 41, .external_lex_state = 15}, + [3363] = {.lex_state = 53, .external_lex_state = 11}, + [3364] = {.lex_state = 41, .external_lex_state = 16}, + [3365] = {.lex_state = 37, .external_lex_state = 8}, + [3366] = {.lex_state = 41, .external_lex_state = 16}, + [3367] = {.lex_state = 36, .external_lex_state = 2}, + [3368] = {.lex_state = 53, .external_lex_state = 11}, + [3369] = {.lex_state = 53, .external_lex_state = 11}, + [3370] = {.lex_state = 37, .external_lex_state = 11}, + [3371] = {.lex_state = 37, .external_lex_state = 15}, + [3372] = {.lex_state = 41, .external_lex_state = 15}, + [3373] = {.lex_state = 41, .external_lex_state = 15}, + [3374] = {.lex_state = 41, .external_lex_state = 15}, + [3375] = {.lex_state = 48, .external_lex_state = 16}, + [3376] = {.lex_state = 41, .external_lex_state = 15}, + [3377] = {.lex_state = 41, .external_lex_state = 15}, + [3378] = {.lex_state = 41, .external_lex_state = 15}, + [3379] = {.lex_state = 37, .external_lex_state = 11}, + [3380] = {.lex_state = 37, .external_lex_state = 11}, + [3381] = {.lex_state = 53, .external_lex_state = 11}, + [3382] = {.lex_state = 53, .external_lex_state = 11}, + [3383] = {.lex_state = 53, .external_lex_state = 11}, + [3384] = {.lex_state = 41, .external_lex_state = 15}, + [3385] = {.lex_state = 41, .external_lex_state = 15}, + [3386] = {.lex_state = 37, .external_lex_state = 11}, + [3387] = {.lex_state = 41, .external_lex_state = 15}, + [3388] = {.lex_state = 53, .external_lex_state = 11}, + [3389] = {.lex_state = 53, .external_lex_state = 11}, + [3390] = {.lex_state = 41, .external_lex_state = 16}, + [3391] = {.lex_state = 37, .external_lex_state = 11}, + [3392] = {.lex_state = 41, .external_lex_state = 16}, + [3393] = {.lex_state = 37, .external_lex_state = 15}, + [3394] = {.lex_state = 37, .external_lex_state = 16}, + [3395] = {.lex_state = 37, .external_lex_state = 15}, + [3396] = {.lex_state = 37, .external_lex_state = 15}, + [3397] = {.lex_state = 37, .external_lex_state = 16}, + [3398] = {.lex_state = 37, .external_lex_state = 16}, + [3399] = {.lex_state = 37, .external_lex_state = 16}, + [3400] = {.lex_state = 37, .external_lex_state = 16}, + [3401] = {.lex_state = 37, .external_lex_state = 16}, + [3402] = {.lex_state = 37, .external_lex_state = 6}, + [3403] = {.lex_state = 37, .external_lex_state = 16}, + [3404] = {.lex_state = 48, .external_lex_state = 16}, + [3405] = {.lex_state = 37, .external_lex_state = 16}, + [3406] = {.lex_state = 37, .external_lex_state = 16}, + [3407] = {.lex_state = 37, .external_lex_state = 12}, + [3408] = {.lex_state = 37, .external_lex_state = 16}, + [3409] = {.lex_state = 37, .external_lex_state = 16}, [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}, + [3411] = {.lex_state = 37, .external_lex_state = 16}, + [3412] = {.lex_state = 37, .external_lex_state = 16}, + [3413] = {.lex_state = 48, .external_lex_state = 15}, + [3414] = {.lex_state = 37, .external_lex_state = 16}, + [3415] = {.lex_state = 37, .external_lex_state = 15}, + [3416] = {.lex_state = 37, .external_lex_state = 16}, + [3417] = {.lex_state = 37, .external_lex_state = 12}, + [3418] = {.lex_state = 37, .external_lex_state = 16}, + [3419] = {.lex_state = 48, .external_lex_state = 15}, + [3420] = {.lex_state = 37, .external_lex_state = 16}, + [3421] = {.lex_state = 37, .external_lex_state = 12}, + [3422] = {.lex_state = 37, .external_lex_state = 16}, + [3423] = {.lex_state = 37, .external_lex_state = 16}, + [3424] = {.lex_state = 37, .external_lex_state = 16}, + [3425] = {.lex_state = 37, .external_lex_state = 6}, + [3426] = {.lex_state = 37, .external_lex_state = 16}, + [3427] = {.lex_state = 37, .external_lex_state = 16}, + [3428] = {.lex_state = 37, .external_lex_state = 12}, + [3429] = {.lex_state = 37, .external_lex_state = 16}, + [3430] = {.lex_state = 37, .external_lex_state = 16}, + [3431] = {.lex_state = 37, .external_lex_state = 16}, + [3432] = {.lex_state = 37, .external_lex_state = 12}, + [3433] = {.lex_state = 37, .external_lex_state = 16}, + [3434] = {.lex_state = 37, .external_lex_state = 16}, + [3435] = {.lex_state = 37, .external_lex_state = 16}, + [3436] = {.lex_state = 37, .external_lex_state = 16}, + [3437] = {.lex_state = 37, .external_lex_state = 16}, + [3438] = {.lex_state = 37, .external_lex_state = 12}, + [3439] = {.lex_state = 37, .external_lex_state = 12}, + [3440] = {.lex_state = 37, .external_lex_state = 12}, + [3441] = {.lex_state = 37, .external_lex_state = 16}, + [3442] = {.lex_state = 37, .external_lex_state = 16}, + [3443] = {.lex_state = 37, .external_lex_state = 16}, + [3444] = {.lex_state = 37, .external_lex_state = 16}, + [3445] = {.lex_state = 37, .external_lex_state = 16}, + [3446] = {.lex_state = 37, .external_lex_state = 16}, + [3447] = {.lex_state = 37, .external_lex_state = 16}, + [3448] = {.lex_state = 37, .external_lex_state = 12}, + [3449] = {.lex_state = 37, .external_lex_state = 16}, + [3450] = {.lex_state = 37, .external_lex_state = 16}, + [3451] = {.lex_state = 37, .external_lex_state = 12}, + [3452] = {.lex_state = 37, .external_lex_state = 16}, + [3453] = {.lex_state = 37, .external_lex_state = 16}, + [3454] = {.lex_state = 37, .external_lex_state = 16}, + [3455] = {.lex_state = 37, .external_lex_state = 16}, + [3456] = {.lex_state = 37, .external_lex_state = 16}, + [3457] = {.lex_state = 37, .external_lex_state = 16}, + [3458] = {.lex_state = 37, .external_lex_state = 12}, + [3459] = {.lex_state = 48, .external_lex_state = 16}, + [3460] = {.lex_state = 37, .external_lex_state = 12}, + [3461] = {.lex_state = 37, .external_lex_state = 12}, + [3462] = {.lex_state = 37, .external_lex_state = 12}, + [3463] = {.lex_state = 48, .external_lex_state = 15}, + [3464] = {.lex_state = 48, .external_lex_state = 15}, + [3465] = {.lex_state = 37, .external_lex_state = 12}, + [3466] = {.lex_state = 48, .external_lex_state = 14}, + [3467] = {.lex_state = 37, .external_lex_state = 16}, + [3468] = {.lex_state = 48, .external_lex_state = 14}, + [3469] = {.lex_state = 37, .external_lex_state = 16}, + [3470] = {.lex_state = 37, .external_lex_state = 16}, + [3471] = {.lex_state = 37, .external_lex_state = 12}, + [3472] = {.lex_state = 37, .external_lex_state = 16}, + [3473] = {.lex_state = 37, .external_lex_state = 16}, + [3474] = {.lex_state = 37, .external_lex_state = 16}, + [3475] = {.lex_state = 37, .external_lex_state = 16}, + [3476] = {.lex_state = 37, .external_lex_state = 16}, + [3477] = {.lex_state = 37, .external_lex_state = 12}, + [3478] = {.lex_state = 37, .external_lex_state = 12}, + [3479] = {.lex_state = 36, .external_lex_state = 12}, + [3480] = {.lex_state = 37, .external_lex_state = 15}, + [3481] = {.lex_state = 36, .external_lex_state = 12}, + [3482] = {.lex_state = 36, .external_lex_state = 12}, + [3483] = {.lex_state = 36, .external_lex_state = 12}, + [3484] = {.lex_state = 37, .external_lex_state = 12}, + [3485] = {.lex_state = 37, .external_lex_state = 15}, + [3486] = {.lex_state = 37, .external_lex_state = 15}, + [3487] = {.lex_state = 36, .external_lex_state = 12}, + [3488] = {.lex_state = 37, .external_lex_state = 12}, + [3489] = {.lex_state = 37, .external_lex_state = 15}, + [3490] = {.lex_state = 36, .external_lex_state = 12}, + [3491] = {.lex_state = 37, .external_lex_state = 15}, + [3492] = {.lex_state = 37, .external_lex_state = 15}, + [3493] = {.lex_state = 37, .external_lex_state = 15}, + [3494] = {.lex_state = 37, .external_lex_state = 15}, + [3495] = {.lex_state = 36, .external_lex_state = 12}, + [3496] = {.lex_state = 37, .external_lex_state = 16}, + [3497] = {.lex_state = 37, .external_lex_state = 15}, + [3498] = {.lex_state = 37, .external_lex_state = 15}, + [3499] = {.lex_state = 37, .external_lex_state = 15}, + [3500] = {.lex_state = 37, .external_lex_state = 15}, + [3501] = {.lex_state = 36, .external_lex_state = 12}, + [3502] = {.lex_state = 37, .external_lex_state = 15}, + [3503] = {.lex_state = 37, .external_lex_state = 15}, + [3504] = {.lex_state = 37, .external_lex_state = 15}, + [3505] = {.lex_state = 37, .external_lex_state = 15}, + [3506] = {.lex_state = 37, .external_lex_state = 15}, + [3507] = {.lex_state = 37, .external_lex_state = 15}, + [3508] = {.lex_state = 37, .external_lex_state = 15}, + [3509] = {.lex_state = 37, .external_lex_state = 15}, + [3510] = {.lex_state = 37, .external_lex_state = 15}, + [3511] = {.lex_state = 36, .external_lex_state = 12}, + [3512] = {.lex_state = 37, .external_lex_state = 15}, + [3513] = {.lex_state = 37, .external_lex_state = 15}, + [3514] = {.lex_state = 37, .external_lex_state = 15}, + [3515] = {.lex_state = 53, .external_lex_state = 12}, + [3516] = {.lex_state = 37, .external_lex_state = 15}, + [3517] = {.lex_state = 36, .external_lex_state = 12}, + [3518] = {.lex_state = 53, .external_lex_state = 12}, + [3519] = {.lex_state = 37, .external_lex_state = 15}, + [3520] = {.lex_state = 37, .external_lex_state = 15}, + [3521] = {.lex_state = 36, .external_lex_state = 12}, + [3522] = {.lex_state = 36, .external_lex_state = 12}, + [3523] = {.lex_state = 36, .external_lex_state = 12}, + [3524] = {.lex_state = 53, .external_lex_state = 12}, + [3525] = {.lex_state = 37, .external_lex_state = 15}, + [3526] = {.lex_state = 37, .external_lex_state = 15}, + [3527] = {.lex_state = 37, .external_lex_state = 15}, + [3528] = {.lex_state = 37, .external_lex_state = 15}, + [3529] = {.lex_state = 37, .external_lex_state = 15}, + [3530] = {.lex_state = 37, .external_lex_state = 15}, + [3531] = {.lex_state = 37, .external_lex_state = 15}, + [3532] = {.lex_state = 37, .external_lex_state = 15}, + [3533] = {.lex_state = 37, .external_lex_state = 12}, + [3534] = {.lex_state = 36, .external_lex_state = 12}, + [3535] = {.lex_state = 37, .external_lex_state = 15}, + [3536] = {.lex_state = 37, .external_lex_state = 15}, + [3537] = {.lex_state = 37, .external_lex_state = 14}, + [3538] = {.lex_state = 36, .external_lex_state = 15}, + [3539] = {.lex_state = 37, .external_lex_state = 15}, + [3540] = {.lex_state = 36, .external_lex_state = 12}, + [3541] = {.lex_state = 37, .external_lex_state = 12}, + [3542] = {.lex_state = 36, .external_lex_state = 12}, + [3543] = {.lex_state = 36, .external_lex_state = 12}, + [3544] = {.lex_state = 53, .external_lex_state = 12}, + [3545] = {.lex_state = 53, .external_lex_state = 12}, + [3546] = {.lex_state = 53, .external_lex_state = 12}, + [3547] = {.lex_state = 37, .external_lex_state = 15}, + [3548] = {.lex_state = 36, .external_lex_state = 12}, + [3549] = {.lex_state = 36, .external_lex_state = 12}, + [3550] = {.lex_state = 53, .external_lex_state = 12}, + [3551] = {.lex_state = 36, .external_lex_state = 12}, + [3552] = {.lex_state = 53, .external_lex_state = 12}, + [3553] = {.lex_state = 37, .external_lex_state = 15}, + [3554] = {.lex_state = 53, .external_lex_state = 12}, + [3555] = {.lex_state = 53, .external_lex_state = 12}, + [3556] = {.lex_state = 36, .external_lex_state = 12}, + [3557] = {.lex_state = 37, .external_lex_state = 15}, + [3558] = {.lex_state = 37, .external_lex_state = 15}, + [3559] = {.lex_state = 53, .external_lex_state = 12}, + [3560] = {.lex_state = 37, .external_lex_state = 15}, + [3561] = {.lex_state = 36, .external_lex_state = 12}, + [3562] = {.lex_state = 37, .external_lex_state = 15}, + [3563] = {.lex_state = 36, .external_lex_state = 12}, + [3564] = {.lex_state = 37, .external_lex_state = 15}, + [3565] = {.lex_state = 37, .external_lex_state = 15}, + [3566] = {.lex_state = 36, .external_lex_state = 12}, + [3567] = {.lex_state = 36, .external_lex_state = 12}, + [3568] = {.lex_state = 36, .external_lex_state = 12}, + [3569] = {.lex_state = 53, .external_lex_state = 12}, + [3570] = {.lex_state = 37, .external_lex_state = 15}, + [3571] = {.lex_state = 36, .external_lex_state = 12}, + [3572] = {.lex_state = 36, .external_lex_state = 12}, + [3573] = {.lex_state = 36, .external_lex_state = 12}, + [3574] = {.lex_state = 37, .external_lex_state = 12}, + [3575] = {.lex_state = 37, .external_lex_state = 15}, + [3576] = {.lex_state = 37, .external_lex_state = 15}, + [3577] = {.lex_state = 36, .external_lex_state = 12}, + [3578] = {.lex_state = 36, .external_lex_state = 12}, + [3579] = {.lex_state = 37, .external_lex_state = 15}, + [3580] = {.lex_state = 36, .external_lex_state = 12}, + [3581] = {.lex_state = 53, .external_lex_state = 12}, + [3582] = {.lex_state = 37, .external_lex_state = 15}, + [3583] = {.lex_state = 36, .external_lex_state = 12}, + [3584] = {.lex_state = 53, .external_lex_state = 12}, + [3585] = {.lex_state = 36, .external_lex_state = 12}, + [3586] = {.lex_state = 37, .external_lex_state = 15}, + [3587] = {.lex_state = 36, .external_lex_state = 12}, + [3588] = {.lex_state = 36, .external_lex_state = 12}, + [3589] = {.lex_state = 36, .external_lex_state = 12}, + [3590] = {.lex_state = 37, .external_lex_state = 15}, + [3591] = {.lex_state = 37, .external_lex_state = 12}, + [3592] = {.lex_state = 36, .external_lex_state = 12}, + [3593] = {.lex_state = 37, .external_lex_state = 15}, + [3594] = {.lex_state = 37, .external_lex_state = 12}, + [3595] = {.lex_state = 36, .external_lex_state = 13}, + [3596] = {.lex_state = 37, .external_lex_state = 12}, + [3597] = {.lex_state = 37, .external_lex_state = 12}, + [3598] = {.lex_state = 37, .external_lex_state = 12}, + [3599] = {.lex_state = 36, .external_lex_state = 13}, + [3600] = {.lex_state = 36, .external_lex_state = 13}, + [3601] = {.lex_state = 37, .external_lex_state = 12}, + [3602] = {.lex_state = 36, .external_lex_state = 13}, + [3603] = {.lex_state = 36, .external_lex_state = 13}, + [3604] = {.lex_state = 36, .external_lex_state = 13}, + [3605] = {.lex_state = 36, .external_lex_state = 13}, + [3606] = {.lex_state = 36, .external_lex_state = 15}, + [3607] = {.lex_state = 37, .external_lex_state = 12}, + [3608] = {.lex_state = 36, .external_lex_state = 13}, + [3609] = {.lex_state = 36, .external_lex_state = 13}, [3610] = {.lex_state = 36, .external_lex_state = 3}, - [3611] = {.lex_state = 36, .external_lex_state = 13}, + [3611] = {.lex_state = 36, .external_lex_state = 12}, [3612] = {.lex_state = 36, .external_lex_state = 3}, - [3613] = {.lex_state = 36, .external_lex_state = 3}, + [3613] = {.lex_state = 53, .external_lex_state = 16}, [3614] = {.lex_state = 36, .external_lex_state = 3}, - [3615] = {.lex_state = 36, .external_lex_state = 12}, + [3615] = {.lex_state = 54, .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}, + [3617] = {.lex_state = 54, .external_lex_state = 12}, + [3618] = {.lex_state = 54, .external_lex_state = 12}, [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}, + [3620] = {.lex_state = 15, .external_lex_state = 12}, + [3621] = {.lex_state = 20, .external_lex_state = 2}, + [3622] = {.lex_state = 36, .external_lex_state = 12}, [3623] = {.lex_state = 36, .external_lex_state = 3}, - [3624] = {.lex_state = 36, .external_lex_state = 3}, + [3624] = {.lex_state = 20, .external_lex_state = 2}, [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}, + [3626] = {.lex_state = 36, .external_lex_state = 3}, + [3627] = {.lex_state = 55, .external_lex_state = 12}, + [3628] = {.lex_state = 36, .external_lex_state = 15}, [3629] = {.lex_state = 36, .external_lex_state = 3}, - [3630] = {.lex_state = 53, .external_lex_state = 16}, + [3630] = {.lex_state = 20, .external_lex_state = 2}, [3631] = {.lex_state = 36, .external_lex_state = 3}, - [3632] = {.lex_state = 53, .external_lex_state = 16}, - [3633] = {.lex_state = 36, .external_lex_state = 3}, + [3632] = {.lex_state = 54, .external_lex_state = 12}, + [3633] = {.lex_state = 36, .external_lex_state = 15}, [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}, + [3635] = {.lex_state = 36, .external_lex_state = 13}, + [3636] = {.lex_state = 36, .external_lex_state = 13}, + [3637] = {.lex_state = 36, .external_lex_state = 13}, + [3638] = {.lex_state = 36, .external_lex_state = 13}, + [3639] = {.lex_state = 53, .external_lex_state = 16}, + [3640] = {.lex_state = 36, .external_lex_state = 12}, + [3641] = {.lex_state = 36, .external_lex_state = 12}, + [3642] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [3648] = {.lex_state = 56, .external_lex_state = 12}, + [3649] = {.lex_state = 54, .external_lex_state = 12}, + [3650] = {.lex_state = 56, .external_lex_state = 12}, + [3651] = {.lex_state = 53, .external_lex_state = 16}, + [3652] = {.lex_state = 36, .external_lex_state = 13}, + [3653] = {.lex_state = 54, .external_lex_state = 12}, + [3654] = {.lex_state = 57, .external_lex_state = 12}, + [3655] = {.lex_state = 57, .external_lex_state = 12}, + [3656] = {.lex_state = 55, .external_lex_state = 12}, + [3657] = {.lex_state = 57, .external_lex_state = 12}, + [3658] = {.lex_state = 57, .external_lex_state = 12}, + [3659] = {.lex_state = 56, .external_lex_state = 12}, + [3660] = {.lex_state = 53, .external_lex_state = 16}, + [3661] = {.lex_state = 36, .external_lex_state = 13}, + [3662] = {.lex_state = 54, .external_lex_state = 12}, + [3663] = {.lex_state = 56, .external_lex_state = 12}, + [3664] = {.lex_state = 53, .external_lex_state = 16}, + [3665] = {.lex_state = 36, .external_lex_state = 13}, + [3666] = {.lex_state = 54, .external_lex_state = 12}, [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}, + [3668] = {.lex_state = 36, .external_lex_state = 12}, + [3669] = {.lex_state = 36, .external_lex_state = 3}, + [3670] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3674] = {.lex_state = 53, .external_lex_state = 16}, [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}, + [3678] = {.lex_state = 53, .external_lex_state = 16}, [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}, + [3682] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3687] = {.lex_state = 36, .external_lex_state = 3}, [3688] = {.lex_state = 36, .external_lex_state = 3}, - [3689] = {.lex_state = 36, .external_lex_state = 13}, - [3690] = {.lex_state = 36, .external_lex_state = 12}, + [3689] = {.lex_state = 36, .external_lex_state = 3}, + [3690] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3692] = {.lex_state = 36, .external_lex_state = 3}, + [3693] = {.lex_state = 36, .external_lex_state = 3}, + [3694] = {.lex_state = 36, .external_lex_state = 3}, + [3695] = {.lex_state = 36, .external_lex_state = 3}, + [3696] = {.lex_state = 36, .external_lex_state = 3}, + [3697] = {.lex_state = 36, .external_lex_state = 3}, + [3698] = {.lex_state = 36, .external_lex_state = 3}, + [3699] = {.lex_state = 36, .external_lex_state = 3}, + [3700] = {.lex_state = 36, .external_lex_state = 3}, + [3701] = {.lex_state = 36, .external_lex_state = 3}, + [3702] = {.lex_state = 36, .external_lex_state = 3}, + [3703] = {.lex_state = 36, .external_lex_state = 3}, + [3704] = {.lex_state = 36, .external_lex_state = 3}, + [3705] = {.lex_state = 36, .external_lex_state = 3}, + [3706] = {.lex_state = 36, .external_lex_state = 3}, + [3707] = {.lex_state = 36, .external_lex_state = 3}, + [3708] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3710] = {.lex_state = 36, .external_lex_state = 3}, + [3711] = {.lex_state = 36, .external_lex_state = 3}, + [3712] = {.lex_state = 36, .external_lex_state = 3}, + [3713] = {.lex_state = 36, .external_lex_state = 3}, + [3714] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3717] = {.lex_state = 36, .external_lex_state = 3}, + [3718] = {.lex_state = 36, .external_lex_state = 3}, + [3719] = {.lex_state = 36, .external_lex_state = 3}, + [3720] = {.lex_state = 36, .external_lex_state = 3}, + [3721] = {.lex_state = 36, .external_lex_state = 3}, + [3722] = {.lex_state = 36, .external_lex_state = 3}, + [3723] = {.lex_state = 36, .external_lex_state = 3}, + [3724] = {.lex_state = 36, .external_lex_state = 3}, + [3725] = {.lex_state = 36, .external_lex_state = 3}, + [3726] = {.lex_state = 36, .external_lex_state = 3}, + [3727] = {.lex_state = 36, .external_lex_state = 3}, + [3728] = {.lex_state = 36, .external_lex_state = 3}, + [3729] = {.lex_state = 36, .external_lex_state = 3}, + [3730] = {.lex_state = 36, .external_lex_state = 3}, + [3731] = {.lex_state = 36, .external_lex_state = 3}, + [3732] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3736] = {.lex_state = 36, .external_lex_state = 3}, + [3737] = {.lex_state = 36, .external_lex_state = 3}, + [3738] = {.lex_state = 36, .external_lex_state = 3}, + [3739] = {.lex_state = 36, .external_lex_state = 3}, + [3740] = {.lex_state = 36, .external_lex_state = 3}, + [3741] = {.lex_state = 36, .external_lex_state = 3}, + [3742] = {.lex_state = 36, .external_lex_state = 3}, + [3743] = {.lex_state = 36, .external_lex_state = 3}, + [3744] = {.lex_state = 36, .external_lex_state = 3}, + [3745] = {.lex_state = 36, .external_lex_state = 3}, + [3746] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3748] = {.lex_state = 36, .external_lex_state = 3}, + [3749] = {.lex_state = 36, .external_lex_state = 3}, + [3750] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3752] = {.lex_state = 36, .external_lex_state = 3}, + [3753] = {.lex_state = 36, .external_lex_state = 3}, + [3754] = {.lex_state = 36, .external_lex_state = 3}, + [3755] = {.lex_state = 36, .external_lex_state = 3}, + [3756] = {.lex_state = 36, .external_lex_state = 3}, + [3757] = {.lex_state = 36, .external_lex_state = 3}, + [3758] = {.lex_state = 36, .external_lex_state = 3}, + [3759] = {.lex_state = 36, .external_lex_state = 3}, + [3760] = {.lex_state = 36, .external_lex_state = 3}, + [3761] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3763] = {.lex_state = 36, .external_lex_state = 3}, + [3764] = {.lex_state = 36, .external_lex_state = 3}, + [3765] = {.lex_state = 36, .external_lex_state = 3}, + [3766] = {.lex_state = 36, .external_lex_state = 3}, + [3767] = {.lex_state = 36, .external_lex_state = 3}, + [3768] = {.lex_state = 36, .external_lex_state = 3}, + [3769] = {.lex_state = 36, .external_lex_state = 3}, + [3770] = {.lex_state = 36, .external_lex_state = 3}, + [3771] = {.lex_state = 36, .external_lex_state = 3}, + [3772] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3774] = {.lex_state = 36, .external_lex_state = 3}, + [3775] = {.lex_state = 36, .external_lex_state = 3}, + [3776] = {.lex_state = 36, .external_lex_state = 3}, + [3777] = {.lex_state = 36, .external_lex_state = 3}, + [3778] = {.lex_state = 36, .external_lex_state = 3}, + [3779] = {.lex_state = 36, .external_lex_state = 3}, + [3780] = {.lex_state = 36, .external_lex_state = 3}, + [3781] = {.lex_state = 36, .external_lex_state = 3}, + [3782] = {.lex_state = 36, .external_lex_state = 3}, + [3783] = {.lex_state = 36, .external_lex_state = 3}, + [3784] = {.lex_state = 36, .external_lex_state = 3}, + [3785] = {.lex_state = 36, .external_lex_state = 3}, + [3786] = {.lex_state = 36, .external_lex_state = 3}, + [3787] = {.lex_state = 36, .external_lex_state = 3}, + [3788] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3790] = {.lex_state = 36, .external_lex_state = 3}, + [3791] = {.lex_state = 36, .external_lex_state = 3}, + [3792] = {.lex_state = 36, .external_lex_state = 3}, + [3793] = {.lex_state = 36, .external_lex_state = 3}, + [3794] = {.lex_state = 36, .external_lex_state = 3}, + [3795] = {.lex_state = 36, .external_lex_state = 3}, + [3796] = {.lex_state = 36, .external_lex_state = 3}, + [3797] = {.lex_state = 36, .external_lex_state = 3}, + [3798] = {.lex_state = 36, .external_lex_state = 3}, + [3799] = {.lex_state = 36, .external_lex_state = 3}, [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}, + [3801] = {.lex_state = 36, .external_lex_state = 3}, + [3802] = {.lex_state = 36, .external_lex_state = 3}, + [3803] = {.lex_state = 36, .external_lex_state = 3}, + [3804] = {.lex_state = 36, .external_lex_state = 3}, + [3805] = {.lex_state = 36, .external_lex_state = 3}, + [3806] = {.lex_state = 36, .external_lex_state = 3}, + [3807] = {.lex_state = 36, .external_lex_state = 3}, + [3808] = {.lex_state = 36, .external_lex_state = 3}, + [3809] = {.lex_state = 36, .external_lex_state = 3}, + [3810] = {.lex_state = 36, .external_lex_state = 3}, + [3811] = {.lex_state = 36, .external_lex_state = 3}, + [3812] = {.lex_state = 36, .external_lex_state = 3}, + [3813] = {.lex_state = 36, .external_lex_state = 3}, + [3814] = {.lex_state = 36, .external_lex_state = 3}, + [3815] = {.lex_state = 36, .external_lex_state = 3}, + [3816] = {.lex_state = 36, .external_lex_state = 3}, + [3817] = {.lex_state = 36, .external_lex_state = 3}, + [3818] = {.lex_state = 36, .external_lex_state = 3}, + [3819] = {.lex_state = 36, .external_lex_state = 3}, + [3820] = {.lex_state = 36, .external_lex_state = 3}, + [3821] = {.lex_state = 36, .external_lex_state = 3}, + [3822] = {.lex_state = 36, .external_lex_state = 3}, + [3823] = {.lex_state = 36, .external_lex_state = 3}, + [3824] = {.lex_state = 36, .external_lex_state = 3}, + [3825] = {.lex_state = 36, .external_lex_state = 3}, + [3826] = {.lex_state = 36, .external_lex_state = 3}, + [3827] = {.lex_state = 36, .external_lex_state = 3}, + [3828] = {.lex_state = 36, .external_lex_state = 3}, + [3829] = {.lex_state = 36, .external_lex_state = 3}, + [3830] = {.lex_state = 36, .external_lex_state = 3}, + [3831] = {.lex_state = 36, .external_lex_state = 3}, + [3832] = {.lex_state = 36, .external_lex_state = 3}, + [3833] = {.lex_state = 36, .external_lex_state = 3}, + [3834] = {.lex_state = 36, .external_lex_state = 3}, + [3835] = {.lex_state = 36, .external_lex_state = 3}, + [3836] = {.lex_state = 36, .external_lex_state = 3}, + [3837] = {.lex_state = 36, .external_lex_state = 3}, + [3838] = {.lex_state = 36, .external_lex_state = 3}, + [3839] = {.lex_state = 36, .external_lex_state = 3}, + [3840] = {.lex_state = 36, .external_lex_state = 3}, + [3841] = {.lex_state = 36, .external_lex_state = 3}, + [3842] = {.lex_state = 36, .external_lex_state = 3}, + [3843] = {.lex_state = 36, .external_lex_state = 3}, + [3844] = {.lex_state = 36, .external_lex_state = 3}, + [3845] = {.lex_state = 36, .external_lex_state = 3}, + [3846] = {.lex_state = 36, .external_lex_state = 3}, + [3847] = {.lex_state = 36, .external_lex_state = 3}, + [3848] = {.lex_state = 36, .external_lex_state = 3}, + [3849] = {.lex_state = 36, .external_lex_state = 3}, + [3850] = {.lex_state = 36, .external_lex_state = 3}, + [3851] = {.lex_state = 36, .external_lex_state = 3}, + [3852] = {.lex_state = 36, .external_lex_state = 3}, + [3853] = {.lex_state = 36, .external_lex_state = 3}, + [3854] = {.lex_state = 36, .external_lex_state = 3}, + [3855] = {.lex_state = 36, .external_lex_state = 3}, + [3856] = {.lex_state = 36, .external_lex_state = 3}, + [3857] = {.lex_state = 36, .external_lex_state = 3}, + [3858] = {.lex_state = 36, .external_lex_state = 3}, + [3859] = {.lex_state = 36, .external_lex_state = 3}, + [3860] = {.lex_state = 36, .external_lex_state = 3}, + [3861] = {.lex_state = 36, .external_lex_state = 3}, + [3862] = {.lex_state = 36, .external_lex_state = 3}, + [3863] = {.lex_state = 36, .external_lex_state = 3}, + [3864] = {.lex_state = 36, .external_lex_state = 3}, + [3865] = {.lex_state = 36, .external_lex_state = 3}, + [3866] = {.lex_state = 36, .external_lex_state = 3}, + [3867] = {.lex_state = 36, .external_lex_state = 3}, + [3868] = {.lex_state = 36, .external_lex_state = 3}, + [3869] = {.lex_state = 36, .external_lex_state = 3}, + [3870] = {.lex_state = 36, .external_lex_state = 3}, + [3871] = {.lex_state = 36, .external_lex_state = 3}, + [3872] = {.lex_state = 36, .external_lex_state = 3}, [3873] = {.lex_state = 36, .external_lex_state = 13}, - [3874] = {.lex_state = 36, .external_lex_state = 13}, - [3875] = {.lex_state = 36, .external_lex_state = 13}, + [3874] = {.lex_state = 36, .external_lex_state = 12}, + [3875] = {.lex_state = 36, .external_lex_state = 12}, [3876] = {.lex_state = 36, .external_lex_state = 13}, [3877] = {.lex_state = 36, .external_lex_state = 13}, - [3878] = {.lex_state = 11, .external_lex_state = 12}, + [3878] = {.lex_state = 15, .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}, + [3881] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [3888] = {.lex_state = 36, .external_lex_state = 12}, [3889] = {.lex_state = 36, .external_lex_state = 13}, [3890] = {.lex_state = 36, .external_lex_state = 13}, [3891] = {.lex_state = 36, .external_lex_state = 13}, @@ -20924,7 +21194,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3897] = {.lex_state = 36, .external_lex_state = 12}, [3898] = {.lex_state = 36, .external_lex_state = 13}, [3899] = {.lex_state = 36, .external_lex_state = 13}, [3900] = {.lex_state = 36, .external_lex_state = 13}, @@ -20969,3064 +21239,3408 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3942] = {.lex_state = 36, .external_lex_state = 13}, + [3943] = {.lex_state = 36, .external_lex_state = 13}, + [3944] = {.lex_state = 36, .external_lex_state = 13}, + [3945] = {.lex_state = 36, .external_lex_state = 13}, + [3946] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [3948] = {.lex_state = 36, .external_lex_state = 12}, + [3949] = {.lex_state = 36, .external_lex_state = 13}, + [3950] = {.lex_state = 36, .external_lex_state = 13}, + [3951] = {.lex_state = 36, .external_lex_state = 13}, + [3952] = {.lex_state = 36, .external_lex_state = 13}, + [3953] = {.lex_state = 36, .external_lex_state = 13}, + [3954] = {.lex_state = 36, .external_lex_state = 13}, + [3955] = {.lex_state = 36, .external_lex_state = 12}, + [3956] = {.lex_state = 36, .external_lex_state = 3}, + [3957] = {.lex_state = 36, .external_lex_state = 3}, + [3958] = {.lex_state = 36, .external_lex_state = 3}, + [3959] = {.lex_state = 36, .external_lex_state = 3}, + [3960] = {.lex_state = 36, .external_lex_state = 3}, + [3961] = {.lex_state = 36, .external_lex_state = 3}, + [3962] = {.lex_state = 36, .external_lex_state = 13}, + [3963] = {.lex_state = 36, .external_lex_state = 13}, + [3964] = {.lex_state = 36, .external_lex_state = 3}, + [3965] = {.lex_state = 36, .external_lex_state = 3}, + [3966] = {.lex_state = 36, .external_lex_state = 3}, + [3967] = {.lex_state = 36, .external_lex_state = 3}, + [3968] = {.lex_state = 36, .external_lex_state = 13}, + [3969] = {.lex_state = 36, .external_lex_state = 3}, + [3970] = {.lex_state = 36, .external_lex_state = 3}, + [3971] = {.lex_state = 36, .external_lex_state = 13}, + [3972] = {.lex_state = 36, .external_lex_state = 13}, + [3973] = {.lex_state = 36, .external_lex_state = 12}, + [3974] = {.lex_state = 36, .external_lex_state = 13}, + [3975] = {.lex_state = 36, .external_lex_state = 13}, + [3976] = {.lex_state = 36, .external_lex_state = 12}, + [3977] = {.lex_state = 36, .external_lex_state = 13}, + [3978] = {.lex_state = 36, .external_lex_state = 13}, + [3979] = {.lex_state = 36, .external_lex_state = 3}, + [3980] = {.lex_state = 36, .external_lex_state = 12}, + [3981] = {.lex_state = 36, .external_lex_state = 13}, + [3982] = {.lex_state = 36, .external_lex_state = 13}, + [3983] = {.lex_state = 36, .external_lex_state = 13}, + [3984] = {.lex_state = 36, .external_lex_state = 13}, + [3985] = {.lex_state = 36, .external_lex_state = 12}, + [3986] = {.lex_state = 36, .external_lex_state = 13}, + [3987] = {.lex_state = 36, .external_lex_state = 13}, + [3988] = {.lex_state = 36, .external_lex_state = 13}, + [3989] = {.lex_state = 36, .external_lex_state = 13}, + [3990] = {.lex_state = 36, .external_lex_state = 13}, + [3991] = {.lex_state = 36, .external_lex_state = 13}, + [3992] = {.lex_state = 36, .external_lex_state = 13}, + [3993] = {.lex_state = 36, .external_lex_state = 13}, + [3994] = {.lex_state = 36, .external_lex_state = 13}, + [3995] = {.lex_state = 36, .external_lex_state = 13}, + [3996] = {.lex_state = 36, .external_lex_state = 13}, + [3997] = {.lex_state = 36, .external_lex_state = 13}, + [3998] = {.lex_state = 36, .external_lex_state = 13}, + [3999] = {.lex_state = 36, .external_lex_state = 13}, + [4000] = {.lex_state = 36, .external_lex_state = 13}, + [4001] = {.lex_state = 36, .external_lex_state = 13}, + [4002] = {.lex_state = 36, .external_lex_state = 13}, + [4003] = {.lex_state = 36, .external_lex_state = 13}, + [4004] = {.lex_state = 36, .external_lex_state = 13}, + [4005] = {.lex_state = 36, .external_lex_state = 13}, + [4006] = {.lex_state = 36, .external_lex_state = 13}, + [4007] = {.lex_state = 36, .external_lex_state = 13}, + [4008] = {.lex_state = 36, .external_lex_state = 13}, + [4009] = {.lex_state = 36, .external_lex_state = 13}, + [4010] = {.lex_state = 36, .external_lex_state = 13}, + [4011] = {.lex_state = 36, .external_lex_state = 13}, + [4012] = {.lex_state = 36, .external_lex_state = 13}, + [4013] = {.lex_state = 36, .external_lex_state = 13}, + [4014] = {.lex_state = 36, .external_lex_state = 13}, + [4015] = {.lex_state = 36, .external_lex_state = 13}, + [4016] = {.lex_state = 36, .external_lex_state = 13}, + [4017] = {.lex_state = 36, .external_lex_state = 13}, + [4018] = {.lex_state = 36, .external_lex_state = 13}, + [4019] = {.lex_state = 36, .external_lex_state = 13}, + [4020] = {.lex_state = 36, .external_lex_state = 13}, + [4021] = {.lex_state = 36, .external_lex_state = 13}, + [4022] = {.lex_state = 36, .external_lex_state = 13}, + [4023] = {.lex_state = 36, .external_lex_state = 13}, + [4024] = {.lex_state = 36, .external_lex_state = 13}, + [4025] = {.lex_state = 36, .external_lex_state = 13}, + [4026] = {.lex_state = 36, .external_lex_state = 13}, + [4027] = {.lex_state = 36, .external_lex_state = 13}, + [4028] = {.lex_state = 36, .external_lex_state = 13}, + [4029] = {.lex_state = 36, .external_lex_state = 13}, + [4030] = {.lex_state = 36, .external_lex_state = 13}, + [4031] = {.lex_state = 36, .external_lex_state = 13}, + [4032] = {.lex_state = 36, .external_lex_state = 13}, + [4033] = {.lex_state = 36, .external_lex_state = 13}, + [4034] = {.lex_state = 36, .external_lex_state = 13}, + [4035] = {.lex_state = 36, .external_lex_state = 13}, + [4036] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [4038] = {.lex_state = 36, .external_lex_state = 13}, + [4039] = {.lex_state = 36, .external_lex_state = 13}, + [4040] = {.lex_state = 36, .external_lex_state = 13}, + [4041] = {.lex_state = 36, .external_lex_state = 13}, + [4042] = {.lex_state = 36, .external_lex_state = 13}, + [4043] = {.lex_state = 36, .external_lex_state = 13}, + [4044] = {.lex_state = 36, .external_lex_state = 13}, [4045] = {.lex_state = 36, .external_lex_state = 13}, - [4046] = {.lex_state = 58, .external_lex_state = 14}, + [4046] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [4050] = {.lex_state = 36, .external_lex_state = 13}, + [4051] = {.lex_state = 36, .external_lex_state = 13}, [4052] = {.lex_state = 36, .external_lex_state = 13}, - [4053] = {.lex_state = 62, .external_lex_state = 14}, + [4053] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [4055] = {.lex_state = 36, .external_lex_state = 13}, + [4056] = {.lex_state = 36, .external_lex_state = 13}, + [4057] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [4059] = {.lex_state = 36, .external_lex_state = 13}, + [4060] = {.lex_state = 36, .external_lex_state = 13}, + [4061] = {.lex_state = 36, .external_lex_state = 13}, [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}, + [4063] = {.lex_state = 36, .external_lex_state = 13}, + [4064] = {.lex_state = 36, .external_lex_state = 13}, + [4065] = {.lex_state = 36, .external_lex_state = 13}, + [4066] = {.lex_state = 36, .external_lex_state = 13}, + [4067] = {.lex_state = 36, .external_lex_state = 13}, + [4068] = {.lex_state = 36, .external_lex_state = 13}, + [4069] = {.lex_state = 36, .external_lex_state = 13}, + [4070] = {.lex_state = 36, .external_lex_state = 13}, + [4071] = {.lex_state = 36, .external_lex_state = 13}, + [4072] = {.lex_state = 36, .external_lex_state = 13}, + [4073] = {.lex_state = 36, .external_lex_state = 13}, + [4074] = {.lex_state = 36, .external_lex_state = 13}, + [4075] = {.lex_state = 36, .external_lex_state = 13}, + [4076] = {.lex_state = 36, .external_lex_state = 13}, + [4077] = {.lex_state = 36, .external_lex_state = 13}, + [4078] = {.lex_state = 36, .external_lex_state = 13}, + [4079] = {.lex_state = 36, .external_lex_state = 13}, + [4080] = {.lex_state = 36, .external_lex_state = 13}, + [4081] = {.lex_state = 36, .external_lex_state = 13}, + [4082] = {.lex_state = 15, .external_lex_state = 12}, + [4083] = {.lex_state = 36, .external_lex_state = 13}, + [4084] = {.lex_state = 36, .external_lex_state = 13}, + [4085] = {.lex_state = 36, .external_lex_state = 13}, + [4086] = {.lex_state = 36, .external_lex_state = 13}, + [4087] = {.lex_state = 36, .external_lex_state = 13}, + [4088] = {.lex_state = 36, .external_lex_state = 13}, + [4089] = {.lex_state = 36, .external_lex_state = 13}, + [4090] = {.lex_state = 36, .external_lex_state = 13}, + [4091] = {.lex_state = 36, .external_lex_state = 13}, + [4092] = {.lex_state = 36, .external_lex_state = 13}, + [4093] = {.lex_state = 36, .external_lex_state = 13}, + [4094] = {.lex_state = 36, .external_lex_state = 13}, + [4095] = {.lex_state = 36, .external_lex_state = 13}, + [4096] = {.lex_state = 36, .external_lex_state = 13}, + [4097] = {.lex_state = 36, .external_lex_state = 13}, + [4098] = {.lex_state = 36, .external_lex_state = 13}, + [4099] = {.lex_state = 36, .external_lex_state = 13}, + [4100] = {.lex_state = 36, .external_lex_state = 13}, + [4101] = {.lex_state = 36, .external_lex_state = 13}, + [4102] = {.lex_state = 15, .external_lex_state = 12}, + [4103] = {.lex_state = 36, .external_lex_state = 13}, + [4104] = {.lex_state = 36, .external_lex_state = 13}, + [4105] = {.lex_state = 36, .external_lex_state = 13}, + [4106] = {.lex_state = 36, .external_lex_state = 13}, + [4107] = {.lex_state = 36, .external_lex_state = 13}, + [4108] = {.lex_state = 36, .external_lex_state = 13}, + [4109] = {.lex_state = 36, .external_lex_state = 13}, + [4110] = {.lex_state = 36, .external_lex_state = 13}, + [4111] = {.lex_state = 36, .external_lex_state = 13}, + [4112] = {.lex_state = 36, .external_lex_state = 13}, + [4113] = {.lex_state = 36, .external_lex_state = 13}, + [4114] = {.lex_state = 36, .external_lex_state = 13}, + [4115] = {.lex_state = 36, .external_lex_state = 13}, + [4116] = {.lex_state = 36, .external_lex_state = 13}, + [4117] = {.lex_state = 36, .external_lex_state = 13}, + [4118] = {.lex_state = 36, .external_lex_state = 13}, + [4119] = {.lex_state = 58, .external_lex_state = 15}, + [4120] = {.lex_state = 58, .external_lex_state = 16}, + [4121] = {.lex_state = 36, .external_lex_state = 13}, + [4122] = {.lex_state = 58, .external_lex_state = 14}, + [4123] = {.lex_state = 36, .external_lex_state = 13}, + [4124] = {.lex_state = 36, .external_lex_state = 13}, + [4125] = {.lex_state = 36, .external_lex_state = 13}, + [4126] = {.lex_state = 36, .external_lex_state = 13}, + [4127] = {.lex_state = 36, .external_lex_state = 13}, + [4128] = {.lex_state = 36, .external_lex_state = 13}, + [4129] = {.lex_state = 36, .external_lex_state = 13}, + [4130] = {.lex_state = 36, .external_lex_state = 13}, + [4131] = {.lex_state = 58, .external_lex_state = 15}, + [4132] = {.lex_state = 58, .external_lex_state = 16}, + [4133] = {.lex_state = 58, .external_lex_state = 14}, [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}, + [4138] = {.lex_state = 36, .external_lex_state = 15}, [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}, + [4141] = {.lex_state = 36, .external_lex_state = 15}, + [4142] = {.lex_state = 37, .external_lex_state = 12}, + [4143] = {.lex_state = 41, .external_lex_state = 14}, + [4144] = {.lex_state = 41, .external_lex_state = 14}, + [4145] = {.lex_state = 41, .external_lex_state = 14}, + [4146] = {.lex_state = 41, .external_lex_state = 15}, + [4147] = {.lex_state = 41, .external_lex_state = 15}, + [4148] = {.lex_state = 37, .external_lex_state = 12}, + [4149] = {.lex_state = 37, .external_lex_state = 12}, + [4150] = {.lex_state = 37, .external_lex_state = 12}, + [4151] = {.lex_state = 37, .external_lex_state = 12}, + [4152] = {.lex_state = 37, .external_lex_state = 12}, + [4153] = {.lex_state = 41, .external_lex_state = 14}, + [4154] = {.lex_state = 41, .external_lex_state = 16}, + [4155] = {.lex_state = 41, .external_lex_state = 16}, + [4156] = {.lex_state = 41, .external_lex_state = 14}, + [4157] = {.lex_state = 41, .external_lex_state = 14}, + [4158] = {.lex_state = 41, .external_lex_state = 16}, + [4159] = {.lex_state = 41, .external_lex_state = 16}, + [4160] = {.lex_state = 41, .external_lex_state = 16}, + [4161] = {.lex_state = 41, .external_lex_state = 16}, + [4162] = {.lex_state = 41, .external_lex_state = 16}, + [4163] = {.lex_state = 41, .external_lex_state = 16}, + [4164] = {.lex_state = 36, .external_lex_state = 15}, + [4165] = {.lex_state = 59, .external_lex_state = 11}, + [4166] = {.lex_state = 41, .external_lex_state = 15}, + [4167] = {.lex_state = 36, .external_lex_state = 12}, + [4168] = {.lex_state = 59, .external_lex_state = 11}, + [4169] = {.lex_state = 41, .external_lex_state = 15}, + [4170] = {.lex_state = 41, .external_lex_state = 15}, + [4171] = {.lex_state = 36, .external_lex_state = 15}, + [4172] = {.lex_state = 41, .external_lex_state = 15}, + [4173] = {.lex_state = 41, .external_lex_state = 14}, + [4174] = {.lex_state = 41, .external_lex_state = 14}, + [4175] = {.lex_state = 41, .external_lex_state = 15}, + [4176] = {.lex_state = 37, .external_lex_state = 12}, + [4177] = {.lex_state = 37, .external_lex_state = 12}, + [4178] = {.lex_state = 41, .external_lex_state = 15}, + [4179] = {.lex_state = 60, .external_lex_state = 15}, + [4180] = {.lex_state = 37, .external_lex_state = 12}, + [4181] = {.lex_state = 41, .external_lex_state = 16}, + [4182] = {.lex_state = 41, .external_lex_state = 16}, + [4183] = {.lex_state = 41, .external_lex_state = 14}, + [4184] = {.lex_state = 41, .external_lex_state = 14}, + [4185] = {.lex_state = 41, .external_lex_state = 15}, + [4186] = {.lex_state = 41, .external_lex_state = 16}, + [4187] = {.lex_state = 41, .external_lex_state = 14}, + [4188] = {.lex_state = 41, .external_lex_state = 15}, + [4189] = {.lex_state = 37, .external_lex_state = 12}, + [4190] = {.lex_state = 41, .external_lex_state = 14}, + [4191] = {.lex_state = 41, .external_lex_state = 14}, + [4192] = {.lex_state = 41, .external_lex_state = 15}, + [4193] = {.lex_state = 41, .external_lex_state = 14}, + [4194] = {.lex_state = 41, .external_lex_state = 15}, + [4195] = {.lex_state = 41, .external_lex_state = 14}, + [4196] = {.lex_state = 41, .external_lex_state = 14}, + [4197] = {.lex_state = 41, .external_lex_state = 15}, + [4198] = {.lex_state = 41, .external_lex_state = 14}, + [4199] = {.lex_state = 41, .external_lex_state = 15}, + [4200] = {.lex_state = 41, .external_lex_state = 15}, + [4201] = {.lex_state = 41, .external_lex_state = 14}, + [4202] = {.lex_state = 41, .external_lex_state = 15}, + [4203] = {.lex_state = 41, .external_lex_state = 14}, + [4204] = {.lex_state = 54, .external_lex_state = 12}, + [4205] = {.lex_state = 41, .external_lex_state = 15}, + [4206] = {.lex_state = 37, .external_lex_state = 12}, + [4207] = {.lex_state = 54, .external_lex_state = 12}, + [4208] = {.lex_state = 41, .external_lex_state = 16}, + [4209] = {.lex_state = 41, .external_lex_state = 16}, + [4210] = {.lex_state = 41, .external_lex_state = 15}, + [4211] = {.lex_state = 36, .external_lex_state = 12}, + [4212] = {.lex_state = 41, .external_lex_state = 16}, + [4213] = {.lex_state = 41, .external_lex_state = 16}, + [4214] = {.lex_state = 41, .external_lex_state = 16}, + [4215] = {.lex_state = 41, .external_lex_state = 15}, + [4216] = {.lex_state = 37, .external_lex_state = 12}, + [4217] = {.lex_state = 41, .external_lex_state = 16}, + [4218] = {.lex_state = 41, .external_lex_state = 16}, + [4219] = {.lex_state = 41, .external_lex_state = 16}, + [4220] = {.lex_state = 37, .external_lex_state = 12}, + [4221] = {.lex_state = 37, .external_lex_state = 12}, + [4222] = {.lex_state = 37, .external_lex_state = 12}, + [4223] = {.lex_state = 37, .external_lex_state = 12}, + [4224] = {.lex_state = 37, .external_lex_state = 12}, + [4225] = {.lex_state = 37, .external_lex_state = 12}, + [4226] = {.lex_state = 37, .external_lex_state = 12}, + [4227] = {.lex_state = 37, .external_lex_state = 12}, + [4228] = {.lex_state = 37, .external_lex_state = 12}, + [4229] = {.lex_state = 61, .external_lex_state = 14}, + [4230] = {.lex_state = 37, .external_lex_state = 12}, + [4231] = {.lex_state = 37, .external_lex_state = 12}, + [4232] = {.lex_state = 37, .external_lex_state = 12}, + [4233] = {.lex_state = 37, .external_lex_state = 12}, + [4234] = {.lex_state = 37, .external_lex_state = 12}, + [4235] = {.lex_state = 37, .external_lex_state = 12}, + [4236] = {.lex_state = 37, .external_lex_state = 12}, + [4237] = {.lex_state = 37, .external_lex_state = 12}, + [4238] = {.lex_state = 59, .external_lex_state = 12}, + [4239] = {.lex_state = 37, .external_lex_state = 12}, + [4240] = {.lex_state = 37, .external_lex_state = 12}, + [4241] = {.lex_state = 59, .external_lex_state = 12}, + [4242] = {.lex_state = 59, .external_lex_state = 14}, + [4243] = {.lex_state = 37, .external_lex_state = 12}, + [4244] = {.lex_state = 37, .external_lex_state = 12}, + [4245] = {.lex_state = 59, .external_lex_state = 16}, + [4246] = {.lex_state = 37, .external_lex_state = 12}, + [4247] = {.lex_state = 59, .external_lex_state = 16}, + [4248] = {.lex_state = 37, .external_lex_state = 12}, + [4249] = {.lex_state = 37, .external_lex_state = 12}, + [4250] = {.lex_state = 37, .external_lex_state = 12}, + [4251] = {.lex_state = 37, .external_lex_state = 12}, + [4252] = {.lex_state = 37, .external_lex_state = 12}, + [4253] = {.lex_state = 37, .external_lex_state = 12}, + [4254] = {.lex_state = 37, .external_lex_state = 12}, + [4255] = {.lex_state = 37, .external_lex_state = 12}, + [4256] = {.lex_state = 37, .external_lex_state = 12}, + [4257] = {.lex_state = 37, .external_lex_state = 12}, + [4258] = {.lex_state = 37, .external_lex_state = 12}, + [4259] = {.lex_state = 37, .external_lex_state = 12}, + [4260] = {.lex_state = 37, .external_lex_state = 12}, + [4261] = {.lex_state = 61, .external_lex_state = 14}, + [4262] = {.lex_state = 37, .external_lex_state = 12}, + [4263] = {.lex_state = 59, .external_lex_state = 14}, + [4264] = {.lex_state = 37, .external_lex_state = 12}, + [4265] = {.lex_state = 36, .external_lex_state = 12}, + [4266] = {.lex_state = 37, .external_lex_state = 12}, + [4267] = {.lex_state = 59, .external_lex_state = 11}, + [4268] = {.lex_state = 37, .external_lex_state = 15}, + [4269] = {.lex_state = 59, .external_lex_state = 11}, + [4270] = {.lex_state = 59, .external_lex_state = 11}, + [4271] = {.lex_state = 61, .external_lex_state = 15}, + [4272] = {.lex_state = 61, .external_lex_state = 15}, + [4273] = {.lex_state = 47, .external_lex_state = 14}, + [4274] = {.lex_state = 47, .external_lex_state = 14}, + [4275] = {.lex_state = 47, .external_lex_state = 14}, + [4276] = {.lex_state = 47, .external_lex_state = 14}, + [4277] = {.lex_state = 47, .external_lex_state = 14}, + [4278] = {.lex_state = 47, .external_lex_state = 14}, + [4279] = {.lex_state = 37, .external_lex_state = 12}, + [4280] = {.lex_state = 37, .external_lex_state = 15}, + [4281] = {.lex_state = 37, .external_lex_state = 15}, + [4282] = {.lex_state = 47, .external_lex_state = 14}, + [4283] = {.lex_state = 47, .external_lex_state = 14}, + [4284] = {.lex_state = 59, .external_lex_state = 11}, + [4285] = {.lex_state = 47, .external_lex_state = 14}, + [4286] = {.lex_state = 47, .external_lex_state = 14}, + [4287] = {.lex_state = 47, .external_lex_state = 14}, + [4288] = {.lex_state = 47, .external_lex_state = 14}, + [4289] = {.lex_state = 47, .external_lex_state = 14}, + [4290] = {.lex_state = 37, .external_lex_state = 15}, + [4291] = {.lex_state = 47, .external_lex_state = 14}, + [4292] = {.lex_state = 62, .external_lex_state = 11}, + [4293] = {.lex_state = 61, .external_lex_state = 16}, + [4294] = {.lex_state = 61, .external_lex_state = 16}, + [4295] = {.lex_state = 60, .external_lex_state = 15}, + [4296] = {.lex_state = 60, .external_lex_state = 15}, + [4297] = {.lex_state = 60, .external_lex_state = 15}, + [4298] = {.lex_state = 37, .external_lex_state = 12}, + [4299] = {.lex_state = 37, .external_lex_state = 12}, + [4300] = {.lex_state = 37, .external_lex_state = 12}, + [4301] = {.lex_state = 37, .external_lex_state = 12}, + [4302] = {.lex_state = 37, .external_lex_state = 12}, + [4303] = {.lex_state = 37, .external_lex_state = 12}, + [4304] = {.lex_state = 60, .external_lex_state = 15}, + [4305] = {.lex_state = 37, .external_lex_state = 12}, + [4306] = {.lex_state = 60, .external_lex_state = 11}, + [4307] = {.lex_state = 60, .external_lex_state = 11}, + [4308] = {.lex_state = 37, .external_lex_state = 12}, + [4309] = {.lex_state = 37, .external_lex_state = 12}, + [4310] = {.lex_state = 37, .external_lex_state = 12}, + [4311] = {.lex_state = 60, .external_lex_state = 11}, + [4312] = {.lex_state = 60, .external_lex_state = 15}, + [4313] = {.lex_state = 60, .external_lex_state = 15}, + [4314] = {.lex_state = 60, .external_lex_state = 15}, + [4315] = {.lex_state = 60, .external_lex_state = 15}, + [4316] = {.lex_state = 60, .external_lex_state = 15}, + [4317] = {.lex_state = 60, .external_lex_state = 15}, + [4318] = {.lex_state = 37, .external_lex_state = 12}, + [4319] = {.lex_state = 37, .external_lex_state = 12}, + [4320] = {.lex_state = 37, .external_lex_state = 12}, + [4321] = {.lex_state = 37, .external_lex_state = 12}, + [4322] = {.lex_state = 37, .external_lex_state = 12}, + [4323] = {.lex_state = 37, .external_lex_state = 12}, + [4324] = {.lex_state = 37, .external_lex_state = 12}, + [4325] = {.lex_state = 37, .external_lex_state = 12}, + [4326] = {.lex_state = 37, .external_lex_state = 12}, + [4327] = {.lex_state = 37, .external_lex_state = 12}, + [4328] = {.lex_state = 60, .external_lex_state = 15}, + [4329] = {.lex_state = 37, .external_lex_state = 12}, + [4330] = {.lex_state = 37, .external_lex_state = 12}, + [4331] = {.lex_state = 60, .external_lex_state = 15}, + [4332] = {.lex_state = 60, .external_lex_state = 11}, + [4333] = {.lex_state = 60, .external_lex_state = 11}, + [4334] = {.lex_state = 60, .external_lex_state = 15}, + [4335] = {.lex_state = 60, .external_lex_state = 15}, + [4336] = {.lex_state = 37, .external_lex_state = 12}, + [4337] = {.lex_state = 60, .external_lex_state = 15}, + [4338] = {.lex_state = 37, .external_lex_state = 12}, + [4339] = {.lex_state = 37, .external_lex_state = 12}, + [4340] = {.lex_state = 36, .external_lex_state = 13}, + [4341] = {.lex_state = 36, .external_lex_state = 13}, + [4342] = {.lex_state = 36, .external_lex_state = 13}, + [4343] = {.lex_state = 15, .external_lex_state = 11}, + [4344] = {.lex_state = 36, .external_lex_state = 13}, + [4345] = {.lex_state = 60, .external_lex_state = 11}, + [4346] = {.lex_state = 59, .external_lex_state = 15}, + [4347] = {.lex_state = 36, .external_lex_state = 13}, + [4348] = {.lex_state = 60, .external_lex_state = 11}, [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}, + [4350] = {.lex_state = 36, .external_lex_state = 13}, + [4351] = {.lex_state = 60, .external_lex_state = 11}, + [4352] = {.lex_state = 63, .external_lex_state = 15}, + [4353] = {.lex_state = 63, .external_lex_state = 15}, + [4354] = {.lex_state = 15, .external_lex_state = 11}, + [4355] = {.lex_state = 59, .external_lex_state = 15}, [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}, + [4357] = {.lex_state = 36, .external_lex_state = 13}, + [4358] = {.lex_state = 60, .external_lex_state = 11}, + [4359] = {.lex_state = 60, .external_lex_state = 11}, + [4360] = {.lex_state = 36, .external_lex_state = 13}, + [4361] = {.lex_state = 36, .external_lex_state = 13}, + [4362] = {.lex_state = 36, .external_lex_state = 2}, + [4363] = {.lex_state = 60, .external_lex_state = 11}, + [4364] = {.lex_state = 15, .external_lex_state = 11}, + [4365] = {.lex_state = 15, .external_lex_state = 12}, + [4366] = {.lex_state = 37, .external_lex_state = 15}, + [4367] = {.lex_state = 37, .external_lex_state = 16}, + [4368] = {.lex_state = 37, .external_lex_state = 12}, + [4369] = {.lex_state = 37, .external_lex_state = 12}, + [4370] = {.lex_state = 15, .external_lex_state = 11}, + [4371] = {.lex_state = 37, .external_lex_state = 12}, + [4372] = {.lex_state = 37, .external_lex_state = 12}, + [4373] = {.lex_state = 37, .external_lex_state = 12}, + [4374] = {.lex_state = 37, .external_lex_state = 12}, + [4375] = {.lex_state = 37, .external_lex_state = 12}, + [4376] = {.lex_state = 37, .external_lex_state = 15}, + [4377] = {.lex_state = 37, .external_lex_state = 12}, + [4378] = {.lex_state = 15, .external_lex_state = 12}, + [4379] = {.lex_state = 37, .external_lex_state = 16}, + [4380] = {.lex_state = 37, .external_lex_state = 16}, + [4381] = {.lex_state = 37, .external_lex_state = 16}, + [4382] = {.lex_state = 15, .external_lex_state = 11}, + [4383] = {.lex_state = 36, .external_lex_state = 15}, + [4384] = {.lex_state = 37, .external_lex_state = 12}, + [4385] = {.lex_state = 15, .external_lex_state = 11}, + [4386] = {.lex_state = 37, .external_lex_state = 15}, + [4387] = {.lex_state = 37, .external_lex_state = 15}, + [4388] = {.lex_state = 36, .external_lex_state = 15}, + [4389] = {.lex_state = 36, .external_lex_state = 15}, + [4390] = {.lex_state = 37, .external_lex_state = 12}, + [4391] = {.lex_state = 37, .external_lex_state = 16}, + [4392] = {.lex_state = 59, .external_lex_state = 12}, + [4393] = {.lex_state = 36, .external_lex_state = 15}, + [4394] = {.lex_state = 59, .external_lex_state = 12}, + [4395] = {.lex_state = 36, .external_lex_state = 12}, + [4396] = {.lex_state = 37, .external_lex_state = 12}, + [4397] = {.lex_state = 37, .external_lex_state = 12}, + [4398] = {.lex_state = 37, .external_lex_state = 15}, + [4399] = {.lex_state = 36, .external_lex_state = 12}, + [4400] = {.lex_state = 60, .external_lex_state = 12}, + [4401] = {.lex_state = 60, .external_lex_state = 15}, + [4402] = {.lex_state = 36, .external_lex_state = 12}, + [4403] = {.lex_state = 36, .external_lex_state = 12}, + [4404] = {.lex_state = 15, .external_lex_state = 12}, + [4405] = {.lex_state = 36, .external_lex_state = 12}, + [4406] = {.lex_state = 36, .external_lex_state = 12}, + [4407] = {.lex_state = 36, .external_lex_state = 12}, + [4408] = {.lex_state = 60, .external_lex_state = 15}, + [4409] = {.lex_state = 64, .external_lex_state = 12}, + [4410] = {.lex_state = 36, .external_lex_state = 15}, + [4411] = {.lex_state = 36, .external_lex_state = 15}, + [4412] = {.lex_state = 36, .external_lex_state = 15}, + [4413] = {.lex_state = 36, .external_lex_state = 15}, + [4414] = {.lex_state = 36, .external_lex_state = 15}, + [4415] = {.lex_state = 36, .external_lex_state = 15}, + [4416] = {.lex_state = 65, .external_lex_state = 12}, + [4417] = {.lex_state = 36, .external_lex_state = 12}, + [4418] = {.lex_state = 36, .external_lex_state = 15}, + [4419] = {.lex_state = 36, .external_lex_state = 15}, + [4420] = {.lex_state = 36, .external_lex_state = 15}, + [4421] = {.lex_state = 36, .external_lex_state = 12}, + [4422] = {.lex_state = 36, .external_lex_state = 15}, + [4423] = {.lex_state = 36, .external_lex_state = 15}, + [4424] = {.lex_state = 36, .external_lex_state = 15}, + [4425] = {.lex_state = 36, .external_lex_state = 15}, + [4426] = {.lex_state = 60, .external_lex_state = 11}, + [4427] = {.lex_state = 36, .external_lex_state = 12}, + [4428] = {.lex_state = 36, .external_lex_state = 12}, + [4429] = {.lex_state = 36, .external_lex_state = 12}, + [4430] = {.lex_state = 36, .external_lex_state = 15}, + [4431] = {.lex_state = 36, .external_lex_state = 12}, + [4432] = {.lex_state = 36, .external_lex_state = 12}, + [4433] = {.lex_state = 15, .external_lex_state = 12}, + [4434] = {.lex_state = 36, .external_lex_state = 15}, + [4435] = {.lex_state = 36, .external_lex_state = 15}, + [4436] = {.lex_state = 36, .external_lex_state = 15}, + [4437] = {.lex_state = 36, .external_lex_state = 15}, + [4438] = {.lex_state = 36, .external_lex_state = 15}, + [4439] = {.lex_state = 36, .external_lex_state = 15}, + [4440] = {.lex_state = 36, .external_lex_state = 15}, + [4441] = {.lex_state = 36, .external_lex_state = 15}, + [4442] = {.lex_state = 36, .external_lex_state = 12}, + [4443] = {.lex_state = 65, .external_lex_state = 12}, + [4444] = {.lex_state = 15, .external_lex_state = 11}, + [4445] = {.lex_state = 15, .external_lex_state = 12}, + [4446] = {.lex_state = 36, .external_lex_state = 12}, + [4447] = {.lex_state = 36, .external_lex_state = 15}, + [4448] = {.lex_state = 36, .external_lex_state = 15}, + [4449] = {.lex_state = 36, .external_lex_state = 15}, + [4450] = {.lex_state = 36, .external_lex_state = 15}, + [4451] = {.lex_state = 36, .external_lex_state = 12}, + [4452] = {.lex_state = 36, .external_lex_state = 12}, + [4453] = {.lex_state = 36, .external_lex_state = 12}, + [4454] = {.lex_state = 36, .external_lex_state = 12}, + [4455] = {.lex_state = 15, .external_lex_state = 12}, + [4456] = {.lex_state = 36, .external_lex_state = 12}, + [4457] = {.lex_state = 36, .external_lex_state = 12}, + [4458] = {.lex_state = 36, .external_lex_state = 15}, + [4459] = {.lex_state = 36, .external_lex_state = 15}, + [4460] = {.lex_state = 36, .external_lex_state = 12}, + [4461] = {.lex_state = 36, .external_lex_state = 12}, + [4462] = {.lex_state = 36, .external_lex_state = 12}, [4463] = {.lex_state = 36, .external_lex_state = 12}, [4464] = {.lex_state = 36, .external_lex_state = 12}, - [4465] = {.lex_state = 36, .external_lex_state = 16}, + [4465] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [4467] = {.lex_state = 36, .external_lex_state = 12}, + [4468] = {.lex_state = 36, .external_lex_state = 12}, + [4469] = {.lex_state = 36, .external_lex_state = 15}, + [4470] = {.lex_state = 36, .external_lex_state = 15}, + [4471] = {.lex_state = 36, .external_lex_state = 12}, + [4472] = {.lex_state = 36, .external_lex_state = 15}, + [4473] = {.lex_state = 36, .external_lex_state = 12}, + [4474] = {.lex_state = 36, .external_lex_state = 15}, + [4475] = {.lex_state = 36, .external_lex_state = 15}, + [4476] = {.lex_state = 36, .external_lex_state = 15}, + [4477] = {.lex_state = 36, .external_lex_state = 15}, + [4478] = {.lex_state = 36, .external_lex_state = 15}, + [4479] = {.lex_state = 36, .external_lex_state = 15}, + [4480] = {.lex_state = 36, .external_lex_state = 15}, + [4481] = {.lex_state = 36, .external_lex_state = 12}, + [4482] = {.lex_state = 36, .external_lex_state = 12}, + [4483] = {.lex_state = 36, .external_lex_state = 12}, + [4484] = {.lex_state = 36, .external_lex_state = 12}, + [4485] = {.lex_state = 36, .external_lex_state = 12}, + [4486] = {.lex_state = 36, .external_lex_state = 12}, + [4487] = {.lex_state = 36, .external_lex_state = 12}, + [4488] = {.lex_state = 36, .external_lex_state = 12}, + [4489] = {.lex_state = 36, .external_lex_state = 12}, + [4490] = {.lex_state = 36, .external_lex_state = 12}, + [4491] = {.lex_state = 36, .external_lex_state = 12}, + [4492] = {.lex_state = 36, .external_lex_state = 12}, + [4493] = {.lex_state = 36, .external_lex_state = 12}, + [4494] = {.lex_state = 36, .external_lex_state = 12}, + [4495] = {.lex_state = 36, .external_lex_state = 12}, + [4496] = {.lex_state = 36, .external_lex_state = 12}, + [4497] = {.lex_state = 36, .external_lex_state = 12}, + [4498] = {.lex_state = 36, .external_lex_state = 12}, + [4499] = {.lex_state = 36, .external_lex_state = 12}, + [4500] = {.lex_state = 36, .external_lex_state = 12}, + [4501] = {.lex_state = 36, .external_lex_state = 12}, + [4502] = {.lex_state = 65, .external_lex_state = 12}, + [4503] = {.lex_state = 36, .external_lex_state = 12}, + [4504] = {.lex_state = 36, .external_lex_state = 12}, + [4505] = {.lex_state = 36, .external_lex_state = 12}, + [4506] = {.lex_state = 36, .external_lex_state = 12}, + [4507] = {.lex_state = 36, .external_lex_state = 12}, + [4508] = {.lex_state = 36, .external_lex_state = 12}, + [4509] = {.lex_state = 36, .external_lex_state = 12}, + [4510] = {.lex_state = 36, .external_lex_state = 12}, + [4511] = {.lex_state = 36, .external_lex_state = 12}, + [4512] = {.lex_state = 36, .external_lex_state = 12}, + [4513] = {.lex_state = 36, .external_lex_state = 12}, + [4514] = {.lex_state = 36, .external_lex_state = 12}, + [4515] = {.lex_state = 36, .external_lex_state = 12}, + [4516] = {.lex_state = 36, .external_lex_state = 12}, + [4517] = {.lex_state = 36, .external_lex_state = 12}, + [4518] = {.lex_state = 36, .external_lex_state = 12}, + [4519] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [4521] = {.lex_state = 65, .external_lex_state = 12}, + [4522] = {.lex_state = 36, .external_lex_state = 12}, + [4523] = {.lex_state = 36, .external_lex_state = 12}, + [4524] = {.lex_state = 36, .external_lex_state = 12}, + [4525] = {.lex_state = 36, .external_lex_state = 12}, + [4526] = {.lex_state = 36, .external_lex_state = 12}, + [4527] = {.lex_state = 36, .external_lex_state = 12}, + [4528] = {.lex_state = 36, .external_lex_state = 12}, + [4529] = {.lex_state = 36, .external_lex_state = 12}, + [4530] = {.lex_state = 60, .external_lex_state = 12}, + [4531] = {.lex_state = 60, .external_lex_state = 15}, + [4532] = {.lex_state = 60, .external_lex_state = 15}, + [4533] = {.lex_state = 36, .external_lex_state = 11}, + [4534] = {.lex_state = 60, .external_lex_state = 11}, + [4535] = {.lex_state = 60, .external_lex_state = 12}, + [4536] = {.lex_state = 36, .external_lex_state = 16}, + [4537] = {.lex_state = 60, .external_lex_state = 12}, + [4538] = {.lex_state = 36, .external_lex_state = 11}, + [4539] = {.lex_state = 36, .external_lex_state = 11}, + [4540] = {.lex_state = 36, .external_lex_state = 11}, + [4541] = {.lex_state = 36, .external_lex_state = 11}, + [4542] = {.lex_state = 36, .external_lex_state = 11}, + [4543] = {.lex_state = 36, .external_lex_state = 11}, + [4544] = {.lex_state = 60, .external_lex_state = 12}, + [4545] = {.lex_state = 60, .external_lex_state = 12}, [4546] = {.lex_state = 36, .external_lex_state = 11}, - [4547] = {.lex_state = 11, .external_lex_state = 12}, - [4548] = {.lex_state = 36, .external_lex_state = 11}, + [4547] = {.lex_state = 36, .external_lex_state = 11}, + [4548] = {.lex_state = 60, .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}, + [4550] = {.lex_state = 66, .external_lex_state = 16}, + [4551] = {.lex_state = 60, .external_lex_state = 11}, + [4552] = {.lex_state = 36, .external_lex_state = 11}, + [4553] = {.lex_state = 60, .external_lex_state = 15}, + [4554] = {.lex_state = 67, .external_lex_state = 14}, + [4555] = {.lex_state = 66, .external_lex_state = 14}, + [4556] = {.lex_state = 60, .external_lex_state = 12}, [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}, + [4558] = {.lex_state = 60, .external_lex_state = 12}, + [4559] = {.lex_state = 60, .external_lex_state = 16}, + [4560] = {.lex_state = 67, .external_lex_state = 15}, + [4561] = {.lex_state = 60, .external_lex_state = 15}, + [4562] = {.lex_state = 36, .external_lex_state = 15}, + [4563] = {.lex_state = 60, .external_lex_state = 15}, + [4564] = {.lex_state = 67, .external_lex_state = 16}, + [4565] = {.lex_state = 36, .external_lex_state = 15}, + [4566] = {.lex_state = 36, .external_lex_state = 11}, + [4567] = {.lex_state = 15, .external_lex_state = 12}, + [4568] = {.lex_state = 60, .external_lex_state = 16}, + [4569] = {.lex_state = 36, .external_lex_state = 12}, + [4570] = {.lex_state = 36, .external_lex_state = 15}, + [4571] = {.lex_state = 36, .external_lex_state = 15}, + [4572] = {.lex_state = 60, .external_lex_state = 16}, + [4573] = {.lex_state = 36, .external_lex_state = 15}, + [4574] = {.lex_state = 60, .external_lex_state = 15}, + [4575] = {.lex_state = 36, .external_lex_state = 15}, + [4576] = {.lex_state = 60, .external_lex_state = 16}, + [4577] = {.lex_state = 60, .external_lex_state = 15}, + [4578] = {.lex_state = 60, .external_lex_state = 15}, + [4579] = {.lex_state = 36, .external_lex_state = 15}, + [4580] = {.lex_state = 60, .external_lex_state = 16}, + [4581] = {.lex_state = 68, .external_lex_state = 11}, + [4582] = {.lex_state = 60, .external_lex_state = 15}, + [4583] = {.lex_state = 36, .external_lex_state = 11}, + [4584] = {.lex_state = 60, .external_lex_state = 11}, + [4585] = {.lex_state = 57, .external_lex_state = 11}, + [4586] = {.lex_state = 36, .external_lex_state = 12}, + [4587] = {.lex_state = 36, .external_lex_state = 11}, + [4588] = {.lex_state = 60, .external_lex_state = 11}, + [4589] = {.lex_state = 36, .external_lex_state = 11}, + [4590] = {.lex_state = 60, .external_lex_state = 15}, + [4591] = {.lex_state = 36, .external_lex_state = 11}, + [4592] = {.lex_state = 36, .external_lex_state = 11}, + [4593] = {.lex_state = 57, .external_lex_state = 11}, + [4594] = {.lex_state = 60, .external_lex_state = 15}, + [4595] = {.lex_state = 36, .external_lex_state = 12}, + [4596] = {.lex_state = 36, .external_lex_state = 12}, + [4597] = {.lex_state = 60, .external_lex_state = 11}, + [4598] = {.lex_state = 36, .external_lex_state = 12}, + [4599] = {.lex_state = 60, .external_lex_state = 11}, + [4600] = {.lex_state = 36, .external_lex_state = 12}, + [4601] = {.lex_state = 60, .external_lex_state = 15}, + [4602] = {.lex_state = 60, .external_lex_state = 15}, + [4603] = {.lex_state = 68, .external_lex_state = 16}, + [4604] = {.lex_state = 36, .external_lex_state = 11}, + [4605] = {.lex_state = 36, .external_lex_state = 12}, + [4606] = {.lex_state = 36, .external_lex_state = 12}, + [4607] = {.lex_state = 60, .external_lex_state = 11}, + [4608] = {.lex_state = 60, .external_lex_state = 11}, + [4609] = {.lex_state = 36, .external_lex_state = 12}, + [4610] = {.lex_state = 57, .external_lex_state = 11}, + [4611] = {.lex_state = 60, .external_lex_state = 15}, + [4612] = {.lex_state = 57, .external_lex_state = 11}, + [4613] = {.lex_state = 69, .external_lex_state = 17}, [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}, + [4615] = {.lex_state = 60, .external_lex_state = 11}, + [4616] = {.lex_state = 60, .external_lex_state = 11}, + [4617] = {.lex_state = 60, .external_lex_state = 11}, + [4618] = {.lex_state = 60, .external_lex_state = 11}, + [4619] = {.lex_state = 60, .external_lex_state = 11}, + [4620] = {.lex_state = 60, .external_lex_state = 15}, + [4621] = {.lex_state = 60, .external_lex_state = 15}, [4622] = {.lex_state = 36, .external_lex_state = 12}, - [4623] = {.lex_state = 156, .external_lex_state = 12}, - [4624] = {.lex_state = 36, .external_lex_state = 16}, + [4623] = {.lex_state = 36, .external_lex_state = 12}, + [4624] = {.lex_state = 60, .external_lex_state = 11}, [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}, + [4628] = {.lex_state = 36, .external_lex_state = 12}, + [4629] = {.lex_state = 66, .external_lex_state = 15}, [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}, + [4632] = {.lex_state = 60, .external_lex_state = 11}, + [4633] = {.lex_state = 60, .external_lex_state = 11}, + [4634] = {.lex_state = 36, .external_lex_state = 12}, + [4635] = {.lex_state = 36, .external_lex_state = 16}, + [4636] = {.lex_state = 36, .external_lex_state = 16}, + [4637] = {.lex_state = 60, .external_lex_state = 15}, + [4638] = {.lex_state = 36, .external_lex_state = 12}, + [4639] = {.lex_state = 60, .external_lex_state = 11}, + [4640] = {.lex_state = 36, .external_lex_state = 15}, + [4641] = {.lex_state = 68, .external_lex_state = 16}, + [4642] = {.lex_state = 36, .external_lex_state = 15}, + [4643] = {.lex_state = 36, .external_lex_state = 12}, + [4644] = {.lex_state = 36, .external_lex_state = 15}, + [4645] = {.lex_state = 36, .external_lex_state = 12}, + [4646] = {.lex_state = 36, .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}, + [4648] = {.lex_state = 36, .external_lex_state = 16}, + [4649] = {.lex_state = 41, .external_lex_state = 14}, [4650] = {.lex_state = 36, .external_lex_state = 12}, - [4651] = {.lex_state = 36, .external_lex_state = 12}, + [4651] = {.lex_state = 60, .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}, + [4654] = {.lex_state = 60, .external_lex_state = 11}, + [4655] = {.lex_state = 60, .external_lex_state = 12}, + [4656] = {.lex_state = 60, .external_lex_state = 12}, + [4657] = {.lex_state = 36, .external_lex_state = 12}, + [4658] = {.lex_state = 60, .external_lex_state = 15}, + [4659] = {.lex_state = 41, .external_lex_state = 14}, + [4660] = {.lex_state = 36, .external_lex_state = 16}, + [4661] = {.lex_state = 60, .external_lex_state = 12}, + [4662] = {.lex_state = 36, .external_lex_state = 12}, + [4663] = {.lex_state = 41, .external_lex_state = 14}, [4664] = {.lex_state = 36, .external_lex_state = 12}, - [4665] = {.lex_state = 57, .external_lex_state = 11}, + [4665] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [4668] = {.lex_state = 60, .external_lex_state = 12}, + [4669] = {.lex_state = 60, .external_lex_state = 12}, + [4670] = {.lex_state = 36, .external_lex_state = 12}, + [4671] = {.lex_state = 41, .external_lex_state = 14}, + [4672] = {.lex_state = 60, .external_lex_state = 12}, [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}, + [4674] = {.lex_state = 41, .external_lex_state = 14}, + [4675] = {.lex_state = 60, .external_lex_state = 15}, + [4676] = {.lex_state = 41, .external_lex_state = 14}, + [4677] = {.lex_state = 60, .external_lex_state = 15}, + [4678] = {.lex_state = 41, .external_lex_state = 14}, + [4679] = {.lex_state = 60, .external_lex_state = 11}, + [4680] = {.lex_state = 41, .external_lex_state = 14}, + [4681] = {.lex_state = 60, .external_lex_state = 15}, + [4682] = {.lex_state = 60, .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}, + [4684] = {.lex_state = 36, .external_lex_state = 15}, + [4685] = {.lex_state = 60, .external_lex_state = 15}, + [4686] = {.lex_state = 15, .external_lex_state = 12}, + [4687] = {.lex_state = 36, .external_lex_state = 12}, [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}, + [4690] = {.lex_state = 60, .external_lex_state = 12}, + [4691] = {.lex_state = 68, .external_lex_state = 11}, + [4692] = {.lex_state = 60, .external_lex_state = 11}, + [4693] = {.lex_state = 60, .external_lex_state = 12}, + [4694] = {.lex_state = 60, .external_lex_state = 12}, + [4695] = {.lex_state = 60, .external_lex_state = 12}, + [4696] = {.lex_state = 36, .external_lex_state = 16}, + [4697] = {.lex_state = 36, .external_lex_state = 12}, + [4698] = {.lex_state = 36, .external_lex_state = 13}, + [4699] = {.lex_state = 36, .external_lex_state = 16}, + [4700] = {.lex_state = 36, .external_lex_state = 12}, + [4701] = {.lex_state = 36, .external_lex_state = 16}, + [4702] = {.lex_state = 36, .external_lex_state = 15}, + [4703] = {.lex_state = 41, .external_lex_state = 16}, + [4704] = {.lex_state = 36, .external_lex_state = 16}, + [4705] = {.lex_state = 60, .external_lex_state = 12}, + [4706] = {.lex_state = 36, .external_lex_state = 15}, + [4707] = {.lex_state = 36, .external_lex_state = 11}, + [4708] = {.lex_state = 36, .external_lex_state = 15}, + [4709] = {.lex_state = 41, .external_lex_state = 15}, [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}, + [4711] = {.lex_state = 41, .external_lex_state = 15}, + [4712] = {.lex_state = 41, .external_lex_state = 15}, + [4713] = {.lex_state = 36, .external_lex_state = 11}, + [4714] = {.lex_state = 36, .external_lex_state = 15}, + [4715] = {.lex_state = 36, .external_lex_state = 15}, + [4716] = {.lex_state = 36, .external_lex_state = 11}, + [4717] = {.lex_state = 36, .external_lex_state = 11}, + [4718] = {.lex_state = 36, .external_lex_state = 16}, [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}, + [4720] = {.lex_state = 36, .external_lex_state = 15}, + [4721] = {.lex_state = 36, .external_lex_state = 11}, + [4722] = {.lex_state = 36, .external_lex_state = 12}, + [4723] = {.lex_state = 36, .external_lex_state = 11}, + [4724] = {.lex_state = 36, .external_lex_state = 15}, + [4725] = {.lex_state = 41, .external_lex_state = 16}, + [4726] = {.lex_state = 36, .external_lex_state = 11}, + [4727] = {.lex_state = 36, .external_lex_state = 16}, + [4728] = {.lex_state = 36, .external_lex_state = 15}, + [4729] = {.lex_state = 36, .external_lex_state = 12}, + [4730] = {.lex_state = 41, .external_lex_state = 15}, + [4731] = {.lex_state = 36, .external_lex_state = 11}, + [4732] = {.lex_state = 36, .external_lex_state = 12}, + [4733] = {.lex_state = 60, .external_lex_state = 12}, + [4734] = {.lex_state = 36, .external_lex_state = 16}, [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}, + [4736] = {.lex_state = 41, .external_lex_state = 16}, + [4737] = {.lex_state = 36, .external_lex_state = 15}, + [4738] = {.lex_state = 41, .external_lex_state = 15}, + [4739] = {.lex_state = 36, .external_lex_state = 11}, + [4740] = {.lex_state = 36, .external_lex_state = 11}, + [4741] = {.lex_state = 36, .external_lex_state = 16}, + [4742] = {.lex_state = 36, .external_lex_state = 15}, + [4743] = {.lex_state = 36, .external_lex_state = 15}, + [4744] = {.lex_state = 36, .external_lex_state = 15}, + [4745] = {.lex_state = 36, .external_lex_state = 15}, + [4746] = {.lex_state = 36, .external_lex_state = 15}, + [4747] = {.lex_state = 41, .external_lex_state = 15}, + [4748] = {.lex_state = 41, .external_lex_state = 16}, + [4749] = {.lex_state = 36, .external_lex_state = 15}, + [4750] = {.lex_state = 36, .external_lex_state = 15}, + [4751] = {.lex_state = 36, .external_lex_state = 15}, + [4752] = {.lex_state = 41, .external_lex_state = 15}, + [4753] = {.lex_state = 41, .external_lex_state = 15}, + [4754] = {.lex_state = 36, .external_lex_state = 11}, + [4755] = {.lex_state = 36, .external_lex_state = 12}, + [4756] = {.lex_state = 36, .external_lex_state = 15}, + [4757] = {.lex_state = 36, .external_lex_state = 15}, + [4758] = {.lex_state = 41, .external_lex_state = 15}, + [4759] = {.lex_state = 36, .external_lex_state = 16}, [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}, + [4761] = {.lex_state = 36, .external_lex_state = 16}, + [4762] = {.lex_state = 41, .external_lex_state = 15}, + [4763] = {.lex_state = 36, .external_lex_state = 15}, + [4764] = {.lex_state = 36, .external_lex_state = 16}, + [4765] = {.lex_state = 36, .external_lex_state = 11}, + [4766] = {.lex_state = 41, .external_lex_state = 16}, + [4767] = {.lex_state = 36, .external_lex_state = 16}, + [4768] = {.lex_state = 36, .external_lex_state = 15}, + [4769] = {.lex_state = 36, .external_lex_state = 16}, + [4770] = {.lex_state = 36, .external_lex_state = 16}, + [4771] = {.lex_state = 36, .external_lex_state = 16}, + [4772] = {.lex_state = 41, .external_lex_state = 16}, + [4773] = {.lex_state = 36, .external_lex_state = 15}, + [4774] = {.lex_state = 36, .external_lex_state = 15}, [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}, + [4776] = {.lex_state = 41, .external_lex_state = 16}, + [4777] = {.lex_state = 36, .external_lex_state = 15}, + [4778] = {.lex_state = 41, .external_lex_state = 15}, + [4779] = {.lex_state = 36, .external_lex_state = 16}, + [4780] = {.lex_state = 41, .external_lex_state = 16}, + [4781] = {.lex_state = 36, .external_lex_state = 15}, + [4782] = {.lex_state = 36, .external_lex_state = 12}, + [4783] = {.lex_state = 36, .external_lex_state = 16}, + [4784] = {.lex_state = 36, .external_lex_state = 15}, + [4785] = {.lex_state = 36, .external_lex_state = 11}, [4786] = {.lex_state = 36, .external_lex_state = 11}, - [4787] = {.lex_state = 156, .external_lex_state = 5}, + [4787] = {.lex_state = 36, .external_lex_state = 11}, [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}, + [4789] = {.lex_state = 36, .external_lex_state = 15}, + [4790] = {.lex_state = 36, .external_lex_state = 15}, + [4791] = {.lex_state = 36, .external_lex_state = 16}, + [4792] = {.lex_state = 36, .external_lex_state = 15}, + [4793] = {.lex_state = 41, .external_lex_state = 15}, + [4794] = {.lex_state = 36, .external_lex_state = 15}, + [4795] = {.lex_state = 36, .external_lex_state = 16}, + [4796] = {.lex_state = 41, .external_lex_state = 15}, + [4797] = {.lex_state = 36, .external_lex_state = 15}, + [4798] = {.lex_state = 36, .external_lex_state = 16}, + [4799] = {.lex_state = 60, .external_lex_state = 12}, + [4800] = {.lex_state = 41, .external_lex_state = 15}, + [4801] = {.lex_state = 36, .external_lex_state = 15}, + [4802] = {.lex_state = 36, .external_lex_state = 15}, + [4803] = {.lex_state = 36, .external_lex_state = 11}, + [4804] = {.lex_state = 36, .external_lex_state = 15}, + [4805] = {.lex_state = 36, .external_lex_state = 16}, + [4806] = {.lex_state = 36, .external_lex_state = 11}, + [4807] = {.lex_state = 36, .external_lex_state = 16}, + [4808] = {.lex_state = 36, .external_lex_state = 11}, + [4809] = {.lex_state = 41, .external_lex_state = 15}, + [4810] = {.lex_state = 60, .external_lex_state = 12}, + [4811] = {.lex_state = 36, .external_lex_state = 16}, + [4812] = {.lex_state = 36, .external_lex_state = 15}, + [4813] = {.lex_state = 36, .external_lex_state = 15}, + [4814] = {.lex_state = 36, .external_lex_state = 15}, + [4815] = {.lex_state = 36, .external_lex_state = 11}, + [4816] = {.lex_state = 36, .external_lex_state = 15}, + [4817] = {.lex_state = 36, .external_lex_state = 16}, + [4818] = {.lex_state = 36, .external_lex_state = 16}, + [4819] = {.lex_state = 36, .external_lex_state = 16}, + [4820] = {.lex_state = 41, .external_lex_state = 15}, + [4821] = {.lex_state = 36, .external_lex_state = 15}, + [4822] = {.lex_state = 36, .external_lex_state = 15}, + [4823] = {.lex_state = 36, .external_lex_state = 15}, + [4824] = {.lex_state = 36, .external_lex_state = 15}, + [4825] = {.lex_state = 60, .external_lex_state = 12}, + [4826] = {.lex_state = 60, .external_lex_state = 12}, + [4827] = {.lex_state = 36, .external_lex_state = 15}, + [4828] = {.lex_state = 41, .external_lex_state = 15}, + [4829] = {.lex_state = 36, .external_lex_state = 16}, + [4830] = {.lex_state = 36, .external_lex_state = 11}, + [4831] = {.lex_state = 37, .external_lex_state = 11}, + [4832] = {.lex_state = 60, .external_lex_state = 16}, + [4833] = {.lex_state = 55, .external_lex_state = 15}, + [4834] = {.lex_state = 0, .external_lex_state = 18}, + [4835] = {.lex_state = 0, .external_lex_state = 18}, + [4836] = {.lex_state = 36, .external_lex_state = 5}, + [4837] = {.lex_state = 36, .external_lex_state = 5}, + [4838] = {.lex_state = 55, .external_lex_state = 16}, + [4839] = {.lex_state = 0, .external_lex_state = 18}, + [4840] = {.lex_state = 0, .external_lex_state = 18}, + [4841] = {.lex_state = 36, .external_lex_state = 11}, + [4842] = {.lex_state = 60, .external_lex_state = 16}, + [4843] = {.lex_state = 36, .external_lex_state = 11}, + [4844] = {.lex_state = 0, .external_lex_state = 18}, + [4845] = {.lex_state = 0, .external_lex_state = 18}, + [4846] = {.lex_state = 36, .external_lex_state = 11}, + [4847] = {.lex_state = 0, .external_lex_state = 18}, + [4848] = {.lex_state = 0, .external_lex_state = 18}, + [4849] = {.lex_state = 0, .external_lex_state = 18}, + [4850] = {.lex_state = 36, .external_lex_state = 5}, + [4851] = {.lex_state = 0, .external_lex_state = 18}, + [4852] = {.lex_state = 0, .external_lex_state = 18}, + [4853] = {.lex_state = 60, .external_lex_state = 16}, + [4854] = {.lex_state = 36, .external_lex_state = 11}, + [4855] = {.lex_state = 36, .external_lex_state = 11}, + [4856] = {.lex_state = 36, .external_lex_state = 12}, + [4857] = {.lex_state = 36, .external_lex_state = 11}, + [4858] = {.lex_state = 0, .external_lex_state = 18}, + [4859] = {.lex_state = 0, .external_lex_state = 18}, + [4860] = {.lex_state = 36, .external_lex_state = 11}, + [4861] = {.lex_state = 36, .external_lex_state = 12}, + [4862] = {.lex_state = 36, .external_lex_state = 11}, + [4863] = {.lex_state = 0, .external_lex_state = 18}, + [4864] = {.lex_state = 36, .external_lex_state = 11}, + [4865] = {.lex_state = 36, .external_lex_state = 5}, + [4866] = {.lex_state = 60, .external_lex_state = 16}, + [4867] = {.lex_state = 0, .external_lex_state = 18}, + [4868] = {.lex_state = 36, .external_lex_state = 11}, + [4869] = {.lex_state = 0, .external_lex_state = 18}, + [4870] = {.lex_state = 36, .external_lex_state = 12}, + [4871] = {.lex_state = 36, .external_lex_state = 12}, + [4872] = {.lex_state = 0, .external_lex_state = 18}, + [4873] = {.lex_state = 0, .external_lex_state = 18}, + [4874] = {.lex_state = 0, .external_lex_state = 18}, + [4875] = {.lex_state = 36, .external_lex_state = 11}, + [4876] = {.lex_state = 15, .external_lex_state = 12}, + [4877] = {.lex_state = 0, .external_lex_state = 18}, + [4878] = {.lex_state = 55, .external_lex_state = 14}, + [4879] = {.lex_state = 0, .external_lex_state = 18}, + [4880] = {.lex_state = 0, .external_lex_state = 18}, + [4881] = {.lex_state = 0, .external_lex_state = 18}, + [4882] = {.lex_state = 0, .external_lex_state = 18}, + [4883] = {.lex_state = 36, .external_lex_state = 5}, + [4884] = {.lex_state = 36, .external_lex_state = 11}, + [4885] = {.lex_state = 36, .external_lex_state = 12}, + [4886] = {.lex_state = 36, .external_lex_state = 11}, + [4887] = {.lex_state = 36, .external_lex_state = 11}, + [4888] = {.lex_state = 36, .external_lex_state = 11}, + [4889] = {.lex_state = 0, .external_lex_state = 18}, + [4890] = {.lex_state = 0, .external_lex_state = 18}, [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}, + [4892] = {.lex_state = 36, .external_lex_state = 12}, + [4893] = {.lex_state = 36, .external_lex_state = 11}, + [4894] = {.lex_state = 36, .external_lex_state = 11}, + [4895] = {.lex_state = 36, .external_lex_state = 5}, + [4896] = {.lex_state = 36, .external_lex_state = 12}, + [4897] = {.lex_state = 36, .external_lex_state = 5}, + [4898] = {.lex_state = 36, .external_lex_state = 12}, + [4899] = {.lex_state = 36, .external_lex_state = 11}, + [4900] = {.lex_state = 36, .external_lex_state = 11}, + [4901] = {.lex_state = 36, .external_lex_state = 11}, + [4902] = {.lex_state = 36, .external_lex_state = 11}, + [4903] = {.lex_state = 36, .external_lex_state = 5}, + [4904] = {.lex_state = 0, .external_lex_state = 18}, + [4905] = {.lex_state = 36, .external_lex_state = 15}, + [4906] = {.lex_state = 36, .external_lex_state = 12}, + [4907] = {.lex_state = 36, .external_lex_state = 12}, + [4908] = {.lex_state = 36, .external_lex_state = 12}, + [4909] = {.lex_state = 36, .external_lex_state = 12}, + [4910] = {.lex_state = 36, .external_lex_state = 16}, + [4911] = {.lex_state = 36, .external_lex_state = 12}, + [4912] = {.lex_state = 36, .external_lex_state = 12}, + [4913] = {.lex_state = 60, .external_lex_state = 16}, + [4914] = {.lex_state = 158, .external_lex_state = 12}, + [4915] = {.lex_state = 57, .external_lex_state = 11}, + [4916] = {.lex_state = 36, .external_lex_state = 16}, + [4917] = {.lex_state = 36, .external_lex_state = 12}, + [4918] = {.lex_state = 158, .external_lex_state = 12}, + [4919] = {.lex_state = 36, .external_lex_state = 15}, + [4920] = {.lex_state = 36, .external_lex_state = 12}, + [4921] = {.lex_state = 36, .external_lex_state = 12}, + [4922] = {.lex_state = 36, .external_lex_state = 12}, + [4923] = {.lex_state = 60, .external_lex_state = 16}, + [4924] = {.lex_state = 158, .external_lex_state = 12}, + [4925] = {.lex_state = 36, .external_lex_state = 12}, + [4926] = {.lex_state = 158, .external_lex_state = 12}, + [4927] = {.lex_state = 36, .external_lex_state = 12}, + [4928] = {.lex_state = 55, .external_lex_state = 14}, + [4929] = {.lex_state = 36, .external_lex_state = 12}, + [4930] = {.lex_state = 36, .external_lex_state = 12}, + [4931] = {.lex_state = 36, .external_lex_state = 12}, + [4932] = {.lex_state = 36, .external_lex_state = 12}, + [4933] = {.lex_state = 36, .external_lex_state = 12}, + [4934] = {.lex_state = 36, .external_lex_state = 12}, + [4935] = {.lex_state = 37, .external_lex_state = 11}, + [4936] = {.lex_state = 60, .external_lex_state = 16}, + [4937] = {.lex_state = 60, .external_lex_state = 16}, + [4938] = {.lex_state = 36, .external_lex_state = 16}, + [4939] = {.lex_state = 36, .external_lex_state = 12}, + [4940] = {.lex_state = 158, .external_lex_state = 12}, + [4941] = {.lex_state = 36, .external_lex_state = 12}, + [4942] = {.lex_state = 36, .external_lex_state = 16}, + [4943] = {.lex_state = 158, .external_lex_state = 12}, + [4944] = {.lex_state = 37, .external_lex_state = 11}, + [4945] = {.lex_state = 37, .external_lex_state = 11}, + [4946] = {.lex_state = 37, .external_lex_state = 11}, + [4947] = {.lex_state = 36, .external_lex_state = 12}, + [4948] = {.lex_state = 60, .external_lex_state = 16}, + [4949] = {.lex_state = 36, .external_lex_state = 12}, + [4950] = {.lex_state = 36, .external_lex_state = 12}, + [4951] = {.lex_state = 36, .external_lex_state = 16}, + [4952] = {.lex_state = 36, .external_lex_state = 12}, + [4953] = {.lex_state = 158, .external_lex_state = 12}, + [4954] = {.lex_state = 36, .external_lex_state = 12}, + [4955] = {.lex_state = 36, .external_lex_state = 12}, + [4956] = {.lex_state = 37, .external_lex_state = 11}, + [4957] = {.lex_state = 36, .external_lex_state = 15}, + [4958] = {.lex_state = 60, .external_lex_state = 16}, + [4959] = {.lex_state = 36, .external_lex_state = 12}, + [4960] = {.lex_state = 158, .external_lex_state = 12}, + [4961] = {.lex_state = 37, .external_lex_state = 11}, + [4962] = {.lex_state = 36, .external_lex_state = 12}, + [4963] = {.lex_state = 36, .external_lex_state = 12}, + [4964] = {.lex_state = 36, .external_lex_state = 12}, + [4965] = {.lex_state = 158, .external_lex_state = 12}, + [4966] = {.lex_state = 55, .external_lex_state = 15}, + [4967] = {.lex_state = 57, .external_lex_state = 11}, + [4968] = {.lex_state = 57, .external_lex_state = 11}, + [4969] = {.lex_state = 70, .external_lex_state = 15}, + [4970] = {.lex_state = 36, .external_lex_state = 12}, + [4971] = {.lex_state = 36, .external_lex_state = 12}, + [4972] = {.lex_state = 57, .external_lex_state = 11}, + [4973] = {.lex_state = 36, .external_lex_state = 12}, + [4974] = {.lex_state = 158, .external_lex_state = 12}, + [4975] = {.lex_state = 57, .external_lex_state = 11}, + [4976] = {.lex_state = 57, .external_lex_state = 11}, + [4977] = {.lex_state = 36, .external_lex_state = 12}, + [4978] = {.lex_state = 57, .external_lex_state = 11}, + [4979] = {.lex_state = 36, .external_lex_state = 12}, + [4980] = {.lex_state = 36, .external_lex_state = 12}, + [4981] = {.lex_state = 158, .external_lex_state = 12}, + [4982] = {.lex_state = 70, .external_lex_state = 11}, + [4983] = {.lex_state = 36, .external_lex_state = 16}, + [4984] = {.lex_state = 36, .external_lex_state = 12}, + [4985] = {.lex_state = 36, .external_lex_state = 12}, + [4986] = {.lex_state = 36, .external_lex_state = 12}, + [4987] = {.lex_state = 36, .external_lex_state = 12}, + [4988] = {.lex_state = 36, .external_lex_state = 12}, + [4989] = {.lex_state = 36, .external_lex_state = 12}, + [4990] = {.lex_state = 158, .external_lex_state = 12}, + [4991] = {.lex_state = 55, .external_lex_state = 16}, + [4992] = {.lex_state = 36, .external_lex_state = 12}, + [4993] = {.lex_state = 57, .external_lex_state = 14}, + [4994] = {.lex_state = 36, .external_lex_state = 12}, + [4995] = {.lex_state = 57, .external_lex_state = 11}, + [4996] = {.lex_state = 57, .external_lex_state = 11}, + [4997] = {.lex_state = 57, .external_lex_state = 11}, + [4998] = {.lex_state = 57, .external_lex_state = 11}, + [4999] = {.lex_state = 57, .external_lex_state = 11}, + [5000] = {.lex_state = 57, .external_lex_state = 11}, + [5001] = {.lex_state = 57, .external_lex_state = 14}, + [5002] = {.lex_state = 36, .external_lex_state = 11}, + [5003] = {.lex_state = 36, .external_lex_state = 11}, + [5004] = {.lex_state = 41, .external_lex_state = 14}, + [5005] = {.lex_state = 57, .external_lex_state = 14}, + [5006] = {.lex_state = 36, .external_lex_state = 12}, + [5007] = {.lex_state = 41, .external_lex_state = 14}, + [5008] = {.lex_state = 158, .external_lex_state = 5}, + [5009] = {.lex_state = 158, .external_lex_state = 5}, + [5010] = {.lex_state = 57, .external_lex_state = 14}, + [5011] = {.lex_state = 57, .external_lex_state = 14}, + [5012] = {.lex_state = 41, .external_lex_state = 14}, + [5013] = {.lex_state = 158, .external_lex_state = 5}, + [5014] = {.lex_state = 37, .external_lex_state = 16}, + [5015] = {.lex_state = 158, .external_lex_state = 5}, + [5016] = {.lex_state = 36, .external_lex_state = 11}, + [5017] = {.lex_state = 36, .external_lex_state = 11}, + [5018] = {.lex_state = 36, .external_lex_state = 11}, + [5019] = {.lex_state = 158, .external_lex_state = 11}, + [5020] = {.lex_state = 41, .external_lex_state = 15}, + [5021] = {.lex_state = 36, .external_lex_state = 11}, + [5022] = {.lex_state = 158, .external_lex_state = 5}, + [5023] = {.lex_state = 57, .external_lex_state = 14}, + [5024] = {.lex_state = 57, .external_lex_state = 14}, + [5025] = {.lex_state = 158, .external_lex_state = 11}, + [5026] = {.lex_state = 57, .external_lex_state = 14}, + [5027] = {.lex_state = 36, .external_lex_state = 16}, + [5028] = {.lex_state = 36, .external_lex_state = 11}, + [5029] = {.lex_state = 36, .external_lex_state = 11}, + [5030] = {.lex_state = 158, .external_lex_state = 11}, + [5031] = {.lex_state = 36, .external_lex_state = 15}, + [5032] = {.lex_state = 55, .external_lex_state = 12}, + [5033] = {.lex_state = 41, .external_lex_state = 14}, + [5034] = {.lex_state = 36, .external_lex_state = 11}, + [5035] = {.lex_state = 36, .external_lex_state = 15}, + [5036] = {.lex_state = 158, .external_lex_state = 5}, + [5037] = {.lex_state = 36, .external_lex_state = 11}, + [5038] = {.lex_state = 158, .external_lex_state = 11}, + [5039] = {.lex_state = 36, .external_lex_state = 12}, + [5040] = {.lex_state = 37, .external_lex_state = 16}, + [5041] = {.lex_state = 158, .external_lex_state = 5}, + [5042] = {.lex_state = 36, .external_lex_state = 11}, + [5043] = {.lex_state = 36, .external_lex_state = 11}, + [5044] = {.lex_state = 158, .external_lex_state = 11}, + [5045] = {.lex_state = 41, .external_lex_state = 14}, + [5046] = {.lex_state = 57, .external_lex_state = 14}, + [5047] = {.lex_state = 57, .external_lex_state = 14}, + [5048] = {.lex_state = 36, .external_lex_state = 11}, + [5049] = {.lex_state = 158, .external_lex_state = 5}, + [5050] = {.lex_state = 36, .external_lex_state = 11}, + [5051] = {.lex_state = 37, .external_lex_state = 16}, + [5052] = {.lex_state = 36, .external_lex_state = 11}, + [5053] = {.lex_state = 34, .external_lex_state = 11}, + [5054] = {.lex_state = 36, .external_lex_state = 11}, + [5055] = {.lex_state = 36, .external_lex_state = 11}, + [5056] = {.lex_state = 41, .external_lex_state = 14}, + [5057] = {.lex_state = 36, .external_lex_state = 11}, + [5058] = {.lex_state = 57, .external_lex_state = 14}, + [5059] = {.lex_state = 158, .external_lex_state = 5}, + [5060] = {.lex_state = 36, .external_lex_state = 11}, + [5061] = {.lex_state = 36, .external_lex_state = 11}, + [5062] = {.lex_state = 41, .external_lex_state = 16}, + [5063] = {.lex_state = 36, .external_lex_state = 11}, + [5064] = {.lex_state = 37, .external_lex_state = 16}, + [5065] = {.lex_state = 57, .external_lex_state = 14}, + [5066] = {.lex_state = 57, .external_lex_state = 14}, + [5067] = {.lex_state = 158, .external_lex_state = 5}, + [5068] = {.lex_state = 158, .external_lex_state = 5}, + [5069] = {.lex_state = 158, .external_lex_state = 11}, + [5070] = {.lex_state = 158, .external_lex_state = 5}, + [5071] = {.lex_state = 158, .external_lex_state = 5}, + [5072] = {.lex_state = 158, .external_lex_state = 11}, + [5073] = {.lex_state = 37, .external_lex_state = 16}, + [5074] = {.lex_state = 37, .external_lex_state = 16}, + [5075] = {.lex_state = 41, .external_lex_state = 16}, + [5076] = {.lex_state = 158, .external_lex_state = 11}, + [5077] = {.lex_state = 37, .external_lex_state = 11}, + [5078] = {.lex_state = 36, .external_lex_state = 11}, + [5079] = {.lex_state = 36, .external_lex_state = 11}, + [5080] = {.lex_state = 37, .external_lex_state = 16}, + [5081] = {.lex_state = 41, .external_lex_state = 15}, + [5082] = {.lex_state = 57, .external_lex_state = 14}, + [5083] = {.lex_state = 36, .external_lex_state = 11}, + [5084] = {.lex_state = 57, .external_lex_state = 14}, + [5085] = {.lex_state = 158, .external_lex_state = 5}, + [5086] = {.lex_state = 57, .external_lex_state = 14}, + [5087] = {.lex_state = 41, .external_lex_state = 14}, + [5088] = {.lex_state = 57, .external_lex_state = 14}, + [5089] = {.lex_state = 41, .external_lex_state = 14}, + [5090] = {.lex_state = 57, .external_lex_state = 14}, + [5091] = {.lex_state = 36, .external_lex_state = 15}, + [5092] = {.lex_state = 158, .external_lex_state = 5}, + [5093] = {.lex_state = 36, .external_lex_state = 11}, + [5094] = {.lex_state = 36, .external_lex_state = 11}, + [5095] = {.lex_state = 57, .external_lex_state = 14}, + [5096] = {.lex_state = 158, .external_lex_state = 5}, + [5097] = {.lex_state = 71, .external_lex_state = 19}, + [5098] = {.lex_state = 57, .external_lex_state = 14}, + [5099] = {.lex_state = 35, .external_lex_state = 11}, + [5100] = {.lex_state = 71, .external_lex_state = 19}, + [5101] = {.lex_state = 34, .external_lex_state = 11}, + [5102] = {.lex_state = 41, .external_lex_state = 14}, + [5103] = {.lex_state = 41, .external_lex_state = 14}, + [5104] = {.lex_state = 34, .external_lex_state = 11}, + [5105] = {.lex_state = 35, .external_lex_state = 11}, + [5106] = {.lex_state = 35, .external_lex_state = 16}, + [5107] = {.lex_state = 41, .external_lex_state = 14}, + [5108] = {.lex_state = 35, .external_lex_state = 11}, + [5109] = {.lex_state = 37, .external_lex_state = 2}, + [5110] = {.lex_state = 37, .external_lex_state = 12}, + [5111] = {.lex_state = 41, .external_lex_state = 14}, + [5112] = {.lex_state = 69, .external_lex_state = 17}, + [5113] = {.lex_state = 34, .external_lex_state = 11}, + [5114] = {.lex_state = 41, .external_lex_state = 14}, + [5115] = {.lex_state = 55, .external_lex_state = 16}, + [5116] = {.lex_state = 35, .external_lex_state = 11}, + [5117] = {.lex_state = 41, .external_lex_state = 14}, + [5118] = {.lex_state = 37, .external_lex_state = 12}, + [5119] = {.lex_state = 35, .external_lex_state = 16}, + [5120] = {.lex_state = 37, .external_lex_state = 12}, [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}, + [5122] = {.lex_state = 69, .external_lex_state = 17}, + [5123] = {.lex_state = 36, .external_lex_state = 2}, + [5124] = {.lex_state = 41, .external_lex_state = 14}, + [5125] = {.lex_state = 35, .external_lex_state = 16}, + [5126] = {.lex_state = 35, .external_lex_state = 11}, + [5127] = {.lex_state = 35, .external_lex_state = 16}, + [5128] = {.lex_state = 35, .external_lex_state = 11}, + [5129] = {.lex_state = 41, .external_lex_state = 14}, + [5130] = {.lex_state = 35, .external_lex_state = 11}, + [5131] = {.lex_state = 35, .external_lex_state = 11}, + [5132] = {.lex_state = 57, .external_lex_state = 12}, + [5133] = {.lex_state = 37, .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}, + [5135] = {.lex_state = 55, .external_lex_state = 14}, + [5136] = {.lex_state = 41, .external_lex_state = 15}, + [5137] = {.lex_state = 35, .external_lex_state = 11}, + [5138] = {.lex_state = 41, .external_lex_state = 16}, + [5139] = {.lex_state = 35, .external_lex_state = 16}, + [5140] = {.lex_state = 41, .external_lex_state = 14}, + [5141] = {.lex_state = 41, .external_lex_state = 15}, + [5142] = {.lex_state = 57, .external_lex_state = 12}, + [5143] = {.lex_state = 35, .external_lex_state = 16}, + [5144] = {.lex_state = 36, .external_lex_state = 2}, + [5145] = {.lex_state = 34, .external_lex_state = 11}, + [5146] = {.lex_state = 0, .external_lex_state = 18}, + [5147] = {.lex_state = 69, .external_lex_state = 17}, + [5148] = {.lex_state = 69, .external_lex_state = 17}, + [5149] = {.lex_state = 36, .external_lex_state = 12}, + [5150] = {.lex_state = 57, .external_lex_state = 12}, + [5151] = {.lex_state = 69, .external_lex_state = 17}, + [5152] = {.lex_state = 35, .external_lex_state = 16}, + [5153] = {.lex_state = 34, .external_lex_state = 11}, + [5154] = {.lex_state = 34, .external_lex_state = 11}, + [5155] = {.lex_state = 41, .external_lex_state = 15}, + [5156] = {.lex_state = 41, .external_lex_state = 15}, + [5157] = {.lex_state = 36, .external_lex_state = 2}, + [5158] = {.lex_state = 35, .external_lex_state = 11}, + [5159] = {.lex_state = 34, .external_lex_state = 11}, + [5160] = {.lex_state = 34, .external_lex_state = 11}, + [5161] = {.lex_state = 34, .external_lex_state = 11}, + [5162] = {.lex_state = 69, .external_lex_state = 17}, + [5163] = {.lex_state = 35, .external_lex_state = 11}, + [5164] = {.lex_state = 41, .external_lex_state = 16}, + [5165] = {.lex_state = 41, .external_lex_state = 15}, + [5166] = {.lex_state = 35, .external_lex_state = 11}, + [5167] = {.lex_state = 36, .external_lex_state = 12}, + [5168] = {.lex_state = 69, .external_lex_state = 17}, + [5169] = {.lex_state = 41, .external_lex_state = 14}, + [5170] = {.lex_state = 57, .external_lex_state = 12}, + [5171] = {.lex_state = 41, .external_lex_state = 16}, + [5172] = {.lex_state = 41, .external_lex_state = 15}, + [5173] = {.lex_state = 35, .external_lex_state = 11}, + [5174] = {.lex_state = 41, .external_lex_state = 16}, + [5175] = {.lex_state = 71, .external_lex_state = 19}, + [5176] = {.lex_state = 35, .external_lex_state = 11}, + [5177] = {.lex_state = 37, .external_lex_state = 12}, + [5178] = {.lex_state = 36, .external_lex_state = 2}, + [5179] = {.lex_state = 41, .external_lex_state = 14}, + [5180] = {.lex_state = 69, .external_lex_state = 17}, + [5181] = {.lex_state = 36, .external_lex_state = 2}, + [5182] = {.lex_state = 35, .external_lex_state = 16}, + [5183] = {.lex_state = 35, .external_lex_state = 11}, + [5184] = {.lex_state = 35, .external_lex_state = 16}, + [5185] = {.lex_state = 71, .external_lex_state = 19}, + [5186] = {.lex_state = 41, .external_lex_state = 15}, + [5187] = {.lex_state = 35, .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}, + [5189] = {.lex_state = 35, .external_lex_state = 11}, + [5190] = {.lex_state = 41, .external_lex_state = 15}, + [5191] = {.lex_state = 41, .external_lex_state = 16}, + [5192] = {.lex_state = 69, .external_lex_state = 17}, + [5193] = {.lex_state = 69, .external_lex_state = 17}, + [5194] = {.lex_state = 41, .external_lex_state = 14}, + [5195] = {.lex_state = 36, .external_lex_state = 2}, + [5196] = {.lex_state = 35, .external_lex_state = 11}, + [5197] = {.lex_state = 41, .external_lex_state = 16}, + [5198] = {.lex_state = 69, .external_lex_state = 17}, [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}, + [5200] = {.lex_state = 41, .external_lex_state = 15}, + [5201] = {.lex_state = 34, .external_lex_state = 11}, + [5202] = {.lex_state = 41, .external_lex_state = 14}, + [5203] = {.lex_state = 35, .external_lex_state = 11}, + [5204] = {.lex_state = 41, .external_lex_state = 14}, + [5205] = {.lex_state = 41, .external_lex_state = 15}, + [5206] = {.lex_state = 57, .external_lex_state = 12}, + [5207] = {.lex_state = 69, .external_lex_state = 17}, + [5208] = {.lex_state = 69, .external_lex_state = 17}, + [5209] = {.lex_state = 37, .external_lex_state = 12}, + [5210] = {.lex_state = 69, .external_lex_state = 17}, + [5211] = {.lex_state = 37, .external_lex_state = 12}, + [5212] = {.lex_state = 35, .external_lex_state = 11}, + [5213] = {.lex_state = 41, .external_lex_state = 14}, + [5214] = {.lex_state = 36, .external_lex_state = 12}, + [5215] = {.lex_state = 37, .external_lex_state = 12}, + [5216] = {.lex_state = 69, .external_lex_state = 17}, + [5217] = {.lex_state = 35, .external_lex_state = 11}, + [5218] = {.lex_state = 41, .external_lex_state = 14}, + [5219] = {.lex_state = 41, .external_lex_state = 15}, + [5220] = {.lex_state = 36, .external_lex_state = 2}, + [5221] = {.lex_state = 34, .external_lex_state = 11}, + [5222] = {.lex_state = 35, .external_lex_state = 11}, + [5223] = {.lex_state = 35, .external_lex_state = 11}, + [5224] = {.lex_state = 35, .external_lex_state = 11}, + [5225] = {.lex_state = 55, .external_lex_state = 15}, + [5226] = {.lex_state = 57, .external_lex_state = 12}, + [5227] = {.lex_state = 57, .external_lex_state = 12}, + [5228] = {.lex_state = 57, .external_lex_state = 12}, + [5229] = {.lex_state = 57, .external_lex_state = 12}, + [5230] = {.lex_state = 57, .external_lex_state = 12}, + [5231] = {.lex_state = 35, .external_lex_state = 16}, + [5232] = {.lex_state = 57, .external_lex_state = 12}, + [5233] = {.lex_state = 41, .external_lex_state = 16}, + [5234] = {.lex_state = 36, .external_lex_state = 2}, + [5235] = {.lex_state = 34, .external_lex_state = 11}, + [5236] = {.lex_state = 41, .external_lex_state = 16}, + [5237] = {.lex_state = 41, .external_lex_state = 15}, + [5238] = {.lex_state = 35, .external_lex_state = 11}, + [5239] = {.lex_state = 41, .external_lex_state = 16}, + [5240] = {.lex_state = 34, .external_lex_state = 11}, + [5241] = {.lex_state = 57, .external_lex_state = 12}, + [5242] = {.lex_state = 41, .external_lex_state = 16}, + [5243] = {.lex_state = 57, .external_lex_state = 12}, + [5244] = {.lex_state = 41, .external_lex_state = 16}, + [5245] = {.lex_state = 41, .external_lex_state = 15}, + [5246] = {.lex_state = 34, .external_lex_state = 11}, + [5247] = {.lex_state = 69, .external_lex_state = 17}, + [5248] = {.lex_state = 41, .external_lex_state = 16}, + [5249] = {.lex_state = 41, .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}, + [5251] = {.lex_state = 158, .external_lex_state = 11}, + [5252] = {.lex_state = 158, .external_lex_state = 11}, + [5253] = {.lex_state = 158, .external_lex_state = 11}, + [5254] = {.lex_state = 55, .external_lex_state = 11}, + [5255] = {.lex_state = 34, .external_lex_state = 11}, + [5256] = {.lex_state = 34, .external_lex_state = 11}, + [5257] = {.lex_state = 34, .external_lex_state = 11}, + [5258] = {.lex_state = 37, .external_lex_state = 16}, + [5259] = {.lex_state = 34, .external_lex_state = 15}, + [5260] = {.lex_state = 37, .external_lex_state = 15}, + [5261] = {.lex_state = 34, .external_lex_state = 16}, + [5262] = {.lex_state = 158, .external_lex_state = 11}, + [5263] = {.lex_state = 37, .external_lex_state = 14}, [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}, + [5265] = {.lex_state = 34, .external_lex_state = 11}, + [5266] = {.lex_state = 34, .external_lex_state = 11}, + [5267] = {.lex_state = 34, .external_lex_state = 11}, + [5268] = {.lex_state = 158, .external_lex_state = 11}, + [5269] = {.lex_state = 158, .external_lex_state = 11}, + [5270] = {.lex_state = 158, .external_lex_state = 11}, + [5271] = {.lex_state = 34, .external_lex_state = 16}, + [5272] = {.lex_state = 34, .external_lex_state = 11}, + [5273] = {.lex_state = 158, .external_lex_state = 11}, + [5274] = {.lex_state = 34, .external_lex_state = 11}, + [5275] = {.lex_state = 34, .external_lex_state = 11}, + [5276] = {.lex_state = 34, .external_lex_state = 11}, + [5277] = {.lex_state = 37, .external_lex_state = 15}, + [5278] = {.lex_state = 158, .external_lex_state = 11}, + [5279] = {.lex_state = 158, .external_lex_state = 11}, + [5280] = {.lex_state = 35, .external_lex_state = 12}, + [5281] = {.lex_state = 158, .external_lex_state = 11}, + [5282] = {.lex_state = 158, .external_lex_state = 11}, + [5283] = {.lex_state = 34, .external_lex_state = 11}, + [5284] = {.lex_state = 158, .external_lex_state = 11}, + [5285] = {.lex_state = 158, .external_lex_state = 11}, + [5286] = {.lex_state = 37, .external_lex_state = 8}, + [5287] = {.lex_state = 158, .external_lex_state = 11}, + [5288] = {.lex_state = 34, .external_lex_state = 14}, + [5289] = {.lex_state = 34, .external_lex_state = 16}, + [5290] = {.lex_state = 34, .external_lex_state = 11}, + [5291] = {.lex_state = 34, .external_lex_state = 11}, + [5292] = {.lex_state = 34, .external_lex_state = 11}, + [5293] = {.lex_state = 34, .external_lex_state = 11}, + [5294] = {.lex_state = 41, .external_lex_state = 16}, + [5295] = {.lex_state = 34, .external_lex_state = 11}, + [5296] = {.lex_state = 158, .external_lex_state = 11}, + [5297] = {.lex_state = 34, .external_lex_state = 11}, + [5298] = {.lex_state = 34, .external_lex_state = 11}, + [5299] = {.lex_state = 55, .external_lex_state = 12}, + [5300] = {.lex_state = 34, .external_lex_state = 15}, + [5301] = {.lex_state = 34, .external_lex_state = 11}, + [5302] = {.lex_state = 158, .external_lex_state = 11}, + [5303] = {.lex_state = 55, .external_lex_state = 15}, + [5304] = {.lex_state = 60, .external_lex_state = 12}, + [5305] = {.lex_state = 34, .external_lex_state = 16}, + [5306] = {.lex_state = 158, .external_lex_state = 11}, + [5307] = {.lex_state = 34, .external_lex_state = 11}, + [5308] = {.lex_state = 34, .external_lex_state = 11}, + [5309] = {.lex_state = 41, .external_lex_state = 15}, + [5310] = {.lex_state = 34, .external_lex_state = 11}, + [5311] = {.lex_state = 34, .external_lex_state = 11}, + [5312] = {.lex_state = 55, .external_lex_state = 11}, + [5313] = {.lex_state = 34, .external_lex_state = 15}, + [5314] = {.lex_state = 34, .external_lex_state = 11}, + [5315] = {.lex_state = 34, .external_lex_state = 11}, + [5316] = {.lex_state = 158, .external_lex_state = 11}, + [5317] = {.lex_state = 37, .external_lex_state = 16}, + [5318] = {.lex_state = 158, .external_lex_state = 11}, + [5319] = {.lex_state = 158, .external_lex_state = 11}, + [5320] = {.lex_state = 158, .external_lex_state = 11}, + [5321] = {.lex_state = 158, .external_lex_state = 11}, + [5322] = {.lex_state = 34, .external_lex_state = 16}, + [5323] = {.lex_state = 34, .external_lex_state = 11}, + [5324] = {.lex_state = 34, .external_lex_state = 15}, + [5325] = {.lex_state = 35, .external_lex_state = 12}, + [5326] = {.lex_state = 34, .external_lex_state = 11}, + [5327] = {.lex_state = 37, .external_lex_state = 12}, + [5328] = {.lex_state = 41, .external_lex_state = 14}, + [5329] = {.lex_state = 34, .external_lex_state = 15}, + [5330] = {.lex_state = 34, .external_lex_state = 11}, + [5331] = {.lex_state = 158, .external_lex_state = 11}, + [5332] = {.lex_state = 35, .external_lex_state = 16}, + [5333] = {.lex_state = 34, .external_lex_state = 11}, + [5334] = {.lex_state = 158, .external_lex_state = 11}, + [5335] = {.lex_state = 158, .external_lex_state = 11}, + [5336] = {.lex_state = 34, .external_lex_state = 15}, + [5337] = {.lex_state = 34, .external_lex_state = 11}, + [5338] = {.lex_state = 34, .external_lex_state = 11}, + [5339] = {.lex_state = 34, .external_lex_state = 11}, + [5340] = {.lex_state = 34, .external_lex_state = 11}, + [5341] = {.lex_state = 158, .external_lex_state = 11}, [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}, + [5343] = {.lex_state = 34, .external_lex_state = 11}, + [5344] = {.lex_state = 34, .external_lex_state = 11}, + [5345] = {.lex_state = 34, .external_lex_state = 11}, + [5346] = {.lex_state = 158, .external_lex_state = 11}, + [5347] = {.lex_state = 158, .external_lex_state = 11}, + [5348] = {.lex_state = 158, .external_lex_state = 11}, + [5349] = {.lex_state = 158, .external_lex_state = 11}, + [5350] = {.lex_state = 34, .external_lex_state = 11}, + [5351] = {.lex_state = 34, .external_lex_state = 16}, + [5352] = {.lex_state = 34, .external_lex_state = 11}, + [5353] = {.lex_state = 37, .external_lex_state = 7}, [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}, + [5355] = {.lex_state = 34, .external_lex_state = 11}, + [5356] = {.lex_state = 35, .external_lex_state = 16}, + [5357] = {.lex_state = 34, .external_lex_state = 11}, + [5358] = {.lex_state = 34, .external_lex_state = 11}, + [5359] = {.lex_state = 35, .external_lex_state = 16}, + [5360] = {.lex_state = 158, .external_lex_state = 11}, + [5361] = {.lex_state = 34, .external_lex_state = 11}, + [5362] = {.lex_state = 34, .external_lex_state = 11}, + [5363] = {.lex_state = 158, .external_lex_state = 11}, + [5364] = {.lex_state = 158, .external_lex_state = 11}, + [5365] = {.lex_state = 158, .external_lex_state = 11}, + [5366] = {.lex_state = 34, .external_lex_state = 11}, + [5367] = {.lex_state = 158, .external_lex_state = 11}, + [5368] = {.lex_state = 158, .external_lex_state = 11}, + [5369] = {.lex_state = 158, .external_lex_state = 11}, + [5370] = {.lex_state = 158, .external_lex_state = 11}, + [5371] = {.lex_state = 34, .external_lex_state = 11}, + [5372] = {.lex_state = 34, .external_lex_state = 11}, + [5373] = {.lex_state = 34, .external_lex_state = 11}, + [5374] = {.lex_state = 34, .external_lex_state = 11}, + [5375] = {.lex_state = 34, .external_lex_state = 11}, + [5376] = {.lex_state = 34, .external_lex_state = 11}, + [5377] = {.lex_state = 158, .external_lex_state = 11}, + [5378] = {.lex_state = 34, .external_lex_state = 15}, + [5379] = {.lex_state = 158, .external_lex_state = 11}, + [5380] = {.lex_state = 37, .external_lex_state = 14}, + [5381] = {.lex_state = 35, .external_lex_state = 12}, + [5382] = {.lex_state = 34, .external_lex_state = 11}, + [5383] = {.lex_state = 34, .external_lex_state = 11}, + [5384] = {.lex_state = 34, .external_lex_state = 11}, + [5385] = {.lex_state = 34, .external_lex_state = 11}, + [5386] = {.lex_state = 158, .external_lex_state = 11}, + [5387] = {.lex_state = 34, .external_lex_state = 11}, + [5388] = {.lex_state = 34, .external_lex_state = 11}, + [5389] = {.lex_state = 158, .external_lex_state = 11}, + [5390] = {.lex_state = 158, .external_lex_state = 11}, + [5391] = {.lex_state = 34, .external_lex_state = 11}, + [5392] = {.lex_state = 34, .external_lex_state = 11}, + [5393] = {.lex_state = 34, .external_lex_state = 11}, + [5394] = {.lex_state = 34, .external_lex_state = 11}, + [5395] = {.lex_state = 158, .external_lex_state = 11}, + [5396] = {.lex_state = 37, .external_lex_state = 14}, + [5397] = {.lex_state = 158, .external_lex_state = 11}, + [5398] = {.lex_state = 158, .external_lex_state = 11}, + [5399] = {.lex_state = 158, .external_lex_state = 11}, + [5400] = {.lex_state = 158, .external_lex_state = 11}, + [5401] = {.lex_state = 158, .external_lex_state = 11}, + [5402] = {.lex_state = 34, .external_lex_state = 11}, + [5403] = {.lex_state = 53, .external_lex_state = 12}, + [5404] = {.lex_state = 34, .external_lex_state = 15}, + [5405] = {.lex_state = 158, .external_lex_state = 11}, + [5406] = {.lex_state = 37, .external_lex_state = 15}, + [5407] = {.lex_state = 34, .external_lex_state = 11}, + [5408] = {.lex_state = 158, .external_lex_state = 11}, + [5409] = {.lex_state = 60, .external_lex_state = 12}, + [5410] = {.lex_state = 34, .external_lex_state = 11}, + [5411] = {.lex_state = 37, .external_lex_state = 12}, + [5412] = {.lex_state = 34, .external_lex_state = 11}, + [5413] = {.lex_state = 34, .external_lex_state = 11}, + [5414] = {.lex_state = 34, .external_lex_state = 16}, + [5415] = {.lex_state = 37, .external_lex_state = 12}, + [5416] = {.lex_state = 34, .external_lex_state = 15}, + [5417] = {.lex_state = 34, .external_lex_state = 11}, + [5418] = {.lex_state = 34, .external_lex_state = 15}, + [5419] = {.lex_state = 34, .external_lex_state = 15}, + [5420] = {.lex_state = 34, .external_lex_state = 11}, + [5421] = {.lex_state = 158, .external_lex_state = 11}, + [5422] = {.lex_state = 37, .external_lex_state = 12}, + [5423] = {.lex_state = 37, .external_lex_state = 6}, + [5424] = {.lex_state = 34, .external_lex_state = 15}, + [5425] = {.lex_state = 34, .external_lex_state = 11}, + [5426] = {.lex_state = 63, .external_lex_state = 12}, + [5427] = {.lex_state = 158, .external_lex_state = 11}, + [5428] = {.lex_state = 35, .external_lex_state = 16}, + [5429] = {.lex_state = 158, .external_lex_state = 11}, + [5430] = {.lex_state = 34, .external_lex_state = 11}, + [5431] = {.lex_state = 34, .external_lex_state = 11}, + [5432] = {.lex_state = 34, .external_lex_state = 11}, + [5433] = {.lex_state = 158, .external_lex_state = 11}, + [5434] = {.lex_state = 158, .external_lex_state = 11}, + [5435] = {.lex_state = 158, .external_lex_state = 11}, + [5436] = {.lex_state = 158, .external_lex_state = 11}, + [5437] = {.lex_state = 158, .external_lex_state = 11}, + [5438] = {.lex_state = 34, .external_lex_state = 11}, + [5439] = {.lex_state = 41, .external_lex_state = 15}, + [5440] = {.lex_state = 34, .external_lex_state = 11}, [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}, + [5442] = {.lex_state = 41, .external_lex_state = 14}, + [5443] = {.lex_state = 34, .external_lex_state = 16}, + [5444] = {.lex_state = 37, .external_lex_state = 12}, + [5445] = {.lex_state = 158, .external_lex_state = 11}, + [5446] = {.lex_state = 34, .external_lex_state = 15}, + [5447] = {.lex_state = 34, .external_lex_state = 15}, + [5448] = {.lex_state = 34, .external_lex_state = 14}, + [5449] = {.lex_state = 0, .external_lex_state = 18}, + [5450] = {.lex_state = 34, .external_lex_state = 11}, + [5451] = {.lex_state = 37, .external_lex_state = 16}, + [5452] = {.lex_state = 34, .external_lex_state = 15}, + [5453] = {.lex_state = 158, .external_lex_state = 11}, + [5454] = {.lex_state = 35, .external_lex_state = 12}, + [5455] = {.lex_state = 37, .external_lex_state = 12}, + [5456] = {.lex_state = 41, .external_lex_state = 15}, + [5457] = {.lex_state = 41, .external_lex_state = 16}, [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}, + [5459] = {.lex_state = 36, .external_lex_state = 12}, + [5460] = {.lex_state = 41, .external_lex_state = 14}, + [5461] = {.lex_state = 34, .external_lex_state = 15}, + [5462] = {.lex_state = 47, .external_lex_state = 11}, + [5463] = {.lex_state = 37, .external_lex_state = 16}, + [5464] = {.lex_state = 41, .external_lex_state = 15}, + [5465] = {.lex_state = 55, .external_lex_state = 16}, + [5466] = {.lex_state = 34, .external_lex_state = 15}, + [5467] = {.lex_state = 34, .external_lex_state = 16}, + [5468] = {.lex_state = 37, .external_lex_state = 14}, + [5469] = {.lex_state = 34, .external_lex_state = 16}, + [5470] = {.lex_state = 37, .external_lex_state = 12}, + [5471] = {.lex_state = 34, .external_lex_state = 11}, + [5472] = {.lex_state = 158, .external_lex_state = 14}, + [5473] = {.lex_state = 36, .external_lex_state = 12}, + [5474] = {.lex_state = 37, .external_lex_state = 16}, + [5475] = {.lex_state = 36, .external_lex_state = 12}, + [5476] = {.lex_state = 47, .external_lex_state = 11}, + [5477] = {.lex_state = 34, .external_lex_state = 15}, + [5478] = {.lex_state = 37, .external_lex_state = 14}, + [5479] = {.lex_state = 158, .external_lex_state = 14}, + [5480] = {.lex_state = 35, .external_lex_state = 12}, + [5481] = {.lex_state = 158, .external_lex_state = 11}, + [5482] = {.lex_state = 34, .external_lex_state = 15}, + [5483] = {.lex_state = 158, .external_lex_state = 11}, + [5484] = {.lex_state = 0, .external_lex_state = 18}, + [5485] = {.lex_state = 34, .external_lex_state = 14}, + [5486] = {.lex_state = 0, .external_lex_state = 18}, + [5487] = {.lex_state = 35, .external_lex_state = 12}, + [5488] = {.lex_state = 35, .external_lex_state = 12}, + [5489] = {.lex_state = 41, .external_lex_state = 14}, + [5490] = {.lex_state = 0, .external_lex_state = 18}, + [5491] = {.lex_state = 34, .external_lex_state = 16}, + [5492] = {.lex_state = 41, .external_lex_state = 14}, + [5493] = {.lex_state = 37, .external_lex_state = 16}, + [5494] = {.lex_state = 37, .external_lex_state = 15}, + [5495] = {.lex_state = 35, .external_lex_state = 12}, + [5496] = {.lex_state = 37, .external_lex_state = 12}, + [5497] = {.lex_state = 158, .external_lex_state = 11}, + [5498] = {.lex_state = 69, .external_lex_state = 17}, + [5499] = {.lex_state = 158, .external_lex_state = 11}, + [5500] = {.lex_state = 34, .external_lex_state = 15}, + [5501] = {.lex_state = 47, .external_lex_state = 11}, + [5502] = {.lex_state = 158, .external_lex_state = 14}, + [5503] = {.lex_state = 47, .external_lex_state = 11}, + [5504] = {.lex_state = 69, .external_lex_state = 17}, + [5505] = {.lex_state = 0, .external_lex_state = 18}, + [5506] = {.lex_state = 36, .external_lex_state = 12}, + [5507] = {.lex_state = 34, .external_lex_state = 16}, + [5508] = {.lex_state = 0, .external_lex_state = 18}, + [5509] = {.lex_state = 36, .external_lex_state = 12}, + [5510] = {.lex_state = 47, .external_lex_state = 11}, + [5511] = {.lex_state = 37, .external_lex_state = 12}, + [5512] = {.lex_state = 47, .external_lex_state = 11}, + [5513] = {.lex_state = 34, .external_lex_state = 11}, + [5514] = {.lex_state = 37, .external_lex_state = 15}, + [5515] = {.lex_state = 158, .external_lex_state = 11}, + [5516] = {.lex_state = 34, .external_lex_state = 15}, + [5517] = {.lex_state = 34, .external_lex_state = 16}, + [5518] = {.lex_state = 34, .external_lex_state = 16}, + [5519] = {.lex_state = 34, .external_lex_state = 11}, + [5520] = {.lex_state = 34, .external_lex_state = 15}, + [5521] = {.lex_state = 36, .external_lex_state = 12}, + [5522] = {.lex_state = 37, .external_lex_state = 14}, + [5523] = {.lex_state = 41, .external_lex_state = 14}, + [5524] = {.lex_state = 41, .external_lex_state = 15}, + [5525] = {.lex_state = 158, .external_lex_state = 11}, + [5526] = {.lex_state = 37, .external_lex_state = 15}, + [5527] = {.lex_state = 158, .external_lex_state = 11}, + [5528] = {.lex_state = 41, .external_lex_state = 15}, + [5529] = {.lex_state = 36, .external_lex_state = 12}, + [5530] = {.lex_state = 34, .external_lex_state = 15}, + [5531] = {.lex_state = 47, .external_lex_state = 11}, + [5532] = {.lex_state = 34, .external_lex_state = 11}, + [5533] = {.lex_state = 47, .external_lex_state = 11}, + [5534] = {.lex_state = 158, .external_lex_state = 11}, + [5535] = {.lex_state = 35, .external_lex_state = 12}, + [5536] = {.lex_state = 69, .external_lex_state = 17}, + [5537] = {.lex_state = 35, .external_lex_state = 12}, + [5538] = {.lex_state = 34, .external_lex_state = 15}, + [5539] = {.lex_state = 34, .external_lex_state = 15}, + [5540] = {.lex_state = 34, .external_lex_state = 14}, + [5541] = {.lex_state = 34, .external_lex_state = 11}, + [5542] = {.lex_state = 34, .external_lex_state = 14}, + [5543] = {.lex_state = 34, .external_lex_state = 14}, + [5544] = {.lex_state = 34, .external_lex_state = 14}, + [5545] = {.lex_state = 34, .external_lex_state = 14}, + [5546] = {.lex_state = 0, .external_lex_state = 18}, + [5547] = {.lex_state = 34, .external_lex_state = 14}, + [5548] = {.lex_state = 47, .external_lex_state = 11}, + [5549] = {.lex_state = 37, .external_lex_state = 16}, + [5550] = {.lex_state = 47, .external_lex_state = 11}, + [5551] = {.lex_state = 36, .external_lex_state = 12}, [5552] = {.lex_state = 34, .external_lex_state = 14}, - [5553] = {.lex_state = 37, .external_lex_state = 14}, + [5553] = {.lex_state = 41, .external_lex_state = 16}, [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}, + [5555] = {.lex_state = 34, .external_lex_state = 15}, + [5556] = {.lex_state = 35, .external_lex_state = 12}, + [5557] = {.lex_state = 41, .external_lex_state = 16}, + [5558] = {.lex_state = 34, .external_lex_state = 16}, + [5559] = {.lex_state = 34, .external_lex_state = 11}, + [5560] = {.lex_state = 34, .external_lex_state = 16}, + [5561] = {.lex_state = 69, .external_lex_state = 17}, + [5562] = {.lex_state = 34, .external_lex_state = 15}, + [5563] = {.lex_state = 158, .external_lex_state = 11}, + [5564] = {.lex_state = 0, .external_lex_state = 18}, + [5565] = {.lex_state = 36, .external_lex_state = 12}, + [5566] = {.lex_state = 41, .external_lex_state = 16}, + [5567] = {.lex_state = 41, .external_lex_state = 15}, + [5568] = {.lex_state = 41, .external_lex_state = 14}, + [5569] = {.lex_state = 34, .external_lex_state = 15}, + [5570] = {.lex_state = 35, .external_lex_state = 12}, + [5571] = {.lex_state = 36, .external_lex_state = 12}, + [5572] = {.lex_state = 41, .external_lex_state = 14}, + [5573] = {.lex_state = 41, .external_lex_state = 16}, + [5574] = {.lex_state = 158, .external_lex_state = 11}, + [5575] = {.lex_state = 158, .external_lex_state = 11}, + [5576] = {.lex_state = 41, .external_lex_state = 16}, + [5577] = {.lex_state = 34, .external_lex_state = 14}, + [5578] = {.lex_state = 158, .external_lex_state = 11}, + [5579] = {.lex_state = 158, .external_lex_state = 14}, + [5580] = {.lex_state = 34, .external_lex_state = 15}, + [5581] = {.lex_state = 34, .external_lex_state = 14}, + [5582] = {.lex_state = 158, .external_lex_state = 11}, + [5583] = {.lex_state = 158, .external_lex_state = 11}, + [5584] = {.lex_state = 41, .external_lex_state = 15}, + [5585] = {.lex_state = 35, .external_lex_state = 12}, + [5586] = {.lex_state = 158, .external_lex_state = 11}, + [5587] = {.lex_state = 34, .external_lex_state = 11}, + [5588] = {.lex_state = 34, .external_lex_state = 15}, + [5589] = {.lex_state = 41, .external_lex_state = 16}, + [5590] = {.lex_state = 34, .external_lex_state = 15}, + [5591] = {.lex_state = 34, .external_lex_state = 15}, + [5592] = {.lex_state = 55, .external_lex_state = 12}, + [5593] = {.lex_state = 37, .external_lex_state = 12}, + [5594] = {.lex_state = 35, .external_lex_state = 11}, + [5595] = {.lex_state = 37, .external_lex_state = 12}, + [5596] = {.lex_state = 35, .external_lex_state = 12}, + [5597] = {.lex_state = 35, .external_lex_state = 12}, + [5598] = {.lex_state = 41, .external_lex_state = 14}, + [5599] = {.lex_state = 41, .external_lex_state = 14}, + [5600] = {.lex_state = 37, .external_lex_state = 16}, + [5601] = {.lex_state = 37, .external_lex_state = 16}, + [5602] = {.lex_state = 37, .external_lex_state = 16}, + [5603] = {.lex_state = 36, .external_lex_state = 20}, + [5604] = {.lex_state = 36, .external_lex_state = 20}, + [5605] = {.lex_state = 37, .external_lex_state = 15}, [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}, + [5607] = {.lex_state = 41, .external_lex_state = 14}, + [5608] = {.lex_state = 35, .external_lex_state = 11}, + [5609] = {.lex_state = 158, .external_lex_state = 5}, + [5610] = {.lex_state = 158, .external_lex_state = 16}, + [5611] = {.lex_state = 3, .external_lex_state = 14}, + [5612] = {.lex_state = 35, .external_lex_state = 11}, + [5613] = {.lex_state = 36, .external_lex_state = 11}, + [5614] = {.lex_state = 36, .external_lex_state = 11}, + [5615] = {.lex_state = 36, .external_lex_state = 20}, + [5616] = {.lex_state = 36, .external_lex_state = 20}, + [5617] = {.lex_state = 35, .external_lex_state = 11}, + [5618] = {.lex_state = 36, .external_lex_state = 11}, + [5619] = {.lex_state = 34, .external_lex_state = 15}, + [5620] = {.lex_state = 34, .external_lex_state = 12}, + [5621] = {.lex_state = 55, .external_lex_state = 15}, + [5622] = {.lex_state = 56, .external_lex_state = 12}, + [5623] = {.lex_state = 158, .external_lex_state = 16}, + [5624] = {.lex_state = 36, .external_lex_state = 20}, + [5625] = {.lex_state = 36, .external_lex_state = 11}, + [5626] = {.lex_state = 35, .external_lex_state = 11}, + [5627] = {.lex_state = 3, .external_lex_state = 14}, + [5628] = {.lex_state = 35, .external_lex_state = 11}, + [5629] = {.lex_state = 36, .external_lex_state = 20}, + [5630] = {.lex_state = 36, .external_lex_state = 11}, + [5631] = {.lex_state = 35, .external_lex_state = 11}, + [5632] = {.lex_state = 158, .external_lex_state = 14}, + [5633] = {.lex_state = 47, .external_lex_state = 12}, + [5634] = {.lex_state = 35, .external_lex_state = 11}, + [5635] = {.lex_state = 158, .external_lex_state = 14}, + [5636] = {.lex_state = 55, .external_lex_state = 15}, + [5637] = {.lex_state = 36, .external_lex_state = 20}, + [5638] = {.lex_state = 158, .external_lex_state = 14}, + [5639] = {.lex_state = 41, .external_lex_state = 15}, + [5640] = {.lex_state = 55, .external_lex_state = 15}, + [5641] = {.lex_state = 41, .external_lex_state = 15}, + [5642] = {.lex_state = 53, .external_lex_state = 12}, + [5643] = {.lex_state = 37, .external_lex_state = 12}, + [5644] = {.lex_state = 37, .external_lex_state = 12}, + [5645] = {.lex_state = 158, .external_lex_state = 14}, + [5646] = {.lex_state = 55, .external_lex_state = 12}, + [5647] = {.lex_state = 36, .external_lex_state = 20}, + [5648] = {.lex_state = 37, .external_lex_state = 12}, + [5649] = {.lex_state = 37, .external_lex_state = 16}, + [5650] = {.lex_state = 37, .external_lex_state = 12}, + [5651] = {.lex_state = 37, .external_lex_state = 12}, + [5652] = {.lex_state = 37, .external_lex_state = 12}, + [5653] = {.lex_state = 55, .external_lex_state = 15}, + [5654] = {.lex_state = 55, .external_lex_state = 12}, + [5655] = {.lex_state = 158, .external_lex_state = 14}, + [5656] = {.lex_state = 158, .external_lex_state = 14}, + [5657] = {.lex_state = 34, .external_lex_state = 11}, + [5658] = {.lex_state = 55, .external_lex_state = 15}, + [5659] = {.lex_state = 158, .external_lex_state = 14}, + [5660] = {.lex_state = 36, .external_lex_state = 11}, + [5661] = {.lex_state = 55, .external_lex_state = 15}, + [5662] = {.lex_state = 34, .external_lex_state = 12}, + [5663] = {.lex_state = 36, .external_lex_state = 12}, + [5664] = {.lex_state = 34, .external_lex_state = 12}, + [5665] = {.lex_state = 158, .external_lex_state = 14}, + [5666] = {.lex_state = 37, .external_lex_state = 12}, + [5667] = {.lex_state = 34, .external_lex_state = 12}, + [5668] = {.lex_state = 37, .external_lex_state = 12}, + [5669] = {.lex_state = 37, .external_lex_state = 12}, + [5670] = {.lex_state = 37, .external_lex_state = 12}, + [5671] = {.lex_state = 36, .external_lex_state = 20}, + [5672] = {.lex_state = 34, .external_lex_state = 15}, + [5673] = {.lex_state = 36, .external_lex_state = 20}, + [5674] = {.lex_state = 34, .external_lex_state = 12}, + [5675] = {.lex_state = 158, .external_lex_state = 14}, + [5676] = {.lex_state = 34, .external_lex_state = 12}, + [5677] = {.lex_state = 158, .external_lex_state = 16}, + [5678] = {.lex_state = 35, .external_lex_state = 12}, + [5679] = {.lex_state = 36, .external_lex_state = 20}, + [5680] = {.lex_state = 34, .external_lex_state = 15}, + [5681] = {.lex_state = 53, .external_lex_state = 12}, + [5682] = {.lex_state = 34, .external_lex_state = 15}, + [5683] = {.lex_state = 34, .external_lex_state = 12}, + [5684] = {.lex_state = 35, .external_lex_state = 12}, + [5685] = {.lex_state = 158, .external_lex_state = 16}, + [5686] = {.lex_state = 37, .external_lex_state = 16}, + [5687] = {.lex_state = 37, .external_lex_state = 16}, + [5688] = {.lex_state = 56, .external_lex_state = 12}, + [5689] = {.lex_state = 47, .external_lex_state = 12}, + [5690] = {.lex_state = 35, .external_lex_state = 12}, + [5691] = {.lex_state = 37, .external_lex_state = 16}, + [5692] = {.lex_state = 34, .external_lex_state = 12}, + [5693] = {.lex_state = 34, .external_lex_state = 15}, + [5694] = {.lex_state = 34, .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}, + [5696] = {.lex_state = 35, .external_lex_state = 12}, + [5697] = {.lex_state = 47, .external_lex_state = 12}, + [5698] = {.lex_state = 36, .external_lex_state = 20}, + [5699] = {.lex_state = 34, .external_lex_state = 12}, + [5700] = {.lex_state = 34, .external_lex_state = 12}, + [5701] = {.lex_state = 34, .external_lex_state = 15}, + [5702] = {.lex_state = 36, .external_lex_state = 20}, + [5703] = {.lex_state = 34, .external_lex_state = 12}, + [5704] = {.lex_state = 36, .external_lex_state = 20}, + [5705] = {.lex_state = 36, .external_lex_state = 20}, + [5706] = {.lex_state = 36, .external_lex_state = 20}, + [5707] = {.lex_state = 34, .external_lex_state = 12}, + [5708] = {.lex_state = 37, .external_lex_state = 14}, + [5709] = {.lex_state = 37, .external_lex_state = 14}, + [5710] = {.lex_state = 34, .external_lex_state = 12}, + [5711] = {.lex_state = 37, .external_lex_state = 16}, + [5712] = {.lex_state = 37, .external_lex_state = 16}, + [5713] = {.lex_state = 37, .external_lex_state = 16}, + [5714] = {.lex_state = 36, .external_lex_state = 20}, + [5715] = {.lex_state = 34, .external_lex_state = 12}, + [5716] = {.lex_state = 35, .external_lex_state = 12}, + [5717] = {.lex_state = 36, .external_lex_state = 20}, + [5718] = {.lex_state = 34, .external_lex_state = 12}, + [5719] = {.lex_state = 35, .external_lex_state = 12}, + [5720] = {.lex_state = 34, .external_lex_state = 11}, + [5721] = {.lex_state = 41, .external_lex_state = 16}, + [5722] = {.lex_state = 34, .external_lex_state = 12}, + [5723] = {.lex_state = 36, .external_lex_state = 20}, + [5724] = {.lex_state = 34, .external_lex_state = 12}, + [5725] = {.lex_state = 34, .external_lex_state = 12}, + [5726] = {.lex_state = 37, .external_lex_state = 14}, + [5727] = {.lex_state = 34, .external_lex_state = 12}, + [5728] = {.lex_state = 37, .external_lex_state = 14}, + [5729] = {.lex_state = 34, .external_lex_state = 12}, + [5730] = {.lex_state = 34, .external_lex_state = 12}, + [5731] = {.lex_state = 37, .external_lex_state = 16}, + [5732] = {.lex_state = 34, .external_lex_state = 12}, + [5733] = {.lex_state = 36, .external_lex_state = 20}, + [5734] = {.lex_state = 37, .external_lex_state = 12}, + [5735] = {.lex_state = 34, .external_lex_state = 12}, + [5736] = {.lex_state = 34, .external_lex_state = 12}, + [5737] = {.lex_state = 34, .external_lex_state = 12}, + [5738] = {.lex_state = 37, .external_lex_state = 15}, + [5739] = {.lex_state = 34, .external_lex_state = 12}, + [5740] = {.lex_state = 36, .external_lex_state = 20}, + [5741] = {.lex_state = 34, .external_lex_state = 12}, + [5742] = {.lex_state = 34, .external_lex_state = 12}, + [5743] = {.lex_state = 36, .external_lex_state = 20}, + [5744] = {.lex_state = 37, .external_lex_state = 11}, + [5745] = {.lex_state = 34, .external_lex_state = 12}, + [5746] = {.lex_state = 34, .external_lex_state = 12}, + [5747] = {.lex_state = 34, .external_lex_state = 12}, + [5748] = {.lex_state = 36, .external_lex_state = 20}, + [5749] = {.lex_state = 34, .external_lex_state = 12}, + [5750] = {.lex_state = 34, .external_lex_state = 12}, + [5751] = {.lex_state = 37, .external_lex_state = 14}, + [5752] = {.lex_state = 37, .external_lex_state = 14}, + [5753] = {.lex_state = 37, .external_lex_state = 14}, + [5754] = {.lex_state = 35, .external_lex_state = 12}, + [5755] = {.lex_state = 35, .external_lex_state = 12}, + [5756] = {.lex_state = 37, .external_lex_state = 15}, + [5757] = {.lex_state = 55, .external_lex_state = 12}, + [5758] = {.lex_state = 35, .external_lex_state = 12}, + [5759] = {.lex_state = 36, .external_lex_state = 20}, + [5760] = {.lex_state = 37, .external_lex_state = 15}, + [5761] = {.lex_state = 34, .external_lex_state = 12}, + [5762] = {.lex_state = 56, .external_lex_state = 12}, + [5763] = {.lex_state = 35, .external_lex_state = 11}, + [5764] = {.lex_state = 36, .external_lex_state = 11}, + [5765] = {.lex_state = 35, .external_lex_state = 12}, + [5766] = {.lex_state = 36, .external_lex_state = 11}, + [5767] = {.lex_state = 3, .external_lex_state = 14}, + [5768] = {.lex_state = 35, .external_lex_state = 12}, + [5769] = {.lex_state = 56, .external_lex_state = 12}, + [5770] = {.lex_state = 35, .external_lex_state = 12}, + [5771] = {.lex_state = 35, .external_lex_state = 12}, + [5772] = {.lex_state = 37, .external_lex_state = 16}, + [5773] = {.lex_state = 35, .external_lex_state = 12}, + [5774] = {.lex_state = 34, .external_lex_state = 11}, + [5775] = {.lex_state = 36, .external_lex_state = 20}, + [5776] = {.lex_state = 37, .external_lex_state = 16}, + [5777] = {.lex_state = 35, .external_lex_state = 11}, + [5778] = {.lex_state = 158, .external_lex_state = 14}, + [5779] = {.lex_state = 36, .external_lex_state = 11}, + [5780] = {.lex_state = 36, .external_lex_state = 20}, + [5781] = {.lex_state = 34, .external_lex_state = 12}, + [5782] = {.lex_state = 34, .external_lex_state = 15}, + [5783] = {.lex_state = 34, .external_lex_state = 12}, + [5784] = {.lex_state = 34, .external_lex_state = 12}, + [5785] = {.lex_state = 34, .external_lex_state = 11}, + [5786] = {.lex_state = 37, .external_lex_state = 16}, + [5787] = {.lex_state = 36, .external_lex_state = 20}, + [5788] = {.lex_state = 56, .external_lex_state = 12}, + [5789] = {.lex_state = 56, .external_lex_state = 12}, + [5790] = {.lex_state = 55, .external_lex_state = 12}, + [5791] = {.lex_state = 158, .external_lex_state = 16}, + [5792] = {.lex_state = 36, .external_lex_state = 20}, + [5793] = {.lex_state = 36, .external_lex_state = 20}, + [5794] = {.lex_state = 56, .external_lex_state = 12}, + [5795] = {.lex_state = 37, .external_lex_state = 12}, + [5796] = {.lex_state = 35, .external_lex_state = 11}, + [5797] = {.lex_state = 56, .external_lex_state = 12}, + [5798] = {.lex_state = 37, .external_lex_state = 12}, + [5799] = {.lex_state = 36, .external_lex_state = 20}, + [5800] = {.lex_state = 35, .external_lex_state = 11}, + [5801] = {.lex_state = 55, .external_lex_state = 12}, + [5802] = {.lex_state = 36, .external_lex_state = 20}, + [5803] = {.lex_state = 37, .external_lex_state = 12}, + [5804] = {.lex_state = 36, .external_lex_state = 11}, + [5805] = {.lex_state = 34, .external_lex_state = 15}, + [5806] = {.lex_state = 34, .external_lex_state = 12}, + [5807] = {.lex_state = 35, .external_lex_state = 11}, + [5808] = {.lex_state = 36, .external_lex_state = 20}, + [5809] = {.lex_state = 36, .external_lex_state = 20}, + [5810] = {.lex_state = 34, .external_lex_state = 11}, + [5811] = {.lex_state = 35, .external_lex_state = 11}, + [5812] = {.lex_state = 41, .external_lex_state = 15}, + [5813] = {.lex_state = 37, .external_lex_state = 12}, + [5814] = {.lex_state = 37, .external_lex_state = 12}, + [5815] = {.lex_state = 37, .external_lex_state = 12}, + [5816] = {.lex_state = 37, .external_lex_state = 12}, + [5817] = {.lex_state = 37, .external_lex_state = 12}, + [5818] = {.lex_state = 37, .external_lex_state = 12}, + [5819] = {.lex_state = 37, .external_lex_state = 12}, + [5820] = {.lex_state = 37, .external_lex_state = 12}, + [5821] = {.lex_state = 35, .external_lex_state = 11}, + [5822] = {.lex_state = 36, .external_lex_state = 11}, + [5823] = {.lex_state = 35, .external_lex_state = 11}, + [5824] = {.lex_state = 158, .external_lex_state = 16}, + [5825] = {.lex_state = 35, .external_lex_state = 12}, + [5826] = {.lex_state = 34, .external_lex_state = 12}, + [5827] = {.lex_state = 34, .external_lex_state = 12}, + [5828] = {.lex_state = 37, .external_lex_state = 16}, + [5829] = {.lex_state = 37, .external_lex_state = 16}, + [5830] = {.lex_state = 158, .external_lex_state = 14}, + [5831] = {.lex_state = 34, .external_lex_state = 11}, + [5832] = {.lex_state = 36, .external_lex_state = 20}, + [5833] = {.lex_state = 36, .external_lex_state = 20}, + [5834] = {.lex_state = 36, .external_lex_state = 20}, + [5835] = {.lex_state = 41, .external_lex_state = 16}, + [5836] = {.lex_state = 37, .external_lex_state = 11}, + [5837] = {.lex_state = 35, .external_lex_state = 12}, + [5838] = {.lex_state = 41, .external_lex_state = 16}, + [5839] = {.lex_state = 37, .external_lex_state = 15}, + [5840] = {.lex_state = 41, .external_lex_state = 15}, + [5841] = {.lex_state = 34, .external_lex_state = 15}, + [5842] = {.lex_state = 41, .external_lex_state = 14}, + [5843] = {.lex_state = 35, .external_lex_state = 12}, + [5844] = {.lex_state = 37, .external_lex_state = 15}, + [5845] = {.lex_state = 35, .external_lex_state = 12}, + [5846] = {.lex_state = 36, .external_lex_state = 21}, + [5847] = {.lex_state = 35, .external_lex_state = 12}, + [5848] = {.lex_state = 37, .external_lex_state = 16}, + [5849] = {.lex_state = 36, .external_lex_state = 13}, + [5850] = {.lex_state = 158, .external_lex_state = 11}, + [5851] = {.lex_state = 37, .external_lex_state = 15}, + [5852] = {.lex_state = 37, .external_lex_state = 16}, + [5853] = {.lex_state = 53, .external_lex_state = 12}, + [5854] = {.lex_state = 37, .external_lex_state = 15}, + [5855] = {.lex_state = 37, .external_lex_state = 15}, + [5856] = {.lex_state = 37, .external_lex_state = 15}, + [5857] = {.lex_state = 37, .external_lex_state = 16}, + [5858] = {.lex_state = 158, .external_lex_state = 5}, + [5859] = {.lex_state = 37, .external_lex_state = 15}, + [5860] = {.lex_state = 37, .external_lex_state = 16}, + [5861] = {.lex_state = 37, .external_lex_state = 15}, + [5862] = {.lex_state = 37, .external_lex_state = 15}, + [5863] = {.lex_state = 47, .external_lex_state = 12}, + [5864] = {.lex_state = 47, .external_lex_state = 12}, + [5865] = {.lex_state = 37, .external_lex_state = 16}, + [5866] = {.lex_state = 41, .external_lex_state = 16}, + [5867] = {.lex_state = 158, .external_lex_state = 11}, + [5868] = {.lex_state = 158, .external_lex_state = 11}, + [5869] = {.lex_state = 47, .external_lex_state = 12}, + [5870] = {.lex_state = 37, .external_lex_state = 16}, + [5871] = {.lex_state = 37, .external_lex_state = 15}, + [5872] = {.lex_state = 41, .external_lex_state = 15}, + [5873] = {.lex_state = 37, .external_lex_state = 14}, + [5874] = {.lex_state = 37, .external_lex_state = 14}, + [5875] = {.lex_state = 37, .external_lex_state = 16}, + [5876] = {.lex_state = 37, .external_lex_state = 14}, + [5877] = {.lex_state = 37, .external_lex_state = 14}, + [5878] = {.lex_state = 37, .external_lex_state = 14}, + [5879] = {.lex_state = 41, .external_lex_state = 16}, + [5880] = {.lex_state = 34, .external_lex_state = 15}, + [5881] = {.lex_state = 37, .external_lex_state = 14}, + [5882] = {.lex_state = 36, .external_lex_state = 2}, + [5883] = {.lex_state = 158, .external_lex_state = 15}, + [5884] = {.lex_state = 41, .external_lex_state = 14}, + [5885] = {.lex_state = 34, .external_lex_state = 16}, + [5886] = {.lex_state = 36, .external_lex_state = 12}, + [5887] = {.lex_state = 34, .external_lex_state = 11}, + [5888] = {.lex_state = 158, .external_lex_state = 16}, + [5889] = {.lex_state = 158, .external_lex_state = 15}, + [5890] = {.lex_state = 37, .external_lex_state = 15}, + [5891] = {.lex_state = 36, .external_lex_state = 21}, + [5892] = {.lex_state = 34, .external_lex_state = 15}, + [5893] = {.lex_state = 36, .external_lex_state = 21}, + [5894] = {.lex_state = 36, .external_lex_state = 13}, + [5895] = {.lex_state = 158, .external_lex_state = 16}, + [5896] = {.lex_state = 158, .external_lex_state = 5}, + [5897] = {.lex_state = 41, .external_lex_state = 15}, + [5898] = {.lex_state = 158, .external_lex_state = 5}, + [5899] = {.lex_state = 36, .external_lex_state = 21}, + [5900] = {.lex_state = 36, .external_lex_state = 12}, + [5901] = {.lex_state = 41, .external_lex_state = 16}, + [5902] = {.lex_state = 158, .external_lex_state = 11}, + [5903] = {.lex_state = 158, .external_lex_state = 11}, + [5904] = {.lex_state = 37, .external_lex_state = 15}, + [5905] = {.lex_state = 37, .external_lex_state = 14}, + [5906] = {.lex_state = 37, .external_lex_state = 14}, + [5907] = {.lex_state = 37, .external_lex_state = 14}, + [5908] = {.lex_state = 37, .external_lex_state = 14}, + [5909] = {.lex_state = 37, .external_lex_state = 14}, + [5910] = {.lex_state = 158, .external_lex_state = 16}, + [5911] = {.lex_state = 37, .external_lex_state = 14}, + [5912] = {.lex_state = 37, .external_lex_state = 14}, + [5913] = {.lex_state = 37, .external_lex_state = 14}, + [5914] = {.lex_state = 36, .external_lex_state = 15}, + [5915] = {.lex_state = 37, .external_lex_state = 16}, + [5916] = {.lex_state = 37, .external_lex_state = 16}, + [5917] = {.lex_state = 158, .external_lex_state = 5}, + [5918] = {.lex_state = 36, .external_lex_state = 12}, + [5919] = {.lex_state = 36, .external_lex_state = 21}, + [5920] = {.lex_state = 36, .external_lex_state = 12}, + [5921] = {.lex_state = 37, .external_lex_state = 15}, + [5922] = {.lex_state = 158, .external_lex_state = 11}, + [5923] = {.lex_state = 37, .external_lex_state = 16}, + [5924] = {.lex_state = 37, .external_lex_state = 15}, + [5925] = {.lex_state = 37, .external_lex_state = 15}, + [5926] = {.lex_state = 37, .external_lex_state = 15}, + [5927] = {.lex_state = 37, .external_lex_state = 15}, + [5928] = {.lex_state = 47, .external_lex_state = 12}, + [5929] = {.lex_state = 34, .external_lex_state = 15}, + [5930] = {.lex_state = 34, .external_lex_state = 16}, + [5931] = {.lex_state = 34, .external_lex_state = 15}, + [5932] = {.lex_state = 37, .external_lex_state = 14}, + [5933] = {.lex_state = 37, .external_lex_state = 14}, + [5934] = {.lex_state = 37, .external_lex_state = 14}, + [5935] = {.lex_state = 37, .external_lex_state = 14}, + [5936] = {.lex_state = 37, .external_lex_state = 14}, + [5937] = {.lex_state = 37, .external_lex_state = 16}, + [5938] = {.lex_state = 41, .external_lex_state = 14}, + [5939] = {.lex_state = 37, .external_lex_state = 15}, + [5940] = {.lex_state = 158, .external_lex_state = 12}, + [5941] = {.lex_state = 37, .external_lex_state = 16}, + [5942] = {.lex_state = 158, .external_lex_state = 15}, + [5943] = {.lex_state = 36, .external_lex_state = 21}, + [5944] = {.lex_state = 36, .external_lex_state = 21}, + [5945] = {.lex_state = 37, .external_lex_state = 16}, + [5946] = {.lex_state = 35, .external_lex_state = 12}, + [5947] = {.lex_state = 158, .external_lex_state = 11}, + [5948] = {.lex_state = 158, .external_lex_state = 5}, + [5949] = {.lex_state = 36, .external_lex_state = 21}, + [5950] = {.lex_state = 37, .external_lex_state = 14}, + [5951] = {.lex_state = 37, .external_lex_state = 16}, + [5952] = {.lex_state = 37, .external_lex_state = 16}, + [5953] = {.lex_state = 158, .external_lex_state = 5}, + [5954] = {.lex_state = 37, .external_lex_state = 16}, + [5955] = {.lex_state = 34, .external_lex_state = 15}, + [5956] = {.lex_state = 34, .external_lex_state = 16}, + [5957] = {.lex_state = 34, .external_lex_state = 15}, + [5958] = {.lex_state = 158, .external_lex_state = 16}, + [5959] = {.lex_state = 158, .external_lex_state = 11}, + [5960] = {.lex_state = 36, .external_lex_state = 15}, + [5961] = {.lex_state = 37, .external_lex_state = 15}, + [5962] = {.lex_state = 36, .external_lex_state = 21}, + [5963] = {.lex_state = 158, .external_lex_state = 16}, + [5964] = {.lex_state = 36, .external_lex_state = 13}, + [5965] = {.lex_state = 37, .external_lex_state = 16}, + [5966] = {.lex_state = 158, .external_lex_state = 15}, + [5967] = {.lex_state = 35, .external_lex_state = 12}, + [5968] = {.lex_state = 36, .external_lex_state = 15}, + [5969] = {.lex_state = 158, .external_lex_state = 14}, + [5970] = {.lex_state = 35, .external_lex_state = 11}, + [5971] = {.lex_state = 36, .external_lex_state = 13}, + [5972] = {.lex_state = 36, .external_lex_state = 13}, + [5973] = {.lex_state = 41, .external_lex_state = 14}, + [5974] = {.lex_state = 158, .external_lex_state = 5}, + [5975] = {.lex_state = 37, .external_lex_state = 16}, + [5976] = {.lex_state = 158, .external_lex_state = 11}, + [5977] = {.lex_state = 34, .external_lex_state = 15}, + [5978] = {.lex_state = 158, .external_lex_state = 14}, + [5979] = {.lex_state = 158, .external_lex_state = 14}, + [5980] = {.lex_state = 158, .external_lex_state = 5}, + [5981] = {.lex_state = 158, .external_lex_state = 16}, + [5982] = {.lex_state = 41, .external_lex_state = 15}, + [5983] = {.lex_state = 158, .external_lex_state = 11}, + [5984] = {.lex_state = 158, .external_lex_state = 12}, + [5985] = {.lex_state = 158, .external_lex_state = 11}, + [5986] = {.lex_state = 158, .external_lex_state = 12}, + [5987] = {.lex_state = 34, .external_lex_state = 15}, + [5988] = {.lex_state = 158, .external_lex_state = 15}, + [5989] = {.lex_state = 37, .external_lex_state = 16}, + [5990] = {.lex_state = 41, .external_lex_state = 16}, + [5991] = {.lex_state = 47, .external_lex_state = 12}, + [5992] = {.lex_state = 37, .external_lex_state = 16}, + [5993] = {.lex_state = 37, .external_lex_state = 16}, + [5994] = {.lex_state = 36, .external_lex_state = 2}, + [5995] = {.lex_state = 36, .external_lex_state = 21}, + [5996] = {.lex_state = 37, .external_lex_state = 16}, + [5997] = {.lex_state = 37, .external_lex_state = 16}, + [5998] = {.lex_state = 37, .external_lex_state = 15}, + [5999] = {.lex_state = 37, .external_lex_state = 15}, + [6000] = {.lex_state = 158, .external_lex_state = 11}, + [6001] = {.lex_state = 158, .external_lex_state = 16}, + [6002] = {.lex_state = 47, .external_lex_state = 12}, + [6003] = {.lex_state = 37, .external_lex_state = 15}, + [6004] = {.lex_state = 158, .external_lex_state = 15}, + [6005] = {.lex_state = 34, .external_lex_state = 15}, + [6006] = {.lex_state = 34, .external_lex_state = 16}, + [6007] = {.lex_state = 47, .external_lex_state = 12}, + [6008] = {.lex_state = 37, .external_lex_state = 15}, + [6009] = {.lex_state = 158, .external_lex_state = 11}, + [6010] = {.lex_state = 36, .external_lex_state = 21}, + [6011] = {.lex_state = 158, .external_lex_state = 11}, + [6012] = {.lex_state = 158, .external_lex_state = 11}, + [6013] = {.lex_state = 37, .external_lex_state = 14}, + [6014] = {.lex_state = 37, .external_lex_state = 16}, + [6015] = {.lex_state = 37, .external_lex_state = 14}, + [6016] = {.lex_state = 158, .external_lex_state = 12}, + [6017] = {.lex_state = 158, .external_lex_state = 11}, + [6018] = {.lex_state = 37, .external_lex_state = 15}, + [6019] = {.lex_state = 37, .external_lex_state = 14}, + [6020] = {.lex_state = 158, .external_lex_state = 11}, + [6021] = {.lex_state = 158, .external_lex_state = 15}, + [6022] = {.lex_state = 158, .external_lex_state = 11}, + [6023] = {.lex_state = 36, .external_lex_state = 21}, + [6024] = {.lex_state = 158, .external_lex_state = 11}, + [6025] = {.lex_state = 158, .external_lex_state = 11}, + [6026] = {.lex_state = 158, .external_lex_state = 11}, + [6027] = {.lex_state = 158, .external_lex_state = 14}, + [6028] = {.lex_state = 158, .external_lex_state = 11}, + [6029] = {.lex_state = 158, .external_lex_state = 11}, + [6030] = {.lex_state = 36, .external_lex_state = 12}, + [6031] = {.lex_state = 158, .external_lex_state = 11}, + [6032] = {.lex_state = 158, .external_lex_state = 15}, + [6033] = {.lex_state = 158, .external_lex_state = 15}, + [6034] = {.lex_state = 158, .external_lex_state = 15}, + [6035] = {.lex_state = 158, .external_lex_state = 11}, + [6036] = {.lex_state = 158, .external_lex_state = 15}, + [6037] = {.lex_state = 158, .external_lex_state = 16}, + [6038] = {.lex_state = 158, .external_lex_state = 11}, + [6039] = {.lex_state = 158, .external_lex_state = 15}, + [6040] = {.lex_state = 158, .external_lex_state = 12}, + [6041] = {.lex_state = 158, .external_lex_state = 16}, + [6042] = {.lex_state = 158, .external_lex_state = 16}, + [6043] = {.lex_state = 158, .external_lex_state = 15}, + [6044] = {.lex_state = 158, .external_lex_state = 11}, + [6045] = {.lex_state = 158, .external_lex_state = 15}, + [6046] = {.lex_state = 158, .external_lex_state = 11}, + [6047] = {.lex_state = 158, .external_lex_state = 16}, + [6048] = {.lex_state = 158, .external_lex_state = 16}, + [6049] = {.lex_state = 34, .external_lex_state = 12}, + [6050] = {.lex_state = 158, .external_lex_state = 16}, + [6051] = {.lex_state = 158, .external_lex_state = 16}, + [6052] = {.lex_state = 3, .external_lex_state = 14}, + [6053] = {.lex_state = 158, .external_lex_state = 16}, + [6054] = {.lex_state = 3, .external_lex_state = 14}, + [6055] = {.lex_state = 158, .external_lex_state = 16}, + [6056] = {.lex_state = 158, .external_lex_state = 11}, + [6057] = {.lex_state = 158, .external_lex_state = 15}, + [6058] = {.lex_state = 3, .external_lex_state = 14}, + [6059] = {.lex_state = 36, .external_lex_state = 12}, + [6060] = {.lex_state = 158, .external_lex_state = 11}, + [6061] = {.lex_state = 158, .external_lex_state = 15}, + [6062] = {.lex_state = 158, .external_lex_state = 20}, + [6063] = {.lex_state = 158, .external_lex_state = 16}, + [6064] = {.lex_state = 158, .external_lex_state = 15}, + [6065] = {.lex_state = 158, .external_lex_state = 11}, + [6066] = {.lex_state = 158, .external_lex_state = 12}, + [6067] = {.lex_state = 158, .external_lex_state = 15}, + [6068] = {.lex_state = 158, .external_lex_state = 15}, + [6069] = {.lex_state = 158, .external_lex_state = 11}, + [6070] = {.lex_state = 158, .external_lex_state = 14}, + [6071] = {.lex_state = 158, .external_lex_state = 15}, + [6072] = {.lex_state = 158, .external_lex_state = 12}, + [6073] = {.lex_state = 158, .external_lex_state = 14}, + [6074] = {.lex_state = 158, .external_lex_state = 11}, + [6075] = {.lex_state = 158, .external_lex_state = 14}, + [6076] = {.lex_state = 158, .external_lex_state = 12}, + [6077] = {.lex_state = 37, .external_lex_state = 12}, + [6078] = {.lex_state = 158, .external_lex_state = 11}, + [6079] = {.lex_state = 158, .external_lex_state = 11}, + [6080] = {.lex_state = 158, .external_lex_state = 15}, + [6081] = {.lex_state = 158, .external_lex_state = 15}, + [6082] = {.lex_state = 158, .external_lex_state = 11}, + [6083] = {.lex_state = 158, .external_lex_state = 16}, + [6084] = {.lex_state = 158, .external_lex_state = 11}, + [6085] = {.lex_state = 158, .external_lex_state = 15}, + [6086] = {.lex_state = 158, .external_lex_state = 15}, + [6087] = {.lex_state = 158, .external_lex_state = 16}, + [6088] = {.lex_state = 158, .external_lex_state = 16}, + [6089] = {.lex_state = 158, .external_lex_state = 11}, + [6090] = {.lex_state = 158, .external_lex_state = 15}, + [6091] = {.lex_state = 158, .external_lex_state = 11}, + [6092] = {.lex_state = 158, .external_lex_state = 15}, + [6093] = {.lex_state = 158, .external_lex_state = 11}, + [6094] = {.lex_state = 158, .external_lex_state = 16}, + [6095] = {.lex_state = 158, .external_lex_state = 16}, + [6096] = {.lex_state = 158, .external_lex_state = 16}, + [6097] = {.lex_state = 158, .external_lex_state = 16}, + [6098] = {.lex_state = 158, .external_lex_state = 15}, + [6099] = {.lex_state = 158, .external_lex_state = 16}, + [6100] = {.lex_state = 158, .external_lex_state = 11}, + [6101] = {.lex_state = 158, .external_lex_state = 11}, + [6102] = {.lex_state = 158, .external_lex_state = 11}, + [6103] = {.lex_state = 35, .external_lex_state = 11}, + [6104] = {.lex_state = 3, .external_lex_state = 14}, + [6105] = {.lex_state = 158, .external_lex_state = 2}, + [6106] = {.lex_state = 158, .external_lex_state = 16}, + [6107] = {.lex_state = 158, .external_lex_state = 11}, + [6108] = {.lex_state = 158, .external_lex_state = 11}, + [6109] = {.lex_state = 158, .external_lex_state = 11}, + [6110] = {.lex_state = 158, .external_lex_state = 11}, + [6111] = {.lex_state = 158, .external_lex_state = 15}, + [6112] = {.lex_state = 3, .external_lex_state = 14}, + [6113] = {.lex_state = 158, .external_lex_state = 11}, + [6114] = {.lex_state = 158, .external_lex_state = 14}, + [6115] = {.lex_state = 158, .external_lex_state = 11}, + [6116] = {.lex_state = 158, .external_lex_state = 12}, + [6117] = {.lex_state = 158, .external_lex_state = 11}, + [6118] = {.lex_state = 158, .external_lex_state = 11}, + [6119] = {.lex_state = 158, .external_lex_state = 11}, + [6120] = {.lex_state = 158, .external_lex_state = 14}, + [6121] = {.lex_state = 34, .external_lex_state = 12}, + [6122] = {.lex_state = 158, .external_lex_state = 11}, + [6123] = {.lex_state = 158, .external_lex_state = 11}, + [6124] = {.lex_state = 36, .external_lex_state = 11}, + [6125] = {.lex_state = 158, .external_lex_state = 15}, + [6126] = {.lex_state = 158, .external_lex_state = 15}, + [6127] = {.lex_state = 158, .external_lex_state = 20}, + [6128] = {.lex_state = 158, .external_lex_state = 11}, + [6129] = {.lex_state = 158, .external_lex_state = 16}, + [6130] = {.lex_state = 158, .external_lex_state = 11}, + [6131] = {.lex_state = 158, .external_lex_state = 2}, + [6132] = {.lex_state = 37, .external_lex_state = 12}, + [6133] = {.lex_state = 158, .external_lex_state = 15}, + [6134] = {.lex_state = 158, .external_lex_state = 11}, + [6135] = {.lex_state = 158, .external_lex_state = 15}, + [6136] = {.lex_state = 158, .external_lex_state = 15}, + [6137] = {.lex_state = 158, .external_lex_state = 16}, + [6138] = {.lex_state = 158, .external_lex_state = 16}, + [6139] = {.lex_state = 158, .external_lex_state = 16}, + [6140] = {.lex_state = 158, .external_lex_state = 11}, + [6141] = {.lex_state = 158, .external_lex_state = 11}, + [6142] = {.lex_state = 158, .external_lex_state = 11}, + [6143] = {.lex_state = 158, .external_lex_state = 12}, + [6144] = {.lex_state = 158, .external_lex_state = 16}, + [6145] = {.lex_state = 158, .external_lex_state = 11}, + [6146] = {.lex_state = 158, .external_lex_state = 16}, + [6147] = {.lex_state = 158, .external_lex_state = 11}, + [6148] = {.lex_state = 158, .external_lex_state = 15}, + [6149] = {.lex_state = 158, .external_lex_state = 11}, + [6150] = {.lex_state = 158, .external_lex_state = 14}, + [6151] = {.lex_state = 158, .external_lex_state = 12}, + [6152] = {.lex_state = 158, .external_lex_state = 11}, + [6153] = {.lex_state = 158, .external_lex_state = 11}, + [6154] = {.lex_state = 158, .external_lex_state = 15}, + [6155] = {.lex_state = 158, .external_lex_state = 14}, + [6156] = {.lex_state = 158, .external_lex_state = 16}, + [6157] = {.lex_state = 158, .external_lex_state = 15}, + [6158] = {.lex_state = 158, .external_lex_state = 11}, + [6159] = {.lex_state = 158, .external_lex_state = 16}, + [6160] = {.lex_state = 158, .external_lex_state = 15}, + [6161] = {.lex_state = 158, .external_lex_state = 15}, + [6162] = {.lex_state = 158, .external_lex_state = 15}, + [6163] = {.lex_state = 158, .external_lex_state = 16}, + [6164] = {.lex_state = 158, .external_lex_state = 15}, + [6165] = {.lex_state = 71, .external_lex_state = 19}, + [6166] = {.lex_state = 158, .external_lex_state = 15}, + [6167] = {.lex_state = 158, .external_lex_state = 15}, + [6168] = {.lex_state = 158, .external_lex_state = 16}, + [6169] = {.lex_state = 158, .external_lex_state = 16}, + [6170] = {.lex_state = 158, .external_lex_state = 16}, + [6171] = {.lex_state = 158, .external_lex_state = 16}, + [6172] = {.lex_state = 158, .external_lex_state = 11}, + [6173] = {.lex_state = 158, .external_lex_state = 11}, + [6174] = {.lex_state = 158, .external_lex_state = 16}, + [6175] = {.lex_state = 53, .external_lex_state = 12}, + [6176] = {.lex_state = 158, .external_lex_state = 11}, + [6177] = {.lex_state = 158, .external_lex_state = 12}, + [6178] = {.lex_state = 158, .external_lex_state = 11}, + [6179] = {.lex_state = 158, .external_lex_state = 12}, + [6180] = {.lex_state = 158, .external_lex_state = 11}, + [6181] = {.lex_state = 35, .external_lex_state = 11}, + [6182] = {.lex_state = 158, .external_lex_state = 11}, + [6183] = {.lex_state = 158, .external_lex_state = 15}, + [6184] = {.lex_state = 158, .external_lex_state = 15}, + [6185] = {.lex_state = 158, .external_lex_state = 11}, + [6186] = {.lex_state = 158, .external_lex_state = 16}, + [6187] = {.lex_state = 158, .external_lex_state = 11}, + [6188] = {.lex_state = 158, .external_lex_state = 11}, + [6189] = {.lex_state = 36, .external_lex_state = 12}, + [6190] = {.lex_state = 158, .external_lex_state = 15}, + [6191] = {.lex_state = 158, .external_lex_state = 15}, + [6192] = {.lex_state = 158, .external_lex_state = 16}, + [6193] = {.lex_state = 158, .external_lex_state = 16}, + [6194] = {.lex_state = 158, .external_lex_state = 16}, + [6195] = {.lex_state = 158, .external_lex_state = 11}, + [6196] = {.lex_state = 158, .external_lex_state = 15}, + [6197] = {.lex_state = 158, .external_lex_state = 15}, + [6198] = {.lex_state = 158, .external_lex_state = 11}, + [6199] = {.lex_state = 34, .external_lex_state = 14}, + [6200] = {.lex_state = 158, .external_lex_state = 11}, + [6201] = {.lex_state = 158, .external_lex_state = 12}, + [6202] = {.lex_state = 158, .external_lex_state = 11}, + [6203] = {.lex_state = 158, .external_lex_state = 16}, + [6204] = {.lex_state = 158, .external_lex_state = 16}, + [6205] = {.lex_state = 158, .external_lex_state = 15}, + [6206] = {.lex_state = 158, .external_lex_state = 15}, + [6207] = {.lex_state = 158, .external_lex_state = 14}, + [6208] = {.lex_state = 158, .external_lex_state = 16}, + [6209] = {.lex_state = 158, .external_lex_state = 16}, + [6210] = {.lex_state = 158, .external_lex_state = 15}, + [6211] = {.lex_state = 158, .external_lex_state = 15}, + [6212] = {.lex_state = 158, .external_lex_state = 15}, + [6213] = {.lex_state = 158, .external_lex_state = 16}, + [6214] = {.lex_state = 158, .external_lex_state = 16}, + [6215] = {.lex_state = 158, .external_lex_state = 15}, + [6216] = {.lex_state = 158, .external_lex_state = 20}, + [6217] = {.lex_state = 34, .external_lex_state = 15}, + [6218] = {.lex_state = 158, .external_lex_state = 12}, + [6219] = {.lex_state = 158, .external_lex_state = 12}, + [6220] = {.lex_state = 158, .external_lex_state = 12}, + [6221] = {.lex_state = 158, .external_lex_state = 11}, + [6222] = {.lex_state = 158, .external_lex_state = 16}, + [6223] = {.lex_state = 158, .external_lex_state = 12}, + [6224] = {.lex_state = 158, .external_lex_state = 11}, + [6225] = {.lex_state = 158, .external_lex_state = 14}, + [6226] = {.lex_state = 158, .external_lex_state = 15}, + [6227] = {.lex_state = 158, .external_lex_state = 11}, + [6228] = {.lex_state = 158, .external_lex_state = 15}, + [6229] = {.lex_state = 158, .external_lex_state = 15}, + [6230] = {.lex_state = 158, .external_lex_state = 16}, + [6231] = {.lex_state = 158, .external_lex_state = 12}, + [6232] = {.lex_state = 158, .external_lex_state = 16}, + [6233] = {.lex_state = 158, .external_lex_state = 15}, + [6234] = {.lex_state = 158, .external_lex_state = 16}, + [6235] = {.lex_state = 158, .external_lex_state = 15}, + [6236] = {.lex_state = 158, .external_lex_state = 16}, + [6237] = {.lex_state = 158, .external_lex_state = 16}, + [6238] = {.lex_state = 158, .external_lex_state = 16}, + [6239] = {.lex_state = 158, .external_lex_state = 15}, + [6240] = {.lex_state = 158, .external_lex_state = 15}, + [6241] = {.lex_state = 158, .external_lex_state = 15}, + [6242] = {.lex_state = 71, .external_lex_state = 19}, + [6243] = {.lex_state = 158, .external_lex_state = 15}, + [6244] = {.lex_state = 158, .external_lex_state = 12}, + [6245] = {.lex_state = 158, .external_lex_state = 12}, + [6246] = {.lex_state = 158, .external_lex_state = 11}, + [6247] = {.lex_state = 158, .external_lex_state = 12}, + [6248] = {.lex_state = 158, .external_lex_state = 15}, + [6249] = {.lex_state = 158, .external_lex_state = 16}, + [6250] = {.lex_state = 158, .external_lex_state = 16}, + [6251] = {.lex_state = 158, .external_lex_state = 16}, + [6252] = {.lex_state = 158, .external_lex_state = 16}, + [6253] = {.lex_state = 158, .external_lex_state = 11}, + [6254] = {.lex_state = 158, .external_lex_state = 11}, + [6255] = {.lex_state = 158, .external_lex_state = 11}, + [6256] = {.lex_state = 158, .external_lex_state = 11}, + [6257] = {.lex_state = 158, .external_lex_state = 12}, + [6258] = {.lex_state = 36, .external_lex_state = 12}, + [6259] = {.lex_state = 158, .external_lex_state = 11}, + [6260] = {.lex_state = 158, .external_lex_state = 14}, + [6261] = {.lex_state = 158, .external_lex_state = 11}, + [6262] = {.lex_state = 158, .external_lex_state = 11}, + [6263] = {.lex_state = 158, .external_lex_state = 12}, + [6264] = {.lex_state = 158, .external_lex_state = 11}, + [6265] = {.lex_state = 158, .external_lex_state = 11}, + [6266] = {.lex_state = 158, .external_lex_state = 15}, + [6267] = {.lex_state = 158, .external_lex_state = 11}, + [6268] = {.lex_state = 158, .external_lex_state = 11}, + [6269] = {.lex_state = 158, .external_lex_state = 12}, + [6270] = {.lex_state = 158, .external_lex_state = 11}, + [6271] = {.lex_state = 158, .external_lex_state = 11}, + [6272] = {.lex_state = 158, .external_lex_state = 15}, + [6273] = {.lex_state = 158, .external_lex_state = 11}, + [6274] = {.lex_state = 158, .external_lex_state = 15}, + [6275] = {.lex_state = 158, .external_lex_state = 11}, + [6276] = {.lex_state = 158, .external_lex_state = 12}, + [6277] = {.lex_state = 158, .external_lex_state = 11}, + [6278] = {.lex_state = 158, .external_lex_state = 15}, + [6279] = {.lex_state = 158, .external_lex_state = 16}, + [6280] = {.lex_state = 158, .external_lex_state = 12}, + [6281] = {.lex_state = 158, .external_lex_state = 15}, + [6282] = {.lex_state = 158, .external_lex_state = 12}, + [6283] = {.lex_state = 158, .external_lex_state = 16}, + [6284] = {.lex_state = 158, .external_lex_state = 11}, + [6285] = {.lex_state = 158, .external_lex_state = 16}, + [6286] = {.lex_state = 158, .external_lex_state = 11}, + [6287] = {.lex_state = 158, .external_lex_state = 12}, + [6288] = {.lex_state = 158, .external_lex_state = 15}, + [6289] = {.lex_state = 158, .external_lex_state = 16}, + [6290] = {.lex_state = 158, .external_lex_state = 12}, + [6291] = {.lex_state = 158, .external_lex_state = 16}, + [6292] = {.lex_state = 158, .external_lex_state = 16}, + [6293] = {.lex_state = 158, .external_lex_state = 12}, + [6294] = {.lex_state = 158, .external_lex_state = 11}, + [6295] = {.lex_state = 36, .external_lex_state = 11}, + [6296] = {.lex_state = 158, .external_lex_state = 16}, + [6297] = {.lex_state = 158, .external_lex_state = 11}, + [6298] = {.lex_state = 158, .external_lex_state = 12}, + [6299] = {.lex_state = 158, .external_lex_state = 11}, + [6300] = {.lex_state = 158, .external_lex_state = 16}, + [6301] = {.lex_state = 158, .external_lex_state = 15}, + [6302] = {.lex_state = 158, .external_lex_state = 11}, + [6303] = {.lex_state = 158, .external_lex_state = 11}, + [6304] = {.lex_state = 158, .external_lex_state = 11}, + [6305] = {.lex_state = 158, .external_lex_state = 11}, + [6306] = {.lex_state = 158, .external_lex_state = 11}, + [6307] = {.lex_state = 34, .external_lex_state = 15}, + [6308] = {.lex_state = 158, .external_lex_state = 11}, + [6309] = {.lex_state = 158, .external_lex_state = 11}, + [6310] = {.lex_state = 158, .external_lex_state = 11}, + [6311] = {.lex_state = 158, .external_lex_state = 11}, + [6312] = {.lex_state = 37, .external_lex_state = 12}, + [6313] = {.lex_state = 158, .external_lex_state = 14}, + [6314] = {.lex_state = 158, .external_lex_state = 11}, + [6315] = {.lex_state = 158, .external_lex_state = 11}, + [6316] = {.lex_state = 158, .external_lex_state = 11}, + [6317] = {.lex_state = 34, .external_lex_state = 15}, + [6318] = {.lex_state = 158, .external_lex_state = 15}, + [6319] = {.lex_state = 158, .external_lex_state = 11}, + [6320] = {.lex_state = 158, .external_lex_state = 11}, + [6321] = {.lex_state = 158, .external_lex_state = 11}, + [6322] = {.lex_state = 158, .external_lex_state = 15}, + [6323] = {.lex_state = 158, .external_lex_state = 11}, + [6324] = {.lex_state = 158, .external_lex_state = 11}, + [6325] = {.lex_state = 158, .external_lex_state = 11}, + [6326] = {.lex_state = 158, .external_lex_state = 14}, + [6327] = {.lex_state = 158, .external_lex_state = 14}, + [6328] = {.lex_state = 158, .external_lex_state = 16}, + [6329] = {.lex_state = 34, .external_lex_state = 14}, + [6330] = {.lex_state = 158, .external_lex_state = 16}, + [6331] = {.lex_state = 36, .external_lex_state = 11}, + [6332] = {.lex_state = 158, .external_lex_state = 15}, + [6333] = {.lex_state = 158, .external_lex_state = 11}, + [6334] = {.lex_state = 158, .external_lex_state = 11}, + [6335] = {.lex_state = 158, .external_lex_state = 11}, + [6336] = {.lex_state = 158, .external_lex_state = 16}, + [6337] = {.lex_state = 158, .external_lex_state = 15}, + [6338] = {.lex_state = 158, .external_lex_state = 14}, + [6339] = {.lex_state = 158, .external_lex_state = 11}, + [6340] = {.lex_state = 158, .external_lex_state = 11}, + [6341] = {.lex_state = 158, .external_lex_state = 15}, + [6342] = {.lex_state = 158, .external_lex_state = 12}, + [6343] = {.lex_state = 158, .external_lex_state = 11}, + [6344] = {.lex_state = 158, .external_lex_state = 12}, + [6345] = {.lex_state = 53, .external_lex_state = 12}, + [6346] = {.lex_state = 158, .external_lex_state = 15}, + [6347] = {.lex_state = 158, .external_lex_state = 2}, + [6348] = {.lex_state = 158, .external_lex_state = 14}, + [6349] = {.lex_state = 158, .external_lex_state = 11}, + [6350] = {.lex_state = 158, .external_lex_state = 11}, + [6351] = {.lex_state = 34, .external_lex_state = 12}, + [6352] = {.lex_state = 158, .external_lex_state = 11}, + [6353] = {.lex_state = 158, .external_lex_state = 12}, + [6354] = {.lex_state = 158, .external_lex_state = 12}, + [6355] = {.lex_state = 158, .external_lex_state = 16}, + [6356] = {.lex_state = 158, .external_lex_state = 12}, + [6357] = {.lex_state = 158, .external_lex_state = 12}, + [6358] = {.lex_state = 34, .external_lex_state = 12}, + [6359] = {.lex_state = 158, .external_lex_state = 11}, + [6360] = {.lex_state = 34, .external_lex_state = 11}, + [6361] = {.lex_state = 37, .external_lex_state = 12}, + [6362] = {.lex_state = 158, .external_lex_state = 11}, + [6363] = {.lex_state = 158, .external_lex_state = 11}, + [6364] = {.lex_state = 158, .external_lex_state = 11}, + [6365] = {.lex_state = 158, .external_lex_state = 11}, + [6366] = {.lex_state = 158, .external_lex_state = 12}, + [6367] = {.lex_state = 158, .external_lex_state = 14}, + [6368] = {.lex_state = 35, .external_lex_state = 11}, + [6369] = {.lex_state = 158, .external_lex_state = 11}, + [6370] = {.lex_state = 37, .external_lex_state = 12}, + [6371] = {.lex_state = 158, .external_lex_state = 12}, + [6372] = {.lex_state = 158, .external_lex_state = 11}, + [6373] = {.lex_state = 158, .external_lex_state = 16}, + [6374] = {.lex_state = 37, .external_lex_state = 12}, + [6375] = {.lex_state = 158, .external_lex_state = 14}, + [6376] = {.lex_state = 158, .external_lex_state = 12}, + [6377] = {.lex_state = 158, .external_lex_state = 15}, + [6378] = {.lex_state = 158, .external_lex_state = 15}, + [6379] = {.lex_state = 158, .external_lex_state = 12}, + [6380] = {.lex_state = 158, .external_lex_state = 11}, + [6381] = {.lex_state = 158, .external_lex_state = 11}, + [6382] = {.lex_state = 158, .external_lex_state = 15}, + [6383] = {.lex_state = 158, .external_lex_state = 12}, + [6384] = {.lex_state = 158, .external_lex_state = 11}, + [6385] = {.lex_state = 158, .external_lex_state = 12}, + [6386] = {.lex_state = 3, .external_lex_state = 14}, + [6387] = {.lex_state = 158, .external_lex_state = 16}, + [6388] = {.lex_state = 158, .external_lex_state = 15}, + [6389] = {.lex_state = 158, .external_lex_state = 14}, + [6390] = {.lex_state = 158, .external_lex_state = 16}, + [6391] = {.lex_state = 158, .external_lex_state = 14}, + [6392] = {.lex_state = 34, .external_lex_state = 12}, + [6393] = {.lex_state = 34, .external_lex_state = 12}, + [6394] = {.lex_state = 158, .external_lex_state = 14}, + [6395] = {.lex_state = 158, .external_lex_state = 15}, + [6396] = {.lex_state = 158, .external_lex_state = 15}, + [6397] = {.lex_state = 158, .external_lex_state = 11}, + [6398] = {.lex_state = 158, .external_lex_state = 14}, + [6399] = {.lex_state = 158, .external_lex_state = 16}, + [6400] = {.lex_state = 36, .external_lex_state = 11}, + [6401] = {.lex_state = 158, .external_lex_state = 11}, + [6402] = {.lex_state = 158, .external_lex_state = 11}, + [6403] = {.lex_state = 158, .external_lex_state = 11}, + [6404] = {.lex_state = 158, .external_lex_state = 11}, + [6405] = {.lex_state = 158, .external_lex_state = 14}, + [6406] = {.lex_state = 34, .external_lex_state = 16}, + [6407] = {.lex_state = 158, .external_lex_state = 15}, + [6408] = {.lex_state = 158, .external_lex_state = 15}, + [6409] = {.lex_state = 158, .external_lex_state = 12}, + [6410] = {.lex_state = 158, .external_lex_state = 16}, + [6411] = {.lex_state = 158, .external_lex_state = 20}, + [6412] = {.lex_state = 158, .external_lex_state = 14}, + [6413] = {.lex_state = 158, .external_lex_state = 11}, + [6414] = {.lex_state = 158, .external_lex_state = 14}, + [6415] = {.lex_state = 158, .external_lex_state = 15}, + [6416] = {.lex_state = 158, .external_lex_state = 15}, + [6417] = {.lex_state = 158, .external_lex_state = 15}, + [6418] = {.lex_state = 158, .external_lex_state = 11}, + [6419] = {.lex_state = 158, .external_lex_state = 16}, + [6420] = {.lex_state = 158, .external_lex_state = 20}, + [6421] = {.lex_state = 158, .external_lex_state = 12}, + [6422] = {.lex_state = 158, .external_lex_state = 12}, + [6423] = {.lex_state = 158, .external_lex_state = 11}, + [6424] = {.lex_state = 158, .external_lex_state = 2}, + [6425] = {.lex_state = 158, .external_lex_state = 11}, + [6426] = {.lex_state = 34, .external_lex_state = 12}, + [6427] = {.lex_state = 158, .external_lex_state = 11}, + [6428] = {.lex_state = 158, .external_lex_state = 11}, + [6429] = {.lex_state = 158, .external_lex_state = 12}, + [6430] = {.lex_state = 158, .external_lex_state = 15}, + [6431] = {.lex_state = 158, .external_lex_state = 11}, + [6432] = {.lex_state = 158, .external_lex_state = 12}, + [6433] = {.lex_state = 34, .external_lex_state = 12}, + [6434] = {.lex_state = 158, .external_lex_state = 11}, + [6435] = {.lex_state = 158, .external_lex_state = 11}, + [6436] = {.lex_state = 158, .external_lex_state = 11}, + [6437] = {.lex_state = 158, .external_lex_state = 12}, + [6438] = {.lex_state = 158, .external_lex_state = 11}, + [6439] = {.lex_state = 158, .external_lex_state = 11}, + [6440] = {.lex_state = 158, .external_lex_state = 12}, + [6441] = {.lex_state = 158, .external_lex_state = 11}, + [6442] = {.lex_state = 158, .external_lex_state = 11}, + [6443] = {.lex_state = 158, .external_lex_state = 11}, + [6444] = {.lex_state = 158, .external_lex_state = 12}, + [6445] = {.lex_state = 158, .external_lex_state = 11}, + [6446] = {.lex_state = 158, .external_lex_state = 16}, + [6447] = {.lex_state = 158, .external_lex_state = 12}, + [6448] = {.lex_state = 158, .external_lex_state = 14}, + [6449] = {.lex_state = 158, .external_lex_state = 14}, + [6450] = {.lex_state = 158, .external_lex_state = 12}, + [6451] = {.lex_state = 158, .external_lex_state = 15}, + [6452] = {.lex_state = 158, .external_lex_state = 11}, + [6453] = {.lex_state = 158, .external_lex_state = 11}, + [6454] = {.lex_state = 158, .external_lex_state = 11}, + [6455] = {.lex_state = 158, .external_lex_state = 12}, + [6456] = {.lex_state = 158, .external_lex_state = 2}, + [6457] = {.lex_state = 35, .external_lex_state = 11}, + [6458] = {.lex_state = 158, .external_lex_state = 11}, + [6459] = {.lex_state = 158, .external_lex_state = 14}, + [6460] = {.lex_state = 158, .external_lex_state = 12}, + [6461] = {.lex_state = 158, .external_lex_state = 15}, + [6462] = {.lex_state = 158, .external_lex_state = 15}, + [6463] = {.lex_state = 158, .external_lex_state = 12}, + [6464] = {.lex_state = 158, .external_lex_state = 11}, + [6465] = {.lex_state = 36, .external_lex_state = 11}, + [6466] = {.lex_state = 158, .external_lex_state = 12}, + [6467] = {.lex_state = 158, .external_lex_state = 12}, + [6468] = {.lex_state = 158, .external_lex_state = 12}, + [6469] = {.lex_state = 158, .external_lex_state = 11}, + [6470] = {.lex_state = 158, .external_lex_state = 16}, + [6471] = {.lex_state = 158, .external_lex_state = 11}, + [6472] = {.lex_state = 158, .external_lex_state = 12}, + [6473] = {.lex_state = 158, .external_lex_state = 12}, + [6474] = {.lex_state = 158, .external_lex_state = 11}, + [6475] = {.lex_state = 158, .external_lex_state = 11}, + [6476] = {.lex_state = 158, .external_lex_state = 12}, + [6477] = {.lex_state = 158, .external_lex_state = 12}, + [6478] = {.lex_state = 158, .external_lex_state = 11}, + [6479] = {.lex_state = 158, .external_lex_state = 11}, + [6480] = {.lex_state = 158, .external_lex_state = 15}, + [6481] = {.lex_state = 158, .external_lex_state = 12}, + [6482] = {.lex_state = 36, .external_lex_state = 11}, + [6483] = {.lex_state = 158, .external_lex_state = 15}, + [6484] = {.lex_state = 158, .external_lex_state = 11}, + [6485] = {.lex_state = 158, .external_lex_state = 16}, + [6486] = {.lex_state = 158, .external_lex_state = 16}, + [6487] = {.lex_state = 158, .external_lex_state = 11}, + [6488] = {.lex_state = 3, .external_lex_state = 14}, + [6489] = {.lex_state = 158, .external_lex_state = 11}, + [6490] = {.lex_state = 158, .external_lex_state = 12}, + [6491] = {.lex_state = 158, .external_lex_state = 16}, + [6492] = {.lex_state = 158, .external_lex_state = 11}, + [6493] = {.lex_state = 158, .external_lex_state = 11}, + [6494] = {.lex_state = 158, .external_lex_state = 11}, + [6495] = {.lex_state = 34, .external_lex_state = 16}, + [6496] = {.lex_state = 158, .external_lex_state = 12}, + [6497] = {.lex_state = 158, .external_lex_state = 16}, + [6498] = {.lex_state = 158, .external_lex_state = 16}, + [6499] = {.lex_state = 34, .external_lex_state = 15}, + [6500] = {.lex_state = 158, .external_lex_state = 11}, + [6501] = {.lex_state = 158, .external_lex_state = 11}, + [6502] = {.lex_state = 158, .external_lex_state = 15}, + [6503] = {.lex_state = 158, .external_lex_state = 11}, + [6504] = {.lex_state = 158, .external_lex_state = 11}, + [6505] = {.lex_state = 158, .external_lex_state = 11}, + [6506] = {.lex_state = 158, .external_lex_state = 11}, + [6507] = {.lex_state = 158, .external_lex_state = 15}, + [6508] = {.lex_state = 158, .external_lex_state = 11}, + [6509] = {.lex_state = 158, .external_lex_state = 20}, + [6510] = {.lex_state = 34, .external_lex_state = 12}, + [6511] = {.lex_state = 158, .external_lex_state = 14}, + [6512] = {.lex_state = 158, .external_lex_state = 11}, + [6513] = {.lex_state = 158, .external_lex_state = 16}, + [6514] = {.lex_state = 158, .external_lex_state = 11}, + [6515] = {.lex_state = 158, .external_lex_state = 11}, + [6516] = {.lex_state = 158, .external_lex_state = 14}, + [6517] = {.lex_state = 158, .external_lex_state = 15}, + [6518] = {.lex_state = 158, .external_lex_state = 11}, + [6519] = {.lex_state = 158, .external_lex_state = 15}, + [6520] = {.lex_state = 158, .external_lex_state = 15}, + [6521] = {.lex_state = 158, .external_lex_state = 11}, + [6522] = {.lex_state = 158, .external_lex_state = 12}, + [6523] = {.lex_state = 158, .external_lex_state = 11}, + [6524] = {.lex_state = 158, .external_lex_state = 11}, + [6525] = {.lex_state = 158, .external_lex_state = 16}, + [6526] = {.lex_state = 158, .external_lex_state = 11}, + [6527] = {.lex_state = 158, .external_lex_state = 11}, + [6528] = {.lex_state = 158, .external_lex_state = 12}, + [6529] = {.lex_state = 158, .external_lex_state = 11}, + [6530] = {.lex_state = 158, .external_lex_state = 14}, + [6531] = {.lex_state = 34, .external_lex_state = 16}, + [6532] = {.lex_state = 158, .external_lex_state = 20}, + [6533] = {.lex_state = 158, .external_lex_state = 11}, + [6534] = {.lex_state = 158, .external_lex_state = 11}, + [6535] = {.lex_state = 158, .external_lex_state = 11}, + [6536] = {.lex_state = 158, .external_lex_state = 11}, + [6537] = {.lex_state = 158, .external_lex_state = 11}, + [6538] = {.lex_state = 158, .external_lex_state = 11}, + [6539] = {.lex_state = 158, .external_lex_state = 15}, + [6540] = {.lex_state = 158, .external_lex_state = 11}, + [6541] = {.lex_state = 158, .external_lex_state = 11}, + [6542] = {.lex_state = 34, .external_lex_state = 14}, + [6543] = {.lex_state = 71, .external_lex_state = 19}, + [6544] = {.lex_state = 158, .external_lex_state = 11}, + [6545] = {.lex_state = 158, .external_lex_state = 16}, + [6546] = {.lex_state = 158, .external_lex_state = 11}, + [6547] = {.lex_state = 158, .external_lex_state = 14}, + [6548] = {.lex_state = 158, .external_lex_state = 11}, + [6549] = {.lex_state = 36, .external_lex_state = 11}, + [6550] = {.lex_state = 158, .external_lex_state = 16}, + [6551] = {.lex_state = 158, .external_lex_state = 14}, + [6552] = {.lex_state = 71, .external_lex_state = 19}, + [6553] = {.lex_state = 71, .external_lex_state = 19}, + [6554] = {.lex_state = 158, .external_lex_state = 14}, + [6555] = {.lex_state = 158, .external_lex_state = 15}, + [6556] = {.lex_state = 158, .external_lex_state = 11}, + [6557] = {.lex_state = 158, .external_lex_state = 15}, + [6558] = {.lex_state = 37, .external_lex_state = 12}, + [6559] = {.lex_state = 158, .external_lex_state = 16}, + [6560] = {.lex_state = 158, .external_lex_state = 16}, + [6561] = {.lex_state = 158, .external_lex_state = 16}, + [6562] = {.lex_state = 158, .external_lex_state = 11}, + [6563] = {.lex_state = 158, .external_lex_state = 12}, + [6564] = {.lex_state = 158, .external_lex_state = 15}, + [6565] = {.lex_state = 158, .external_lex_state = 12}, + [6566] = {.lex_state = 158, .external_lex_state = 12}, + [6567] = {.lex_state = 158, .external_lex_state = 12}, + [6568] = {.lex_state = 158, .external_lex_state = 11}, + [6569] = {.lex_state = 158, .external_lex_state = 14}, + [6570] = {.lex_state = 158, .external_lex_state = 11}, + [6571] = {.lex_state = 158, .external_lex_state = 11}, + [6572] = {.lex_state = 158, .external_lex_state = 11}, + [6573] = {.lex_state = 158, .external_lex_state = 11}, + [6574] = {.lex_state = 158, .external_lex_state = 11}, + [6575] = {.lex_state = 158, .external_lex_state = 11}, + [6576] = {.lex_state = 158, .external_lex_state = 20}, + [6577] = {.lex_state = 158, .external_lex_state = 11}, + [6578] = {.lex_state = 158, .external_lex_state = 16}, + [6579] = {.lex_state = 158, .external_lex_state = 11}, + [6580] = {.lex_state = 158, .external_lex_state = 12}, + [6581] = {.lex_state = 158, .external_lex_state = 11}, + [6582] = {.lex_state = 34, .external_lex_state = 11}, + [6583] = {.lex_state = 158, .external_lex_state = 11}, + [6584] = {.lex_state = 158, .external_lex_state = 11}, + [6585] = {.lex_state = 158, .external_lex_state = 11}, + [6586] = {.lex_state = 158, .external_lex_state = 11}, + [6587] = {.lex_state = 158, .external_lex_state = 16}, + [6588] = {.lex_state = 158, .external_lex_state = 11}, + [6589] = {.lex_state = 158, .external_lex_state = 11}, + [6590] = {.lex_state = 158, .external_lex_state = 11}, + [6591] = {.lex_state = 158, .external_lex_state = 11}, + [6592] = {.lex_state = 53, .external_lex_state = 12}, + [6593] = {.lex_state = 158, .external_lex_state = 11}, + [6594] = {.lex_state = 35, .external_lex_state = 11}, + [6595] = {.lex_state = 35, .external_lex_state = 11}, + [6596] = {.lex_state = 158, .external_lex_state = 11}, + [6597] = {.lex_state = 158, .external_lex_state = 12}, + [6598] = {.lex_state = 158, .external_lex_state = 12}, + [6599] = {.lex_state = 3, .external_lex_state = 14}, + [6600] = {.lex_state = 158, .external_lex_state = 11}, + [6601] = {.lex_state = 158, .external_lex_state = 11}, + [6602] = {.lex_state = 158, .external_lex_state = 11}, + [6603] = {.lex_state = 158, .external_lex_state = 11}, + [6604] = {.lex_state = 158, .external_lex_state = 11}, + [6605] = {.lex_state = 36, .external_lex_state = 11}, + [6606] = {.lex_state = 158, .external_lex_state = 14}, + [6607] = {.lex_state = 158, .external_lex_state = 11}, + [6608] = {.lex_state = 158, .external_lex_state = 11}, + [6609] = {.lex_state = 158, .external_lex_state = 16}, + [6610] = {.lex_state = 158, .external_lex_state = 11}, + [6611] = {.lex_state = 158, .external_lex_state = 15}, + [6612] = {.lex_state = 158, .external_lex_state = 16}, + [6613] = {.lex_state = 158, .external_lex_state = 11}, + [6614] = {.lex_state = 158, .external_lex_state = 11}, + [6615] = {.lex_state = 158, .external_lex_state = 15}, + [6616] = {.lex_state = 3, .external_lex_state = 14}, + [6617] = {.lex_state = 158, .external_lex_state = 11}, + [6618] = {.lex_state = 37, .external_lex_state = 12}, + [6619] = {.lex_state = 158, .external_lex_state = 16}, + [6620] = {.lex_state = 158, .external_lex_state = 15}, + [6621] = {.lex_state = 158, .external_lex_state = 14}, + [6622] = {.lex_state = 158, .external_lex_state = 15}, + [6623] = {.lex_state = 158, .external_lex_state = 12}, + [6624] = {.lex_state = 158, .external_lex_state = 11}, + [6625] = {.lex_state = 158, .external_lex_state = 11}, + [6626] = {.lex_state = 158, .external_lex_state = 14}, + [6627] = {.lex_state = 158, .external_lex_state = 11}, + [6628] = {.lex_state = 158, .external_lex_state = 14}, + [6629] = {.lex_state = 158, .external_lex_state = 11}, + [6630] = {.lex_state = 158, .external_lex_state = 12}, + [6631] = {.lex_state = 158, .external_lex_state = 11}, + [6632] = {.lex_state = 158, .external_lex_state = 16}, + [6633] = {.lex_state = 158, .external_lex_state = 11}, + [6634] = {.lex_state = 158, .external_lex_state = 11}, + [6635] = {.lex_state = 158, .external_lex_state = 11}, + [6636] = {.lex_state = 158, .external_lex_state = 11}, + [6637] = {.lex_state = 37, .external_lex_state = 12}, + [6638] = {.lex_state = 158, .external_lex_state = 16}, + [6639] = {.lex_state = 55, .external_lex_state = 12}, + [6640] = {.lex_state = 55, .external_lex_state = 12}, + [6641] = {.lex_state = 55, .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}, + [6643] = {.lex_state = 35, .external_lex_state = 12}, + [6644] = {.lex_state = 55, .external_lex_state = 12}, + [6645] = {.lex_state = 158, .external_lex_state = 12}, + [6646] = {.lex_state = 36, .external_lex_state = 13}, + [6647] = {.lex_state = 158, .external_lex_state = 11}, + [6648] = {.lex_state = 158, .external_lex_state = 16}, + [6649] = {.lex_state = 158, .external_lex_state = 12}, + [6650] = {.lex_state = 158, .external_lex_state = 11}, + [6651] = {.lex_state = 158, .external_lex_state = 15}, + [6652] = {.lex_state = 158, .external_lex_state = 12}, + [6653] = {.lex_state = 158, .external_lex_state = 11}, + [6654] = {.lex_state = 158, .external_lex_state = 12}, + [6655] = {.lex_state = 158, .external_lex_state = 15}, + [6656] = {.lex_state = 158, .external_lex_state = 11}, + [6657] = {.lex_state = 158, .external_lex_state = 15}, + [6658] = {.lex_state = 158, .external_lex_state = 15}, + [6659] = {.lex_state = 158, .external_lex_state = 11}, + [6660] = {.lex_state = 158, .external_lex_state = 11}, + [6661] = {.lex_state = 36, .external_lex_state = 13}, + [6662] = {.lex_state = 158, .external_lex_state = 12}, + [6663] = {.lex_state = 36, .external_lex_state = 12}, + [6664] = {.lex_state = 36, .external_lex_state = 13}, + [6665] = {.lex_state = 55, .external_lex_state = 12}, + [6666] = {.lex_state = 158, .external_lex_state = 15}, + [6667] = {.lex_state = 34, .external_lex_state = 12}, + [6668] = {.lex_state = 35, .external_lex_state = 12}, + [6669] = {.lex_state = 158, .external_lex_state = 11}, + [6670] = {.lex_state = 158, .external_lex_state = 11}, + [6671] = {.lex_state = 158, .external_lex_state = 16}, + [6672] = {.lex_state = 158, .external_lex_state = 15}, + [6673] = {.lex_state = 158, .external_lex_state = 11}, + [6674] = {.lex_state = 55, .external_lex_state = 12}, + [6675] = {.lex_state = 34, .external_lex_state = 12}, + [6676] = {.lex_state = 35, .external_lex_state = 12}, + [6677] = {.lex_state = 158, .external_lex_state = 15}, + [6678] = {.lex_state = 158, .external_lex_state = 15}, + [6679] = {.lex_state = 158, .external_lex_state = 11}, + [6680] = {.lex_state = 158, .external_lex_state = 12}, + [6681] = {.lex_state = 55, .external_lex_state = 12}, + [6682] = {.lex_state = 158, .external_lex_state = 15}, + [6683] = {.lex_state = 36, .external_lex_state = 13}, + [6684] = {.lex_state = 36, .external_lex_state = 13}, + [6685] = {.lex_state = 34, .external_lex_state = 12}, + [6686] = {.lex_state = 35, .external_lex_state = 12}, + [6687] = {.lex_state = 158, .external_lex_state = 12}, + [6688] = {.lex_state = 158, .external_lex_state = 15}, + [6689] = {.lex_state = 158, .external_lex_state = 15}, + [6690] = {.lex_state = 158, .external_lex_state = 15}, + [6691] = {.lex_state = 158, .external_lex_state = 15}, + [6692] = {.lex_state = 158, .external_lex_state = 11}, + [6693] = {.lex_state = 158, .external_lex_state = 11}, [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}, + [6695] = {.lex_state = 158, .external_lex_state = 12}, + [6696] = {.lex_state = 158, .external_lex_state = 15}, + [6697] = {.lex_state = 158, .external_lex_state = 15}, + [6698] = {.lex_state = 158, .external_lex_state = 12}, + [6699] = {.lex_state = 158, .external_lex_state = 12}, + [6700] = {.lex_state = 158, .external_lex_state = 15}, + [6701] = {.lex_state = 158, .external_lex_state = 15}, + [6702] = {.lex_state = 158, .external_lex_state = 15}, + [6703] = {.lex_state = 158, .external_lex_state = 15}, + [6704] = {.lex_state = 158, .external_lex_state = 12}, + [6705] = {.lex_state = 158, .external_lex_state = 12}, + [6706] = {.lex_state = 158, .external_lex_state = 15}, + [6707] = {.lex_state = 158, .external_lex_state = 11}, + [6708] = {.lex_state = 158, .external_lex_state = 15}, + [6709] = {.lex_state = 158, .external_lex_state = 2}, + [6710] = {.lex_state = 158, .external_lex_state = 15}, + [6711] = {.lex_state = 158, .external_lex_state = 12}, + [6712] = {.lex_state = 158, .external_lex_state = 11}, + [6713] = {.lex_state = 158, .external_lex_state = 15}, + [6714] = {.lex_state = 158, .external_lex_state = 11}, + [6715] = {.lex_state = 158, .external_lex_state = 15}, + [6716] = {.lex_state = 158, .external_lex_state = 12}, + [6717] = {.lex_state = 158, .external_lex_state = 11}, + [6718] = {.lex_state = 158, .external_lex_state = 15}, + [6719] = {.lex_state = 158, .external_lex_state = 15}, + [6720] = {.lex_state = 158, .external_lex_state = 15}, + [6721] = {.lex_state = 158, .external_lex_state = 15}, + [6722] = {.lex_state = 36, .external_lex_state = 13}, + [6723] = {.lex_state = 158, .external_lex_state = 11}, + [6724] = {.lex_state = 158, .external_lex_state = 11}, + [6725] = {.lex_state = 158, .external_lex_state = 11}, + [6726] = {.lex_state = 158, .external_lex_state = 15}, + [6727] = {.lex_state = 158, .external_lex_state = 11}, + [6728] = {.lex_state = 158, .external_lex_state = 15}, + [6729] = {.lex_state = 158, .external_lex_state = 12}, + [6730] = {.lex_state = 158, .external_lex_state = 15}, + [6731] = {.lex_state = 158, .external_lex_state = 11}, + [6732] = {.lex_state = 158, .external_lex_state = 15}, + [6733] = {.lex_state = 158, .external_lex_state = 11}, + [6734] = {.lex_state = 158, .external_lex_state = 12}, + [6735] = {.lex_state = 158, .external_lex_state = 16}, + [6736] = {.lex_state = 158, .external_lex_state = 11}, + [6737] = {.lex_state = 158, .external_lex_state = 11}, + [6738] = {.lex_state = 36, .external_lex_state = 12}, + [6739] = {.lex_state = 158, .external_lex_state = 11}, + [6740] = {.lex_state = 158, .external_lex_state = 16}, + [6741] = {.lex_state = 55, .external_lex_state = 12}, + [6742] = {.lex_state = 34, .external_lex_state = 12}, + [6743] = {.lex_state = 35, .external_lex_state = 12}, + [6744] = {.lex_state = 158, .external_lex_state = 12}, + [6745] = {.lex_state = 158, .external_lex_state = 12}, + [6746] = {.lex_state = 158, .external_lex_state = 12}, + [6747] = {.lex_state = 158, .external_lex_state = 12}, + [6748] = {.lex_state = 158, .external_lex_state = 12}, + [6749] = {.lex_state = 158, .external_lex_state = 12}, + [6750] = {.lex_state = 158, .external_lex_state = 15}, + [6751] = {.lex_state = 158, .external_lex_state = 11}, + [6752] = {.lex_state = 158, .external_lex_state = 15}, + [6753] = {.lex_state = 158, .external_lex_state = 15}, + [6754] = {.lex_state = 158, .external_lex_state = 12}, + [6755] = {.lex_state = 158, .external_lex_state = 15}, + [6756] = {.lex_state = 158, .external_lex_state = 12}, + [6757] = {.lex_state = 36, .external_lex_state = 12}, + [6758] = {.lex_state = 158, .external_lex_state = 15}, + [6759] = {.lex_state = 158, .external_lex_state = 15}, + [6760] = {.lex_state = 158, .external_lex_state = 15}, + [6761] = {.lex_state = 158, .external_lex_state = 2}, + [6762] = {.lex_state = 158, .external_lex_state = 15}, + [6763] = {.lex_state = 158, .external_lex_state = 15}, + [6764] = {.lex_state = 158, .external_lex_state = 11}, + [6765] = {.lex_state = 158, .external_lex_state = 15}, + [6766] = {.lex_state = 158, .external_lex_state = 15}, + [6767] = {.lex_state = 158, .external_lex_state = 15}, + [6768] = {.lex_state = 158, .external_lex_state = 11}, + [6769] = {.lex_state = 158, .external_lex_state = 15}, + [6770] = {.lex_state = 158, .external_lex_state = 15}, + [6771] = {.lex_state = 158, .external_lex_state = 15}, + [6772] = {.lex_state = 158, .external_lex_state = 15}, + [6773] = {.lex_state = 36, .external_lex_state = 13}, + [6774] = {.lex_state = 158, .external_lex_state = 12}, + [6775] = {.lex_state = 158, .external_lex_state = 15}, + [6776] = {.lex_state = 158, .external_lex_state = 11}, + [6777] = {.lex_state = 158, .external_lex_state = 16}, + [6778] = {.lex_state = 36, .external_lex_state = 12}, + [6779] = {.lex_state = 158, .external_lex_state = 16}, + [6780] = {.lex_state = 158, .external_lex_state = 11}, + [6781] = {.lex_state = 158, .external_lex_state = 12}, + [6782] = {.lex_state = 158, .external_lex_state = 15}, + [6783] = {.lex_state = 158, .external_lex_state = 15}, + [6784] = {.lex_state = 54, .external_lex_state = 12}, + [6785] = {.lex_state = 158, .external_lex_state = 16}, + [6786] = {.lex_state = 158, .external_lex_state = 15}, + [6787] = {.lex_state = 158, .external_lex_state = 11}, + [6788] = {.lex_state = 158, .external_lex_state = 15}, + [6789] = {.lex_state = 158, .external_lex_state = 2}, + [6790] = {.lex_state = 158, .external_lex_state = 15}, + [6791] = {.lex_state = 158, .external_lex_state = 2}, + [6792] = {.lex_state = 158, .external_lex_state = 12}, + [6793] = {.lex_state = 158, .external_lex_state = 15}, [6794] = {.lex_state = 36, .external_lex_state = 12}, - [6795] = {.lex_state = 156, .external_lex_state = 14}, + [6795] = {.lex_state = 158, .external_lex_state = 11}, [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}, + [6797] = {.lex_state = 158, .external_lex_state = 15}, + [6798] = {.lex_state = 55, .external_lex_state = 12}, + [6799] = {.lex_state = 158, .external_lex_state = 15}, + [6800] = {.lex_state = 55, .external_lex_state = 12}, + [6801] = {.lex_state = 158, .external_lex_state = 15}, + [6802] = {.lex_state = 34, .external_lex_state = 12}, + [6803] = {.lex_state = 158, .external_lex_state = 15}, + [6804] = {.lex_state = 158, .external_lex_state = 11}, + [6805] = {.lex_state = 35, .external_lex_state = 12}, + [6806] = {.lex_state = 158, .external_lex_state = 12}, + [6807] = {.lex_state = 158, .external_lex_state = 11}, + [6808] = {.lex_state = 158, .external_lex_state = 15}, + [6809] = {.lex_state = 158, .external_lex_state = 11}, + [6810] = {.lex_state = 36, .external_lex_state = 12}, + [6811] = {.lex_state = 158, .external_lex_state = 11}, + [6812] = {.lex_state = 158, .external_lex_state = 15}, + [6813] = {.lex_state = 158, .external_lex_state = 12}, + [6814] = {.lex_state = 158, .external_lex_state = 11}, + [6815] = {.lex_state = 158, .external_lex_state = 12}, + [6816] = {.lex_state = 158, .external_lex_state = 15}, + [6817] = {.lex_state = 158, .external_lex_state = 15}, + [6818] = {.lex_state = 158, .external_lex_state = 11}, + [6819] = {.lex_state = 158, .external_lex_state = 11}, + [6820] = {.lex_state = 158, .external_lex_state = 2}, + [6821] = {.lex_state = 158, .external_lex_state = 11}, + [6822] = {.lex_state = 158, .external_lex_state = 14}, + [6823] = {.lex_state = 55, .external_lex_state = 12}, + [6824] = {.lex_state = 158, .external_lex_state = 12}, + [6825] = {.lex_state = 158, .external_lex_state = 14}, + [6826] = {.lex_state = 158, .external_lex_state = 12}, + [6827] = {.lex_state = 158, .external_lex_state = 11}, + [6828] = {.lex_state = 158, .external_lex_state = 11}, + [6829] = {.lex_state = 158, .external_lex_state = 14}, + [6830] = {.lex_state = 158, .external_lex_state = 12}, + [6831] = {.lex_state = 158, .external_lex_state = 15}, + [6832] = {.lex_state = 54, .external_lex_state = 12}, + [6833] = {.lex_state = 158, .external_lex_state = 11}, + [6834] = {.lex_state = 158, .external_lex_state = 16}, + [6835] = {.lex_state = 158, .external_lex_state = 16}, + [6836] = {.lex_state = 158, .external_lex_state = 16}, + [6837] = {.lex_state = 158, .external_lex_state = 12}, + [6838] = {.lex_state = 158, .external_lex_state = 12}, + [6839] = {.lex_state = 158, .external_lex_state = 15}, + [6840] = {.lex_state = 36, .external_lex_state = 13}, + [6841] = {.lex_state = 158, .external_lex_state = 12}, + [6842] = {.lex_state = 36, .external_lex_state = 12}, + [6843] = {.lex_state = 158, .external_lex_state = 15}, + [6844] = {.lex_state = 158, .external_lex_state = 11}, + [6845] = {.lex_state = 158, .external_lex_state = 16}, + [6846] = {.lex_state = 158, .external_lex_state = 14}, + [6847] = {.lex_state = 158, .external_lex_state = 11}, + [6848] = {.lex_state = 158, .external_lex_state = 12}, + [6849] = {.lex_state = 55, .external_lex_state = 12}, + [6850] = {.lex_state = 158, .external_lex_state = 15}, + [6851] = {.lex_state = 158, .external_lex_state = 12}, + [6852] = {.lex_state = 158, .external_lex_state = 12}, + [6853] = {.lex_state = 158, .external_lex_state = 12}, + [6854] = {.lex_state = 36, .external_lex_state = 13}, + [6855] = {.lex_state = 36, .external_lex_state = 12}, + [6856] = {.lex_state = 158, .external_lex_state = 15}, + [6857] = {.lex_state = 158, .external_lex_state = 12}, + [6858] = {.lex_state = 158, .external_lex_state = 11}, + [6859] = {.lex_state = 36, .external_lex_state = 13}, + [6860] = {.lex_state = 36, .external_lex_state = 13}, + [6861] = {.lex_state = 158, .external_lex_state = 15}, + [6862] = {.lex_state = 158, .external_lex_state = 12}, + [6863] = {.lex_state = 158, .external_lex_state = 11}, + [6864] = {.lex_state = 34, .external_lex_state = 12}, + [6865] = {.lex_state = 158, .external_lex_state = 12}, + [6866] = {.lex_state = 158, .external_lex_state = 16}, + [6867] = {.lex_state = 158, .external_lex_state = 11}, + [6868] = {.lex_state = 158, .external_lex_state = 12}, + [6869] = {.lex_state = 158, .external_lex_state = 11}, [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}, + [6871] = {.lex_state = 158, .external_lex_state = 11}, + [6872] = {.lex_state = 158, .external_lex_state = 15}, + [6873] = {.lex_state = 35, .external_lex_state = 12}, + [6874] = {.lex_state = 158, .external_lex_state = 11}, + [6875] = {.lex_state = 158, .external_lex_state = 11}, + [6876] = {.lex_state = 158, .external_lex_state = 12}, + [6877] = {.lex_state = 55, .external_lex_state = 12}, + [6878] = {.lex_state = 158, .external_lex_state = 11}, + [6879] = {.lex_state = 36, .external_lex_state = 13}, + [6880] = {.lex_state = 158, .external_lex_state = 15}, + [6881] = {.lex_state = 36, .external_lex_state = 12}, + [6882] = {.lex_state = 158, .external_lex_state = 15}, + [6883] = {.lex_state = 36, .external_lex_state = 13}, + [6884] = {.lex_state = 158, .external_lex_state = 11}, + [6885] = {.lex_state = 158, .external_lex_state = 11}, + [6886] = {.lex_state = 36, .external_lex_state = 12}, + [6887] = {.lex_state = 158, .external_lex_state = 15}, + [6888] = {.lex_state = 158, .external_lex_state = 11}, + [6889] = {.lex_state = 36, .external_lex_state = 12}, + [6890] = {.lex_state = 55, .external_lex_state = 12}, + [6891] = {.lex_state = 158, .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}, + [6893] = {.lex_state = 158, .external_lex_state = 11}, + [6894] = {.lex_state = 158, .external_lex_state = 12}, + [6895] = {.lex_state = 158, .external_lex_state = 11}, + [6896] = {.lex_state = 55, .external_lex_state = 12}, + [6897] = {.lex_state = 158, .external_lex_state = 11}, + [6898] = {.lex_state = 55, .external_lex_state = 12}, + [6899] = {.lex_state = 34, .external_lex_state = 12}, + [6900] = {.lex_state = 158, .external_lex_state = 11}, + [6901] = {.lex_state = 158, .external_lex_state = 14}, + [6902] = {.lex_state = 35, .external_lex_state = 12}, + [6903] = {.lex_state = 158, .external_lex_state = 11}, + [6904] = {.lex_state = 158, .external_lex_state = 11}, + [6905] = {.lex_state = 158, .external_lex_state = 11}, + [6906] = {.lex_state = 55, .external_lex_state = 12}, + [6907] = {.lex_state = 158, .external_lex_state = 12}, + [6908] = {.lex_state = 158, .external_lex_state = 15}, + [6909] = {.lex_state = 158, .external_lex_state = 12}, + [6910] = {.lex_state = 158, .external_lex_state = 12}, + [6911] = {.lex_state = 158, .external_lex_state = 14}, [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}, + [6913] = {.lex_state = 158, .external_lex_state = 15}, + [6914] = {.lex_state = 158, .external_lex_state = 12}, + [6915] = {.lex_state = 158, .external_lex_state = 12}, + [6916] = {.lex_state = 6, .external_lex_state = 12}, + [6917] = {.lex_state = 6, .external_lex_state = 12}, + [6918] = {.lex_state = 158, .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}, + [6920] = {.lex_state = 158, .external_lex_state = 12}, + [6921] = {.lex_state = 6, .external_lex_state = 12}, + [6922] = {.lex_state = 158, .external_lex_state = 12}, + [6923] = {.lex_state = 36, .external_lex_state = 12}, + [6924] = {.lex_state = 36, .external_lex_state = 12}, + [6925] = {.lex_state = 158, .external_lex_state = 14}, + [6926] = {.lex_state = 158, .external_lex_state = 15}, + [6927] = {.lex_state = 158, .external_lex_state = 15}, + [6928] = {.lex_state = 158, .external_lex_state = 16}, + [6929] = {.lex_state = 158, .external_lex_state = 15}, + [6930] = {.lex_state = 158, .external_lex_state = 15}, + [6931] = {.lex_state = 158, .external_lex_state = 12}, + [6932] = {.lex_state = 36, .external_lex_state = 12}, + [6933] = {.lex_state = 36, .external_lex_state = 12}, + [6934] = {.lex_state = 158, .external_lex_state = 12}, + [6935] = {.lex_state = 158, .external_lex_state = 16}, + [6936] = {.lex_state = 158, .external_lex_state = 14}, + [6937] = {.lex_state = 158, .external_lex_state = 14}, + [6938] = {.lex_state = 36, .external_lex_state = 12}, + [6939] = {.lex_state = 34, .external_lex_state = 12}, + [6940] = {.lex_state = 158, .external_lex_state = 12}, + [6941] = {.lex_state = 158, .external_lex_state = 14}, + [6942] = {.lex_state = 158, .external_lex_state = 14}, + [6943] = {.lex_state = 4, .external_lex_state = 12}, + [6944] = {.lex_state = 158, .external_lex_state = 12}, + [6945] = {.lex_state = 158, .external_lex_state = 12}, + [6946] = {.lex_state = 36, .external_lex_state = 12}, + [6947] = {.lex_state = 6, .external_lex_state = 12}, + [6948] = {.lex_state = 6, .external_lex_state = 12}, + [6949] = {.lex_state = 36, .external_lex_state = 12}, + [6950] = {.lex_state = 158, .external_lex_state = 16}, + [6951] = {.lex_state = 34, .external_lex_state = 12}, + [6952] = {.lex_state = 158, .external_lex_state = 12}, + [6953] = {.lex_state = 158, .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}, + [6955] = {.lex_state = 158, .external_lex_state = 12}, + [6956] = {.lex_state = 158, .external_lex_state = 14}, + [6957] = {.lex_state = 158, .external_lex_state = 16}, [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}, + [6959] = {.lex_state = 158, .external_lex_state = 21}, + [6960] = {.lex_state = 36, .external_lex_state = 12}, + [6961] = {.lex_state = 158, .external_lex_state = 15}, + [6962] = {.lex_state = 158, .external_lex_state = 16}, [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}, + [6964] = {.lex_state = 34, .external_lex_state = 12}, + [6965] = {.lex_state = 158, .external_lex_state = 12}, + [6966] = {.lex_state = 158, .external_lex_state = 12}, + [6967] = {.lex_state = 158, .external_lex_state = 14}, + [6968] = {.lex_state = 158, .external_lex_state = 12}, + [6969] = {.lex_state = 158, .external_lex_state = 13}, + [6970] = {.lex_state = 158, .external_lex_state = 14}, + [6971] = {.lex_state = 158, .external_lex_state = 14}, + [6972] = {.lex_state = 158, .external_lex_state = 15}, + [6973] = {.lex_state = 158, .external_lex_state = 12}, + [6974] = {.lex_state = 158, .external_lex_state = 12}, + [6975] = {.lex_state = 158, .external_lex_state = 14}, + [6976] = {.lex_state = 158, .external_lex_state = 14}, + [6977] = {.lex_state = 158, .external_lex_state = 12}, + [6978] = {.lex_state = 158, .external_lex_state = 12}, + [6979] = {.lex_state = 158, .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}, + [6981] = {.lex_state = 36, .external_lex_state = 12}, + [6982] = {.lex_state = 36, .external_lex_state = 12}, + [6983] = {.lex_state = 158, .external_lex_state = 12}, + [6984] = {.lex_state = 158, .external_lex_state = 12}, + [6985] = {.lex_state = 158, .external_lex_state = 12}, + [6986] = {.lex_state = 158, .external_lex_state = 15}, + [6987] = {.lex_state = 6, .external_lex_state = 12}, + [6988] = {.lex_state = 158, .external_lex_state = 16}, + [6989] = {.lex_state = 158, .external_lex_state = 15}, + [6990] = {.lex_state = 158, .external_lex_state = 16}, + [6991] = {.lex_state = 158, .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}, + [6993] = {.lex_state = 158, .external_lex_state = 12}, + [6994] = {.lex_state = 158, .external_lex_state = 12}, + [6995] = {.lex_state = 36, .external_lex_state = 12}, + [6996] = {.lex_state = 158, .external_lex_state = 12}, + [6997] = {.lex_state = 158, .external_lex_state = 12}, + [6998] = {.lex_state = 158, .external_lex_state = 12}, + [6999] = {.lex_state = 158, .external_lex_state = 12}, + [7000] = {.lex_state = 158, .external_lex_state = 12}, + [7001] = {.lex_state = 158, .external_lex_state = 14}, + [7002] = {.lex_state = 158, .external_lex_state = 12}, + [7003] = {.lex_state = 158, .external_lex_state = 12}, + [7004] = {.lex_state = 36, .external_lex_state = 12}, + [7005] = {.lex_state = 158, .external_lex_state = 14}, + [7006] = {.lex_state = 158, .external_lex_state = 12}, + [7007] = {.lex_state = 36, .external_lex_state = 12}, + [7008] = {.lex_state = 158, .external_lex_state = 12}, + [7009] = {.lex_state = 36, .external_lex_state = 12}, + [7010] = {.lex_state = 158, .external_lex_state = 12}, + [7011] = {.lex_state = 36, .external_lex_state = 12}, + [7012] = {.lex_state = 36, .external_lex_state = 12}, + [7013] = {.lex_state = 34, .external_lex_state = 12}, + [7014] = {.lex_state = 158, .external_lex_state = 12}, + [7015] = {.lex_state = 158, .external_lex_state = 12}, + [7016] = {.lex_state = 36, .external_lex_state = 12}, + [7017] = {.lex_state = 36, .external_lex_state = 12}, + [7018] = {.lex_state = 158, .external_lex_state = 12}, + [7019] = {.lex_state = 158, .external_lex_state = 12}, + [7020] = {.lex_state = 158, .external_lex_state = 12}, + [7021] = {.lex_state = 36, .external_lex_state = 12}, + [7022] = {.lex_state = 158, .external_lex_state = 14}, + [7023] = {.lex_state = 158, .external_lex_state = 15}, + [7024] = {.lex_state = 158, .external_lex_state = 16}, + [7025] = {.lex_state = 36, .external_lex_state = 12}, + [7026] = {.lex_state = 158, .external_lex_state = 15}, + [7027] = {.lex_state = 158, .external_lex_state = 15}, + [7028] = {.lex_state = 158, .external_lex_state = 15}, + [7029] = {.lex_state = 158, .external_lex_state = 12}, + [7030] = {.lex_state = 158, .external_lex_state = 14}, + [7031] = {.lex_state = 158, .external_lex_state = 12}, + [7032] = {.lex_state = 158, .external_lex_state = 21}, + [7033] = {.lex_state = 6, .external_lex_state = 12}, + [7034] = {.lex_state = 6, .external_lex_state = 12}, + [7035] = {.lex_state = 158, .external_lex_state = 16}, + [7036] = {.lex_state = 158, .external_lex_state = 12}, + [7037] = {.lex_state = 158, .external_lex_state = 12}, + [7038] = {.lex_state = 158, .external_lex_state = 12}, + [7039] = {.lex_state = 6, .external_lex_state = 12}, + [7040] = {.lex_state = 158, .external_lex_state = 12}, + [7041] = {.lex_state = 158, .external_lex_state = 21}, + [7042] = {.lex_state = 158, .external_lex_state = 14}, + [7043] = {.lex_state = 158, .external_lex_state = 15}, + [7044] = {.lex_state = 158, .external_lex_state = 12}, + [7045] = {.lex_state = 158, .external_lex_state = 15}, + [7046] = {.lex_state = 158, .external_lex_state = 14}, + [7047] = {.lex_state = 36, .external_lex_state = 12}, + [7048] = {.lex_state = 158, .external_lex_state = 15}, + [7049] = {.lex_state = 158, .external_lex_state = 12}, + [7050] = {.lex_state = 6, .external_lex_state = 12}, + [7051] = {.lex_state = 158, .external_lex_state = 16}, + [7052] = {.lex_state = 158, .external_lex_state = 12}, + [7053] = {.lex_state = 158, .external_lex_state = 12}, + [7054] = {.lex_state = 158, .external_lex_state = 12}, + [7055] = {.lex_state = 34, .external_lex_state = 12}, + [7056] = {.lex_state = 158, .external_lex_state = 12}, + [7057] = {.lex_state = 158, .external_lex_state = 16}, + [7058] = {.lex_state = 6, .external_lex_state = 12}, + [7059] = {.lex_state = 158, .external_lex_state = 14}, + [7060] = {.lex_state = 158, .external_lex_state = 12}, + [7061] = {.lex_state = 158, .external_lex_state = 12}, + [7062] = {.lex_state = 158, .external_lex_state = 12}, + [7063] = {.lex_state = 158, .external_lex_state = 12}, + [7064] = {.lex_state = 36, .external_lex_state = 12}, + [7065] = {.lex_state = 158, .external_lex_state = 14}, + [7066] = {.lex_state = 158, .external_lex_state = 12}, + [7067] = {.lex_state = 36, .external_lex_state = 12}, + [7068] = {.lex_state = 158, .external_lex_state = 12}, + [7069] = {.lex_state = 36, .external_lex_state = 12}, + [7070] = {.lex_state = 158, .external_lex_state = 12}, + [7071] = {.lex_state = 158, .external_lex_state = 15}, + [7072] = {.lex_state = 6, .external_lex_state = 12}, + [7073] = {.lex_state = 158, .external_lex_state = 21}, + [7074] = {.lex_state = 158, .external_lex_state = 12}, + [7075] = {.lex_state = 158, .external_lex_state = 15}, + [7076] = {.lex_state = 36, .external_lex_state = 12}, + [7077] = {.lex_state = 158, .external_lex_state = 15}, + [7078] = {.lex_state = 158, .external_lex_state = 15}, + [7079] = {.lex_state = 6, .external_lex_state = 12}, + [7080] = {.lex_state = 158, .external_lex_state = 15}, + [7081] = {.lex_state = 158, .external_lex_state = 12}, + [7082] = {.lex_state = 158, .external_lex_state = 14}, + [7083] = {.lex_state = 158, .external_lex_state = 15}, + [7084] = {.lex_state = 36, .external_lex_state = 12}, + [7085] = {.lex_state = 158, .external_lex_state = 15}, + [7086] = {.lex_state = 36, .external_lex_state = 12}, + [7087] = {.lex_state = 158, .external_lex_state = 12}, + [7088] = {.lex_state = 158, .external_lex_state = 16}, + [7089] = {.lex_state = 36, .external_lex_state = 12}, + [7090] = {.lex_state = 158, .external_lex_state = 12}, + [7091] = {.lex_state = 36, .external_lex_state = 12}, + [7092] = {.lex_state = 158, .external_lex_state = 16}, + [7093] = {.lex_state = 158, .external_lex_state = 14}, + [7094] = {.lex_state = 158, .external_lex_state = 14}, + [7095] = {.lex_state = 6, .external_lex_state = 12}, + [7096] = {.lex_state = 158, .external_lex_state = 12}, + [7097] = {.lex_state = 158, .external_lex_state = 21}, + [7098] = {.lex_state = 36, .external_lex_state = 12}, + [7099] = {.lex_state = 158, .external_lex_state = 14}, + [7100] = {.lex_state = 158, .external_lex_state = 13}, + [7101] = {.lex_state = 158, .external_lex_state = 12}, + [7102] = {.lex_state = 158, .external_lex_state = 15}, + [7103] = {.lex_state = 158, .external_lex_state = 12}, + [7104] = {.lex_state = 158, .external_lex_state = 14}, + [7105] = {.lex_state = 36, .external_lex_state = 12}, + [7106] = {.lex_state = 158, .external_lex_state = 12}, + [7107] = {.lex_state = 34, .external_lex_state = 12}, + [7108] = {.lex_state = 158, .external_lex_state = 12}, + [7109] = {.lex_state = 36, .external_lex_state = 12}, + [7110] = {.lex_state = 158, .external_lex_state = 12}, + [7111] = {.lex_state = 158, .external_lex_state = 12}, + [7112] = {.lex_state = 36, .external_lex_state = 12}, + [7113] = {.lex_state = 158, .external_lex_state = 14}, + [7114] = {.lex_state = 6, .external_lex_state = 12}, + [7115] = {.lex_state = 158, .external_lex_state = 12}, + [7116] = {.lex_state = 36, .external_lex_state = 12}, + [7117] = {.lex_state = 158, .external_lex_state = 12}, + [7118] = {.lex_state = 158, .external_lex_state = 15}, + [7119] = {.lex_state = 158, .external_lex_state = 12}, + [7120] = {.lex_state = 6, .external_lex_state = 12}, + [7121] = {.lex_state = 158, .external_lex_state = 12}, + [7122] = {.lex_state = 36, .external_lex_state = 12}, + [7123] = {.lex_state = 158, .external_lex_state = 12}, + [7124] = {.lex_state = 36, .external_lex_state = 12}, + [7125] = {.lex_state = 36, .external_lex_state = 12}, + [7126] = {.lex_state = 158, .external_lex_state = 12}, + [7127] = {.lex_state = 158, .external_lex_state = 12}, + [7128] = {.lex_state = 158, .external_lex_state = 12}, + [7129] = {.lex_state = 36, .external_lex_state = 12}, + [7130] = {.lex_state = 158, .external_lex_state = 15}, + [7131] = {.lex_state = 158, .external_lex_state = 15}, + [7132] = {.lex_state = 36, .external_lex_state = 12}, + [7133] = {.lex_state = 158, .external_lex_state = 15}, + [7134] = {.lex_state = 158, .external_lex_state = 16}, + [7135] = {.lex_state = 158, .external_lex_state = 16}, + [7136] = {.lex_state = 36, .external_lex_state = 12}, + [7137] = {.lex_state = 36, .external_lex_state = 12}, + [7138] = {.lex_state = 158, .external_lex_state = 16}, + [7139] = {.lex_state = 158, .external_lex_state = 14}, + [7140] = {.lex_state = 36, .external_lex_state = 12}, + [7141] = {.lex_state = 158, .external_lex_state = 14}, + [7142] = {.lex_state = 158, .external_lex_state = 15}, + [7143] = {.lex_state = 36, .external_lex_state = 12}, + [7144] = {.lex_state = 158, .external_lex_state = 14}, + [7145] = {.lex_state = 158, .external_lex_state = 12}, + [7146] = {.lex_state = 158, .external_lex_state = 12}, + [7147] = {.lex_state = 158, .external_lex_state = 16}, + [7148] = {.lex_state = 36, .external_lex_state = 12}, + [7149] = {.lex_state = 158, .external_lex_state = 12}, + [7150] = {.lex_state = 158, .external_lex_state = 15}, + [7151] = {.lex_state = 158, .external_lex_state = 13}, + [7152] = {.lex_state = 36, .external_lex_state = 12}, + [7153] = {.lex_state = 158, .external_lex_state = 14}, + [7154] = {.lex_state = 158, .external_lex_state = 16}, + [7155] = {.lex_state = 158, .external_lex_state = 14}, + [7156] = {.lex_state = 158, .external_lex_state = 21}, + [7157] = {.lex_state = 158, .external_lex_state = 15}, + [7158] = {.lex_state = 158, .external_lex_state = 21}, + [7159] = {.lex_state = 158, .external_lex_state = 12}, + [7160] = {.lex_state = 158, .external_lex_state = 12}, + [7161] = {.lex_state = 6, .external_lex_state = 12}, + [7162] = {.lex_state = 158, .external_lex_state = 12}, + [7163] = {.lex_state = 6, .external_lex_state = 12}, + [7164] = {.lex_state = 158, .external_lex_state = 12}, + [7165] = {.lex_state = 158, .external_lex_state = 15}, + [7166] = {.lex_state = 158, .external_lex_state = 12}, + [7167] = {.lex_state = 158, .external_lex_state = 15}, + [7168] = {.lex_state = 36, .external_lex_state = 12}, + [7169] = {.lex_state = 36, .external_lex_state = 12}, + [7170] = {.lex_state = 158, .external_lex_state = 12}, + [7171] = {.lex_state = 158, .external_lex_state = 14}, + [7172] = {.lex_state = 6, .external_lex_state = 12}, + [7173] = {.lex_state = 158, .external_lex_state = 14}, + [7174] = {.lex_state = 36, .external_lex_state = 12}, + [7175] = {.lex_state = 158, .external_lex_state = 12}, + [7176] = {.lex_state = 158, .external_lex_state = 21}, + [7177] = {.lex_state = 158, .external_lex_state = 12}, + [7178] = {.lex_state = 158, .external_lex_state = 12}, + [7179] = {.lex_state = 158, .external_lex_state = 12}, + [7180] = {.lex_state = 36, .external_lex_state = 12}, + [7181] = {.lex_state = 34, .external_lex_state = 12}, + [7182] = {.lex_state = 34, .external_lex_state = 12}, + [7183] = {.lex_state = 158, .external_lex_state = 15}, + [7184] = {.lex_state = 158, .external_lex_state = 15}, + [7185] = {.lex_state = 158, .external_lex_state = 12}, + [7186] = {.lex_state = 6, .external_lex_state = 12}, + [7187] = {.lex_state = 158, .external_lex_state = 21}, + [7188] = {.lex_state = 158, .external_lex_state = 12}, + [7189] = {.lex_state = 158, .external_lex_state = 21}, + [7190] = {.lex_state = 158, .external_lex_state = 12}, + [7191] = {.lex_state = 158, .external_lex_state = 12}, + [7192] = {.lex_state = 6, .external_lex_state = 12}, + [7193] = {.lex_state = 36, .external_lex_state = 12}, + [7194] = {.lex_state = 158, .external_lex_state = 12}, + [7195] = {.lex_state = 158, .external_lex_state = 15}, + [7196] = {.lex_state = 158, .external_lex_state = 12}, + [7197] = {.lex_state = 158, .external_lex_state = 21}, + [7198] = {.lex_state = 158, .external_lex_state = 21}, + [7199] = {.lex_state = 158, .external_lex_state = 14}, + [7200] = {.lex_state = 158, .external_lex_state = 15}, + [7201] = {.lex_state = 36, .external_lex_state = 12}, + [7202] = {.lex_state = 36, .external_lex_state = 12}, + [7203] = {.lex_state = 158, .external_lex_state = 16}, + [7204] = {.lex_state = 158, .external_lex_state = 12}, + [7205] = {.lex_state = 158, .external_lex_state = 12}, + [7206] = {.lex_state = 158, .external_lex_state = 15}, + [7207] = {.lex_state = 36, .external_lex_state = 12}, + [7208] = {.lex_state = 158, .external_lex_state = 13}, + [7209] = {.lex_state = 36, .external_lex_state = 12}, + [7210] = {.lex_state = 158, .external_lex_state = 16}, + [7211] = {.lex_state = 158, .external_lex_state = 15}, + [7212] = {.lex_state = 158, .external_lex_state = 12}, + [7213] = {.lex_state = 158, .external_lex_state = 12}, + [7214] = {.lex_state = 36, .external_lex_state = 12}, + [7215] = {.lex_state = 36, .external_lex_state = 12}, + [7216] = {.lex_state = 158, .external_lex_state = 21}, + [7217] = {.lex_state = 158, .external_lex_state = 12}, + [7218] = {.lex_state = 158, .external_lex_state = 21}, + [7219] = {.lex_state = 36, .external_lex_state = 12}, + [7220] = {.lex_state = 158, .external_lex_state = 14}, + [7221] = {.lex_state = 158, .external_lex_state = 13}, + [7222] = {.lex_state = 158, .external_lex_state = 14}, + [7223] = {.lex_state = 36, .external_lex_state = 12}, + [7224] = {.lex_state = 158, .external_lex_state = 16}, + [7225] = {.lex_state = 158, .external_lex_state = 15}, + [7226] = {.lex_state = 158, .external_lex_state = 12}, + [7227] = {.lex_state = 36, .external_lex_state = 12}, + [7228] = {.lex_state = 158, .external_lex_state = 12}, + [7229] = {.lex_state = 36, .external_lex_state = 12}, + [7230] = {.lex_state = 6, .external_lex_state = 12}, + [7231] = {.lex_state = 158, .external_lex_state = 12}, + [7232] = {.lex_state = 158, .external_lex_state = 16}, + [7233] = {.lex_state = 34, .external_lex_state = 12}, + [7234] = {.lex_state = 36, .external_lex_state = 12}, + [7235] = {.lex_state = 158, .external_lex_state = 12}, + [7236] = {.lex_state = 36, .external_lex_state = 12}, + [7237] = {.lex_state = 158, .external_lex_state = 15}, + [7238] = {.lex_state = 34, .external_lex_state = 12}, + [7239] = {.lex_state = 158, .external_lex_state = 16}, + [7240] = {.lex_state = 158, .external_lex_state = 14}, + [7241] = {.lex_state = 158, .external_lex_state = 15}, + [7242] = {.lex_state = 158, .external_lex_state = 16}, + [7243] = {.lex_state = 36, .external_lex_state = 12}, + [7244] = {.lex_state = 6, .external_lex_state = 12}, + [7245] = {.lex_state = 36, .external_lex_state = 12}, + [7246] = {.lex_state = 158, .external_lex_state = 15}, + [7247] = {.lex_state = 158, .external_lex_state = 12}, + [7248] = {.lex_state = 36, .external_lex_state = 12}, + [7249] = {.lex_state = 36, .external_lex_state = 12}, + [7250] = {.lex_state = 158, .external_lex_state = 15}, + [7251] = {.lex_state = 6, .external_lex_state = 12}, + [7252] = {.lex_state = 158, .external_lex_state = 12}, + [7253] = {.lex_state = 158, .external_lex_state = 12}, + [7254] = {.lex_state = 158, .external_lex_state = 12}, + [7255] = {.lex_state = 158, .external_lex_state = 15}, + [7256] = {.lex_state = 6, .external_lex_state = 12}, + [7257] = {.lex_state = 158, .external_lex_state = 12}, + [7258] = {.lex_state = 158, .external_lex_state = 12}, + [7259] = {.lex_state = 36, .external_lex_state = 12}, + [7260] = {.lex_state = 158, .external_lex_state = 12}, + [7261] = {.lex_state = 158, .external_lex_state = 12}, + [7262] = {.lex_state = 36, .external_lex_state = 12}, + [7263] = {.lex_state = 158, .external_lex_state = 15}, + [7264] = {.lex_state = 158, .external_lex_state = 14}, + [7265] = {.lex_state = 158, .external_lex_state = 12}, + [7266] = {.lex_state = 158, .external_lex_state = 12}, + [7267] = {.lex_state = 158, .external_lex_state = 12}, + [7268] = {.lex_state = 158, .external_lex_state = 14}, + [7269] = {.lex_state = 158, .external_lex_state = 12}, + [7270] = {.lex_state = 36, .external_lex_state = 12}, + [7271] = {.lex_state = 158, .external_lex_state = 12}, + [7272] = {.lex_state = 158, .external_lex_state = 12}, + [7273] = {.lex_state = 36, .external_lex_state = 12}, + [7274] = {.lex_state = 158, .external_lex_state = 12}, + [7275] = {.lex_state = 36, .external_lex_state = 12}, + [7276] = {.lex_state = 158, .external_lex_state = 16}, + [7277] = {.lex_state = 6, .external_lex_state = 12}, + [7278] = {.lex_state = 158, .external_lex_state = 12}, + [7279] = {.lex_state = 158, .external_lex_state = 12}, + [7280] = {.lex_state = 36, .external_lex_state = 12}, + [7281] = {.lex_state = 36, .external_lex_state = 12}, + [7282] = {.lex_state = 36, .external_lex_state = 12}, + [7283] = {.lex_state = 158, .external_lex_state = 15}, + [7284] = {.lex_state = 6, .external_lex_state = 12}, + [7285] = {.lex_state = 36, .external_lex_state = 12}, + [7286] = {.lex_state = 158, .external_lex_state = 12}, + [7287] = {.lex_state = 36, .external_lex_state = 12}, + [7288] = {.lex_state = 158, .external_lex_state = 12}, + [7289] = {.lex_state = 158, .external_lex_state = 12}, + [7290] = {.lex_state = 158, .external_lex_state = 12}, + [7291] = {.lex_state = 158, .external_lex_state = 15}, + [7292] = {.lex_state = 36, .external_lex_state = 12}, + [7293] = {.lex_state = 36, .external_lex_state = 12}, + [7294] = {.lex_state = 6, .external_lex_state = 12}, + [7295] = {.lex_state = 36, .external_lex_state = 12}, + [7296] = {.lex_state = 36, .external_lex_state = 12}, + [7297] = {.lex_state = 158, .external_lex_state = 12}, + [7298] = {.lex_state = 158, .external_lex_state = 13}, + [7299] = {.lex_state = 158, .external_lex_state = 12}, + [7300] = {.lex_state = 36, .external_lex_state = 12}, + [7301] = {.lex_state = 36, .external_lex_state = 12}, + [7302] = {.lex_state = 158, .external_lex_state = 12}, + [7303] = {.lex_state = 158, .external_lex_state = 12}, + [7304] = {.lex_state = 158, .external_lex_state = 12}, + [7305] = {.lex_state = 36, .external_lex_state = 12}, + [7306] = {.lex_state = 36, .external_lex_state = 12}, + [7307] = {.lex_state = 36, .external_lex_state = 12}, + [7308] = {.lex_state = 158, .external_lex_state = 12}, + [7309] = {.lex_state = 158, .external_lex_state = 12}, + [7310] = {.lex_state = 158, .external_lex_state = 15}, + [7311] = {.lex_state = 158, .external_lex_state = 12}, + [7312] = {.lex_state = 158, .external_lex_state = 16}, + [7313] = {.lex_state = 158, .external_lex_state = 14}, + [7314] = {.lex_state = 158, .external_lex_state = 16}, + [7315] = {.lex_state = 6, .external_lex_state = 12}, + [7316] = {.lex_state = 6, .external_lex_state = 12}, + [7317] = {.lex_state = 158, .external_lex_state = 12}, + [7318] = {.lex_state = 36, .external_lex_state = 12}, + [7319] = {.lex_state = 158, .external_lex_state = 12}, + [7320] = {.lex_state = 158, .external_lex_state = 11}, + [7321] = {.lex_state = 158, .external_lex_state = 12}, + [7322] = {.lex_state = 158, .external_lex_state = 12}, + [7323] = {.lex_state = 36, .external_lex_state = 12}, + [7324] = {.lex_state = 158, .external_lex_state = 12}, + [7325] = {.lex_state = 6, .external_lex_state = 12}, + [7326] = {.lex_state = 36, .external_lex_state = 12}, + [7327] = {.lex_state = 36, .external_lex_state = 12}, + [7328] = {.lex_state = 158, .external_lex_state = 12}, + [7329] = {.lex_state = 36, .external_lex_state = 12}, + [7330] = {.lex_state = 158, .external_lex_state = 12}, + [7331] = {.lex_state = 158, .external_lex_state = 13}, + [7332] = {.lex_state = 34, .external_lex_state = 12}, + [7333] = {.lex_state = 6, .external_lex_state = 12}, + [7334] = {.lex_state = 158, .external_lex_state = 12}, + [7335] = {.lex_state = 6, .external_lex_state = 12}, + [7336] = {.lex_state = 6, .external_lex_state = 12}, + [7337] = {.lex_state = 158, .external_lex_state = 12}, + [7338] = {.lex_state = 158, .external_lex_state = 12}, + [7339] = {.lex_state = 158, .external_lex_state = 12}, + [7340] = {.lex_state = 158, .external_lex_state = 13}, + [7341] = {.lex_state = 158, .external_lex_state = 12}, + [7342] = {.lex_state = 158, .external_lex_state = 15}, + [7343] = {.lex_state = 158, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -24062,8 +24676,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_by] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_except] = ACTIONS(1), @@ -24076,6 +24688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(1), [anon_sym_nonlocal] = ACTIONS(1), [anon_sym_exec] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), @@ -24200,6 +24813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1), [anon_sym_readonly] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_by] = ACTIONS(1), [sym__newline] = ACTIONS(1), [sym__indent] = ACTIONS(1), [sym__dedent] = ACTIONS(1), @@ -24209,88 +24823,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [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), + [sym_module] = STATE(7279), + [sym__statement] = STATE(254), + [sym__simple_statements] = STATE(254), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_if_statement] = STATE(254), + [sym_match_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_try_statement] = STATE(254), + [sym_with_statement] = STATE(254), + [sym_function_definition] = STATE(254), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_class_definition] = STATE(254), + [sym_decorated_definition] = STATE(254), + [sym_decorator] = STATE(4378), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_run_directive] = STATE(250), + [sym_property_definition] = STATE(254), + [sym_include_statement] = STATE(6514), + [sym_DEF_statement] = STATE(254), + [sym_IF_statement] = STATE(254), + [sym_cdef_statement] = STATE(254), + [sym_ctypedef_statement] = STATE(254), + [sym_storageclass] = STATE(5039), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(254), + [aux_sym_class_definition_repeat1] = STATE(5039), + [aux_sym_decorated_definition_repeat1] = STATE(4378), + [aux_sym_integer_repeat4] = STATE(2542), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -24363,87 +24977,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [2] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2064), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24515,87 +25129,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [3] = { - [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__statement] = STATE(252), + [sym__simple_statements] = STATE(252), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(252), + [sym_match_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_try_statement] = STATE(252), + [sym_with_statement] = STATE(252), + [sym_function_definition] = STATE(252), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(252), + [sym_decorated_definition] = STATE(252), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(5185), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(252), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(252), + [sym_IF_statement] = STATE(252), + [sym_cdef_statement] = STATE(252), + [sym_ctypedef_statement] = STATE(252), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(252), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24667,87 +25281,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [4] = { - [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__statement] = STATE(252), + [sym__simple_statements] = STATE(252), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(252), + [sym_match_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_try_statement] = STATE(252), + [sym_with_statement] = STATE(252), + [sym_function_definition] = STATE(252), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(252), + [sym_decorated_definition] = STATE(252), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(5100), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(252), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(252), + [sym_IF_statement] = STATE(252), + [sym_cdef_statement] = STATE(252), + [sym_ctypedef_statement] = STATE(252), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(252), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24815,91 +25429,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(151), + [sym__dedent] = ACTIONS(149), [sym_string_start] = ACTIONS(117), }, [5] = { - [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__statement] = STATE(248), + [sym__simple_statements] = STATE(248), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(248), + [sym_match_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_with_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(248), + [sym_decorated_definition] = STATE(248), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(851), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(248), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(248), + [sym_IF_statement] = STATE(248), + [sym_cdef_statement] = STATE(248), + [sym_ctypedef_statement] = STATE(248), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(248), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24967,91 +25581,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(117), }, [6] = { - [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__statement] = STATE(248), + [sym__simple_statements] = STATE(248), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(248), + [sym_match_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_with_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(248), + [sym_decorated_definition] = STATE(248), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1068), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(248), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(248), + [sym_IF_statement] = STATE(248), + [sym_cdef_statement] = STATE(248), + [sym_ctypedef_statement] = STATE(248), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(248), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25119,91 +25733,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(117), }, [7] = { - [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__statement] = STATE(248), + [sym__simple_statements] = STATE(248), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(248), + [sym_match_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_with_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(248), + [sym_decorated_definition] = STATE(248), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1074), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(248), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(248), + [sym_IF_statement] = STATE(248), + [sym_cdef_statement] = STATE(248), + [sym_ctypedef_statement] = STATE(248), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(248), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25271,91 +25885,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(117), }, [8] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2139), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25423,91 +26037,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [9] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1828), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25575,91 +26189,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [10] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2162), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25727,91 +26341,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [11] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(886), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25879,91 +26493,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [12] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1150), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26031,91 +26645,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [13] = { - [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__statement] = STATE(248), + [sym__simple_statements] = STATE(248), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(248), + [sym_match_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_with_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(248), + [sym_decorated_definition] = STATE(248), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1054), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(248), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(248), + [sym_IF_statement] = STATE(248), + [sym_cdef_statement] = STATE(248), + [sym_ctypedef_statement] = STATE(248), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(248), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26183,91 +26797,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(117), }, [14] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2110), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26335,91 +26949,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [15] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2181), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26487,91 +27101,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [16] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1382), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26639,91 +27253,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [17] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1386), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26791,91 +27405,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [18] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1388), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26943,91 +27557,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [19] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1421), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27095,91 +27709,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [20] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1447), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27247,91 +27861,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [21] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1465), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27399,91 +28013,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [22] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2080), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27551,91 +28165,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [23] = { - [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__statement] = STATE(251), + [sym__simple_statements] = STATE(251), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(251), + [sym_match_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_try_statement] = STATE(251), + [sym_with_statement] = STATE(251), + [sym_function_definition] = STATE(251), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(251), + [sym_decorated_definition] = STATE(251), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(973), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(251), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(251), + [sym_IF_statement] = STATE(251), + [sym_cdef_statement] = STATE(251), + [sym_ctypedef_statement] = STATE(251), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(251), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27703,91 +28317,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(155), [sym_string_start] = ACTIONS(117), }, [24] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2086), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27859,87 +28473,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [25] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2089), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28007,91 +28621,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(157), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [26] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1490), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28159,91 +28773,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [27] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1492), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28311,91 +28925,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [28] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1494), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28463,91 +29077,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [29] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1499), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28615,91 +29229,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [30] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1506), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28767,91 +29381,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [31] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1531), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28919,91 +29533,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [32] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1533), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29071,91 +29685,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [33] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1534), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29223,91 +29837,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [34] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1537), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29375,91 +29989,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [35] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2101), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29527,91 +30141,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [36] = { - [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__statement] = STATE(251), + [sym__simple_statements] = STATE(251), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(251), + [sym_match_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_try_statement] = STATE(251), + [sym_with_statement] = STATE(251), + [sym_function_definition] = STATE(251), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(251), + [sym_decorated_definition] = STATE(251), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(958), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(251), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(251), + [sym_IF_statement] = STATE(251), + [sym_cdef_statement] = STATE(251), + [sym_ctypedef_statement] = STATE(251), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(251), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29683,87 +30297,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [37] = { - [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__statement] = STATE(256), + [sym__simple_statements] = STATE(256), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(256), + [sym_match_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_try_statement] = STATE(256), + [sym_with_statement] = STATE(256), + [sym_function_definition] = STATE(256), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(256), + [sym_decorated_definition] = STATE(256), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(962), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(256), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(256), + [sym_IF_statement] = STATE(256), + [sym_cdef_statement] = STATE(256), + [sym_ctypedef_statement] = STATE(256), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(256), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29831,91 +30445,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(153), + [sym__dedent] = ACTIONS(157), [sym_string_start] = ACTIONS(117), }, [38] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2103), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29987,87 +30601,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [39] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1540), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30135,91 +30749,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [40] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1545), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30287,91 +30901,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(157), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [41] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2105), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30439,91 +31053,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(159), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [42] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1548), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30591,91 +31205,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [43] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1552), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30743,91 +31357,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [44] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1667), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30895,91 +31509,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [45] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1671), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31047,91 +31661,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [46] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1673), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31199,91 +31813,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [47] = { - [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__statement] = STATE(248), + [sym__simple_statements] = STATE(248), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(248), + [sym_match_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_with_statement] = STATE(248), + [sym_function_definition] = STATE(248), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(248), + [sym_decorated_definition] = STATE(248), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1095), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(248), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(248), + [sym_IF_statement] = STATE(248), + [sym_cdef_statement] = STATE(248), + [sym_ctypedef_statement] = STATE(248), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(248), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31351,91 +31965,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(117), }, [48] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6859), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31503,91 +32117,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [49] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2115), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31655,91 +32269,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [50] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2117), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31807,91 +32421,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [51] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1681), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31963,87 +32577,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [52] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1683), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32111,91 +32725,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [53] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1684), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32263,91 +32877,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [54] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1078), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32419,87 +33033,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [55] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1689), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32567,91 +33181,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [56] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1690), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32719,91 +33333,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [57] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1707), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32871,91 +33485,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [58] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1713), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33023,91 +33637,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [59] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6722), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33175,91 +33789,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [60] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6879), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33327,91 +33941,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [61] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2121), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33479,91 +34093,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [62] = { - [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__statement] = STATE(251), + [sym__simple_statements] = STATE(251), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(251), + [sym_match_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_try_statement] = STATE(251), + [sym_with_statement] = STATE(251), + [sym_function_definition] = STATE(251), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(251), + [sym_decorated_definition] = STATE(251), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(978), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(251), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(251), + [sym_IF_statement] = STATE(251), + [sym_cdef_statement] = STATE(251), + [sym_ctypedef_statement] = STATE(251), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(251), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33635,87 +34249,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [63] = { - [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__statement] = STATE(256), + [sym__simple_statements] = STATE(256), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(256), + [sym_match_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_try_statement] = STATE(256), + [sym_with_statement] = STATE(256), + [sym_function_definition] = STATE(256), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(256), + [sym_decorated_definition] = STATE(256), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(982), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(256), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(256), + [sym_IF_statement] = STATE(256), + [sym_cdef_statement] = STATE(256), + [sym_ctypedef_statement] = STATE(256), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(256), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33783,91 +34397,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(157), [sym_string_start] = ACTIONS(117), }, [64] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1716), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33935,91 +34549,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [65] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1717), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34087,91 +34701,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [66] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1719), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34243,87 +34857,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [67] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1720), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34391,91 +35005,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [68] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1722), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34543,91 +35157,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(157), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [69] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1733), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34695,91 +35309,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(159), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [70] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1735), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34847,91 +35461,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [71] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1736), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34999,91 +35613,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [72] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6661), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35151,91 +35765,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [73] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6683), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35303,91 +35917,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [74] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1740), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35455,91 +36069,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [75] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1742), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35607,91 +36221,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [76] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1775), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35759,91 +36373,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [77] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1776), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35911,91 +36525,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [78] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1780), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36063,91 +36677,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [79] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(6840), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36215,91 +36829,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [80] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1781), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36367,91 +36981,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [81] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1785), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36519,91 +37133,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [82] = { - [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__statement] = STATE(247), + [sym__simple_statements] = STATE(247), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(247), + [sym_match_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_try_statement] = STATE(247), + [sym_with_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(247), + [sym_decorated_definition] = STATE(247), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1786), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(247), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(247), + [sym_IF_statement] = STATE(247), + [sym_cdef_statement] = STATE(247), + [sym_ctypedef_statement] = STATE(247), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(247), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36671,91 +37285,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(117), }, [83] = { - [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__statement] = STATE(257), + [sym__simple_statements] = STATE(257), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(257), + [sym_match_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_try_statement] = STATE(257), + [sym_with_statement] = STATE(257), + [sym_function_definition] = STATE(257), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(257), + [sym_decorated_definition] = STATE(257), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(869), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(257), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(257), + [sym_IF_statement] = STATE(257), + [sym_cdef_statement] = STATE(257), + [sym_ctypedef_statement] = STATE(257), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(257), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36823,91 +37437,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(161), [sym_string_start] = ACTIONS(117), }, [84] = { - [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__statement] = STATE(257), + [sym__simple_statements] = STATE(257), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(257), + [sym_match_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_try_statement] = STATE(257), + [sym_with_statement] = STATE(257), + [sym_function_definition] = STATE(257), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(257), + [sym_decorated_definition] = STATE(257), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1070), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(257), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(257), + [sym_IF_statement] = STATE(257), + [sym_cdef_statement] = STATE(257), + [sym_ctypedef_statement] = STATE(257), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(257), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36975,91 +37589,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(161), [sym_string_start] = ACTIONS(117), }, [85] = { - [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__statement] = STATE(257), + [sym__simple_statements] = STATE(257), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(257), + [sym_match_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_try_statement] = STATE(257), + [sym_with_statement] = STATE(257), + [sym_function_definition] = STATE(257), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(257), + [sym_decorated_definition] = STATE(257), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1071), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(257), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(257), + [sym_IF_statement] = STATE(257), + [sym_cdef_statement] = STATE(257), + [sym_ctypedef_statement] = STATE(257), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(257), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37127,91 +37741,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(161), [sym_string_start] = ACTIONS(117), }, [86] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2157), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37279,91 +37893,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [87] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1842), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37431,91 +38045,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [88] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2159), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37583,91 +38197,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [89] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(876), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37735,91 +38349,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [90] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4075), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37887,91 +38501,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [91] = { - [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__statement] = STATE(257), + [sym__simple_statements] = STATE(257), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(257), + [sym_match_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_try_statement] = STATE(257), + [sym_with_statement] = STATE(257), + [sym_function_definition] = STATE(257), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(257), + [sym_decorated_definition] = STATE(257), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1123), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(257), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(257), + [sym_IF_statement] = STATE(257), + [sym_cdef_statement] = STATE(257), + [sym_ctypedef_statement] = STATE(257), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(257), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38043,87 +38657,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [92] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2171), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38191,91 +38805,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [93] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38343,91 +38957,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [94] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1858), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38495,91 +39109,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [95] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1860), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38647,91 +39261,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [96] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1862), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38803,87 +39417,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [97] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4087), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38951,91 +39565,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [98] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3975), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39103,91 +39717,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [99] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1948), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39255,91 +39869,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [100] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2195), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39407,91 +40021,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [101] = { - [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__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(956), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39563,87 +40177,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [102] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2201), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39711,91 +40325,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [103] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2204), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39867,87 +40481,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [104] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2009), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40019,87 +40633,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [105] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2013), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40167,91 +40781,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [106] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2016), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40319,91 +40933,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [107] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4095), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40471,91 +41085,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [108] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3977), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40623,91 +41237,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [109] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1143), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40775,91 +41389,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(165), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [110] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40927,91 +41541,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [111] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1146), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41079,91 +41693,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [112] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1152), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41231,91 +41845,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [113] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2076), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41383,91 +41997,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [114] = { - [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__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1050), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41539,87 +42153,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [115] = { - [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__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(957), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41687,91 +42301,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(165), [sym_string_start] = ACTIONS(117), }, [116] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41843,87 +42457,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [117] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1154), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41991,91 +42605,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [118] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1158), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42143,91 +42757,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [119] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2074), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42295,91 +42909,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [120] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4105), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42447,91 +43061,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [121] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3981), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42599,91 +43213,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [122] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1174), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42751,91 +43365,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [123] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1176), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42903,91 +43517,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [124] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43055,91 +43669,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(165), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [125] = { - [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__statement] = STATE(257), + [sym__simple_statements] = STATE(257), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(257), + [sym_match_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_try_statement] = STATE(257), + [sym_with_statement] = STATE(257), + [sym_function_definition] = STATE(257), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(257), + [sym_decorated_definition] = STATE(257), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1061), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(257), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(257), + [sym_IF_statement] = STATE(257), + [sym_cdef_statement] = STATE(257), + [sym_ctypedef_statement] = STATE(257), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(257), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43207,91 +43821,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(167), + [sym__dedent] = ACTIONS(161), [sym_string_start] = ACTIONS(117), }, [126] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2189), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43359,91 +43973,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [127] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(2205), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43511,91 +44125,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [128] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1183), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43663,91 +44277,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [129] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1185), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43819,87 +44433,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [130] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1186), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43971,87 +44585,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [131] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1133), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44119,91 +44733,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [132] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4112), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44271,91 +44885,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [133] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3983), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44423,91 +45037,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [134] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1203), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44575,91 +45189,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [135] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1207), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44727,91 +45341,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [136] = { - [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__statement] = STATE(260), + [sym__simple_statements] = STATE(260), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(260), + [sym_decorated_definition] = STATE(260), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(968), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(260), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(260), + [sym_IF_statement] = STATE(260), + [sym_cdef_statement] = STATE(260), + [sym_ctypedef_statement] = STATE(260), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(260), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44879,91 +45493,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(163), [sym_string_start] = ACTIONS(117), }, [137] = { - [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__statement] = STATE(261), + [sym__simple_statements] = STATE(261), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(261), + [sym_decorated_definition] = STATE(261), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(971), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(261), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(261), + [sym_IF_statement] = STATE(261), + [sym_cdef_statement] = STATE(261), + [sym_ctypedef_statement] = STATE(261), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(261), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45031,91 +45645,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(165), [sym_string_start] = ACTIONS(117), }, [138] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1210), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45183,91 +45797,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [139] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1212), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45335,91 +45949,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [140] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4114), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45487,91 +46101,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [141] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3933), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45639,91 +46253,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [142] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1223), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45791,91 +46405,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(151), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [143] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1225), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45947,87 +46561,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [144] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1226), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46095,91 +46709,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [145] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1229), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46247,91 +46861,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [146] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4117), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46399,91 +47013,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(161), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [147] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1235), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46551,91 +47165,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [148] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1236), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46703,91 +47317,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(165), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [149] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1238), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46855,91 +47469,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(167), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [150] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4004), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47007,91 +47621,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [151] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1240), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47159,91 +47773,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [152] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4050), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47311,91 +47925,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [153] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4037), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47463,91 +48077,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [154] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1276), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47619,87 +48233,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [155] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4101), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47767,91 +48381,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [156] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4107), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47919,91 +48533,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [157] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4113), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48071,91 +48685,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [158] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1285), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48223,91 +48837,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [159] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1290), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48379,87 +48993,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [160] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4007), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48527,91 +49141,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [161] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4022), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48679,91 +49293,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [162] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4025), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48831,91 +49445,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [163] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4027), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48983,91 +49597,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [164] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1295), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49135,91 +49749,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [165] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1299), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49291,87 +49905,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [166] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4054), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49439,91 +50053,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [167] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4056), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49591,91 +50205,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [168] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4061), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49743,91 +50357,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [169] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4067), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49895,91 +50509,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [170] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4079), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50047,91 +50661,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [171] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1304), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50199,91 +50813,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [172] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1306), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50351,91 +50965,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [173] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3991), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50503,91 +51117,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [174] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3993), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50655,91 +51269,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [175] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3995), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50807,91 +51421,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [176] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3996), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50959,91 +51573,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [177] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3998), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51111,91 +51725,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [178] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3999), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51263,91 +51877,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [179] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1311), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51419,87 +52033,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [180] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1312), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51571,87 +52185,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [181] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4011), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51719,91 +52333,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [182] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4015), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51871,91 +52485,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [183] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4016), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52023,91 +52637,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [184] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4017), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52175,91 +52789,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [185] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4019), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52327,91 +52941,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [186] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1314), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52483,87 +53097,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [187] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1316), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52635,87 +53249,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [188] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4029), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52783,91 +53397,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [189] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4031), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52935,91 +53549,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [190] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4032), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53087,91 +53701,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [191] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4036), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53239,91 +53853,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [192] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1318), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53391,91 +54005,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [193] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4041), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53543,91 +54157,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [194] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4042), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53695,91 +54309,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [195] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4044), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53847,91 +54461,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [196] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1319), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54003,87 +54617,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [197] = { - [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__statement] = STATE(255), + [sym__simple_statements] = STATE(255), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(255), + [sym_match_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(255), + [sym_decorated_definition] = STATE(255), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(4046), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(255), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(255), + [sym_IF_statement] = STATE(255), + [sym_cdef_statement] = STATE(255), + [sym_ctypedef_statement] = STATE(255), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(255), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54151,91 +54765,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(159), [sym_string_start] = ACTIONS(117), }, [198] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1321), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54307,87 +54921,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(117), }, [199] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3689), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54455,91 +55069,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [200] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3698), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54607,91 +55221,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [201] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3709), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54759,91 +55373,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [202] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3711), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54911,91 +55525,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [203] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3712), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55063,91 +55677,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [204] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3719), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55215,91 +55829,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [205] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3724), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55367,91 +55981,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [206] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3734), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55519,91 +56133,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [207] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3739), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55671,91 +56285,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [208] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3741), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55823,91 +56437,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [209] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3743), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55975,91 +56589,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [210] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3746), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56127,91 +56741,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [211] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3750), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56279,91 +56893,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(163), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [212] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3765), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56431,91 +57045,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [213] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3767), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56583,91 +57197,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [214] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3768), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56735,91 +57349,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [215] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3771), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56887,91 +57501,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [216] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3775), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57039,91 +57653,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [217] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3777), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57191,91 +57805,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [218] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3779), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57343,91 +57957,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [219] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3797), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57495,91 +58109,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [220] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3799), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57647,91 +58261,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [221] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3801), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57799,91 +58413,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [222] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3802), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57951,91 +58565,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [223] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3804), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58103,91 +58717,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [224] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3805), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58255,91 +58869,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [225] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3810), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58407,91 +59021,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [226] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3811), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58559,91 +59173,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [227] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3826), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58711,91 +59325,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [228] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3830), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58863,91 +59477,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [229] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3831), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59015,91 +59629,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [230] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3832), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59167,91 +59781,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [231] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3834), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59319,91 +59933,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [232] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3835), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59471,91 +60085,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [233] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3837), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59623,91 +60237,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [234] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3848), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59775,91 +60389,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [235] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3850), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59927,91 +60541,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [236] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3851), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60079,91 +60693,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [237] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3854), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60231,91 +60845,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [238] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3856), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60383,91 +60997,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [239] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3862), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60535,91 +61149,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [240] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3863), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60687,91 +61301,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [241] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3865), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60839,91 +61453,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [242] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3866), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60991,91 +61605,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [243] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3869), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61143,91 +61757,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [244] = { - [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__statement] = STATE(259), + [sym__simple_statements] = STATE(259), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(259), + [sym_decorated_definition] = STATE(259), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(3870), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(259), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(259), + [sym_IF_statement] = STATE(259), + [sym_cdef_statement] = STATE(259), + [sym_ctypedef_statement] = STATE(259), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(259), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61295,91 +61909,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(167), [sym_string_start] = ACTIONS(117), }, [245] = { - [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__statement] = STATE(258), + [sym__simple_statements] = STATE(258), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [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(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(258), + [sym_decorated_definition] = STATE(258), + [sym_decorator] = STATE(4365), + [sym_block] = STATE(1209), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(258), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(258), + [sym_IF_statement] = STATE(258), + [sym_cdef_statement] = STATE(258), + [sym_ctypedef_statement] = STATE(258), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(258), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61447,91 +62061,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(117), }, [246] = { - [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__statement] = STATE(246), + [sym__simple_statements] = STATE(246), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_if_statement] = STATE(246), + [sym_match_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_try_statement] = STATE(246), + [sym_with_statement] = STATE(246), + [sym_function_definition] = STATE(246), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_class_definition] = STATE(246), + [sym_decorated_definition] = STATE(246), + [sym_decorator] = STATE(4378), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(246), + [sym_include_statement] = STATE(6514), + [sym_DEF_statement] = STATE(246), + [sym_IF_statement] = STATE(246), + [sym_cdef_statement] = STATE(246), + [sym_ctypedef_statement] = STATE(246), + [sym_storageclass] = STATE(5039), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(246), + [aux_sym_class_definition_repeat1] = STATE(5039), + [aux_sym_decorated_definition_repeat1] = STATE(4378), + [aux_sym_integer_repeat4] = STATE(2542), + [ts_builtin_sym_end] = ACTIONS(169), + [sym_identifier] = ACTIONS(171), + [anon_sym_import] = ACTIONS(174), + [anon_sym_cimport] = ACTIONS(174), + [anon_sym_from] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(183), + [anon_sym_print] = ACTIONS(186), + [anon_sym_assert] = ACTIONS(189), + [anon_sym_return] = ACTIONS(192), + [anon_sym_del] = ACTIONS(195), + [anon_sym_raise] = ACTIONS(198), + [anon_sym_pass] = ACTIONS(201), + [anon_sym_break] = ACTIONS(204), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_if] = ACTIONS(210), + [anon_sym_match] = ACTIONS(213), + [anon_sym_async] = ACTIONS(216), + [anon_sym_for] = ACTIONS(219), + [anon_sym_while] = ACTIONS(222), + [anon_sym_try] = ACTIONS(225), + [anon_sym_with] = ACTIONS(228), + [anon_sym_def] = ACTIONS(231), + [anon_sym_global] = ACTIONS(234), + [anon_sym_nonlocal] = ACTIONS(237), + [anon_sym_exec] = ACTIONS(240), + [anon_sym_type] = ACTIONS(243), + [anon_sym_class] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_AT] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_not] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(273), + [anon_sym_None] = ACTIONS(276), + [anon_sym_0x] = ACTIONS(279), + [anon_sym_0X] = ACTIONS(279), + [anon_sym_0o] = ACTIONS(282), + [anon_sym_0O] = ACTIONS(282), + [anon_sym_0b] = ACTIONS(285), + [anon_sym_0B] = ACTIONS(285), + [aux_sym_integer_token4] = ACTIONS(288), + [sym_float] = ACTIONS(291), + [anon_sym_await] = ACTIONS(294), + [anon_sym_api] = ACTIONS(297), + [sym_true] = ACTIONS(300), + [sym_false] = ACTIONS(300), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(303), + [anon_sym_include] = ACTIONS(306), + [anon_sym_DEF] = ACTIONS(309), + [anon_sym_IF] = ACTIONS(312), + [anon_sym_cdef] = ACTIONS(315), + [anon_sym_cpdef] = ACTIONS(315), + [anon_sym_new] = ACTIONS(318), + [anon_sym_ctypedef] = ACTIONS(321), + [anon_sym_public] = ACTIONS(324), + [anon_sym_packed] = ACTIONS(324), + [anon_sym_inline] = ACTIONS(324), + [anon_sym_readonly] = ACTIONS(324), + [anon_sym_sizeof] = ACTIONS(327), + [sym_string_start] = ACTIONS(330), + }, + [247] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61599,91 +62363,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(333), [sym_string_start] = ACTIONS(117), }, - [247] = { - [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), + [248] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61751,91 +62514,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(335), [sym_string_start] = ACTIONS(117), }, - [248] = { - [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), + [249] = { + [sym__statement] = STATE(246), + [sym__simple_statements] = STATE(246), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_if_statement] = STATE(246), + [sym_match_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_try_statement] = STATE(246), + [sym_with_statement] = STATE(246), + [sym_function_definition] = STATE(246), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_class_definition] = STATE(246), + [sym_decorated_definition] = STATE(246), + [sym_decorator] = STATE(4378), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(246), + [sym_include_statement] = STATE(6514), + [sym_DEF_statement] = STATE(246), + [sym_IF_statement] = STATE(246), + [sym_cdef_statement] = STATE(246), + [sym_ctypedef_statement] = STATE(246), + [sym_storageclass] = STATE(5039), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(246), + [aux_sym_class_definition_repeat1] = STATE(5039), + [aux_sym_decorated_definition_repeat1] = STATE(4378), + [aux_sym_integer_repeat4] = STATE(2542), + [ts_builtin_sym_end] = ACTIONS(337), + [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(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), + [anon_sym_not] = 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(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), + }, + [250] = { + [sym__statement] = STATE(249), + [sym__simple_statements] = STATE(249), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_if_statement] = STATE(249), + [sym_match_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_try_statement] = STATE(249), + [sym_with_statement] = STATE(249), + [sym_function_definition] = STATE(249), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_class_definition] = STATE(249), + [sym_decorated_definition] = STATE(249), + [sym_decorator] = STATE(4378), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(249), + [sym_include_statement] = STATE(6514), + [sym_DEF_statement] = STATE(249), + [sym_IF_statement] = STATE(249), + [sym_cdef_statement] = STATE(249), + [sym_ctypedef_statement] = STATE(249), + [sym_storageclass] = STATE(5039), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(249), + [aux_sym_class_definition_repeat1] = STATE(5039), + [aux_sym_decorated_definition_repeat1] = STATE(4378), + [aux_sym_integer_repeat4] = STATE(2542), + [ts_builtin_sym_end] = ACTIONS(339), + [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(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), + [anon_sym_not] = 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(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), + }, + [251] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61903,91 +62967,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(341), [sym_string_start] = ACTIONS(117), }, - [249] = { - [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), + [252] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62055,91 +63118,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(343), [sym_string_start] = ACTIONS(117), }, - [250] = { - [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), + [253] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(171), + [anon_sym_import] = ACTIONS(174), + [anon_sym_cimport] = ACTIONS(174), + [anon_sym_from] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(183), + [anon_sym_print] = ACTIONS(186), + [anon_sym_assert] = ACTIONS(189), + [anon_sym_return] = ACTIONS(192), + [anon_sym_del] = ACTIONS(195), + [anon_sym_raise] = ACTIONS(198), + [anon_sym_pass] = ACTIONS(201), + [anon_sym_break] = ACTIONS(204), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_if] = ACTIONS(345), + [anon_sym_match] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_for] = ACTIONS(354), + [anon_sym_while] = ACTIONS(357), + [anon_sym_try] = ACTIONS(360), + [anon_sym_with] = ACTIONS(363), + [anon_sym_def] = ACTIONS(366), + [anon_sym_global] = ACTIONS(234), + [anon_sym_nonlocal] = ACTIONS(237), + [anon_sym_exec] = ACTIONS(240), + [anon_sym_type] = ACTIONS(243), + [anon_sym_class] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_AT] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_not] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(273), + [anon_sym_None] = ACTIONS(276), + [anon_sym_0x] = ACTIONS(279), + [anon_sym_0X] = ACTIONS(279), + [anon_sym_0o] = ACTIONS(282), + [anon_sym_0O] = ACTIONS(282), + [anon_sym_0b] = ACTIONS(285), + [anon_sym_0B] = ACTIONS(285), + [aux_sym_integer_token4] = ACTIONS(288), + [sym_float] = ACTIONS(291), + [anon_sym_await] = ACTIONS(294), + [anon_sym_api] = ACTIONS(297), + [sym_true] = ACTIONS(300), + [sym_false] = ACTIONS(300), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(372), + [anon_sym_include] = ACTIONS(306), + [anon_sym_DEF] = ACTIONS(375), + [anon_sym_IF] = ACTIONS(378), + [anon_sym_cdef] = ACTIONS(381), + [anon_sym_cpdef] = ACTIONS(381), + [anon_sym_new] = ACTIONS(318), + [anon_sym_ctypedef] = ACTIONS(384), + [anon_sym_public] = ACTIONS(324), + [anon_sym_packed] = ACTIONS(324), + [anon_sym_inline] = ACTIONS(324), + [anon_sym_readonly] = ACTIONS(324), + [anon_sym_sizeof] = ACTIONS(327), + [sym__dedent] = ACTIONS(169), + [sym_string_start] = ACTIONS(330), + }, + [254] = { + [sym__statement] = STATE(246), + [sym__simple_statements] = STATE(246), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_if_statement] = STATE(246), + [sym_match_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_try_statement] = STATE(246), + [sym_with_statement] = STATE(246), + [sym_function_definition] = STATE(246), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_class_definition] = STATE(246), + [sym_decorated_definition] = STATE(246), + [sym_decorator] = STATE(4378), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(246), + [sym_include_statement] = STATE(6514), + [sym_DEF_statement] = STATE(246), + [sym_IF_statement] = STATE(246), + [sym_cdef_statement] = STATE(246), + [sym_ctypedef_statement] = STATE(246), + [sym_storageclass] = STATE(5039), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(246), + [aux_sym_class_definition_repeat1] = STATE(5039), + [aux_sym_decorated_definition_repeat1] = STATE(4378), + [aux_sym_integer_repeat4] = STATE(2542), + [ts_builtin_sym_end] = ACTIONS(339), + [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(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), + [anon_sym_not] = 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(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), + }, + [255] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62207,91 +63571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(387), [sym_string_start] = ACTIONS(117), }, - [251] = { - [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), + [256] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62359,91 +63722,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(389), [sym_string_start] = ACTIONS(117), }, - [252] = { - [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), + [257] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62511,91 +63873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(391), [sym_string_start] = ACTIONS(117), }, - [253] = { - [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), + [258] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62663,91 +64024,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(393), [sym_string_start] = ACTIONS(117), }, - [254] = { - [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), + [259] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62815,91 +64175,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(395), [sym_string_start] = ACTIONS(117), }, - [255] = { - [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), + [260] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62967,91 +64326,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(397), [sym_string_start] = ACTIONS(117), }, - [256] = { - [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), + [261] = { + [sym__statement] = STATE(253), + [sym__simple_statements] = STATE(253), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_if_statement] = STATE(253), + [sym_match_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_try_statement] = STATE(253), + [sym_with_statement] = STATE(253), + [sym_function_definition] = STATE(253), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_class_definition] = STATE(253), + [sym_decorated_definition] = STATE(253), + [sym_decorator] = STATE(4365), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_property_definition] = STATE(253), + [sym_include_statement] = STATE(6431), + [sym_DEF_statement] = STATE(253), + [sym_IF_statement] = STATE(253), + [sym_cdef_statement] = STATE(253), + [sym_ctypedef_statement] = STATE(253), + [sym_storageclass] = STATE(5006), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_module_repeat1] = STATE(253), + [aux_sym_class_definition_repeat1] = STATE(5006), + [aux_sym_decorated_definition_repeat1] = STATE(4365), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63119,96 +64477,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_sizeof] = ACTIONS(115), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(399), [sym_string_start] = ACTIONS(117), }, - [257] = { - [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), + [262] = { + [sym__simple_statements] = STATE(1310), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6515), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63218,21 +64560,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -63253,114 +64587,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(163), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(117), }, - [258] = { - [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), + [263] = { + [sym__simple_statements] = STATE(4111), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6570), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63370,21 +64689,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_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_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_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), @@ -63405,112 +64716,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [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_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [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_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), }, - [259] = { - [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), + [264] = { + [sym__simple_statements] = STATE(3809), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6475), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63520,21 +64818,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -63555,113 +64845,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(171), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(117), }, - [260] = { - [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), + [265] = { + [sym__simple_statements] = STATE(1550), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6044), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63671,21 +64947,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -63706,113 +64974,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(173), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(117), }, - [261] = { - [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), + [266] = { + [sym__simple_statements] = STATE(4115), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6631), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63822,21 +65076,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -63857,113 +65103,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(175), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(117), }, - [262] = { - [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), + [267] = { + [sym__simple_statements] = STATE(4106), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6425), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -63973,21 +65205,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -64008,114 +65232,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(177), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(117), }, - [263] = { - [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), + [268] = { + [sym__simple_statements] = STATE(1296), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6627), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -64125,21 +65334,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_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_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_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), @@ -64160,263 +65361,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [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_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [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_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), }, - [264] = { - [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), + [269] = { + [sym__simple_statements] = STATE(1721), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6452), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -64426,21 +65463,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -64461,114 +65490,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(345), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(117), }, - [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), + [270] = { + [sym__simple_statements] = STATE(1277), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6506), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -64578,21 +65592,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_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_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_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), @@ -64613,263 +65619,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [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_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [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_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), }, - [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), + [271] = { + [sym__simple_statements] = STATE(4076), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6254), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -64879,21 +65721,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -64914,113 +65748,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(389), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(117), }, - [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), + [272] = { + [sym__simple_statements] = STATE(4088), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6079), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -65030,21 +65850,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -65065,113 +65877,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(391), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(117), }, - [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), + [273] = { + [sym__simple_statements] = STATE(3836), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6533), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -65181,21 +65979,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -65216,113 +66006,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(393), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(117), }, - [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), + [274] = { + [sym__simple_statements] = STATE(3699), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6227), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -65332,21 +66108,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -65367,113 +66135,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(395), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(117), }, - [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), + [275] = { + [sym__simple_statements] = STATE(1305), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6056), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -65483,21 +66237,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -65518,113 +66264,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(397), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(117), }, - [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), + [276] = { + [sym__simple_statements] = STATE(1315), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6078), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [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), @@ -65634,21 +66366,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(119), - [anon_sym_match] = ACTIONS(121), - [anon_sym_async] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_with] = ACTIONS(131), - [anon_sym_def] = ACTIONS(133), + [anon_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_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), @@ -65669,93 +66393,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(93), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(137), [anon_sym_include] = ACTIONS(101), - [anon_sym_DEF] = ACTIONS(139), - [anon_sym_IF] = ACTIONS(141), - [anon_sym_cdef] = ACTIONS(143), - [anon_sym_cpdef] = ACTIONS(143), + [anon_sym_int] = ACTIONS(407), + [anon_sym_double] = ACTIONS(407), + [anon_sym_complex] = ACTIONS(407), [anon_sym_new] = ACTIONS(109), - [anon_sym_ctypedef] = ACTIONS(145), - [anon_sym_public] = ACTIONS(113), - [anon_sym_packed] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [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__dedent] = ACTIONS(399), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(117), }, - [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), + [277] = { + [sym__simple_statements] = STATE(1423), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6571), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65815,76 +66540,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(117), }, - [275] = { - [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), + [278] = { + [sym__simple_statements] = STATE(4096), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6297), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65944,76 +66669,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(117), }, - [276] = { - [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), + [279] = { + [sym__simple_statements] = STATE(3720), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6294), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66073,76 +66798,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(117), }, - [277] = { - [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), + [280] = { + [sym__simple_statements] = STATE(3778), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6413), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66202,76 +66927,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(117), }, - [278] = { - [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), + [281] = { + [sym__simple_statements] = STATE(1688), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6604), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66331,76 +67056,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(117), }, - [279] = { - [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), + [282] = { + [sym__simple_statements] = STATE(1286), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6575), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66460,76 +67185,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(117), }, - [280] = { - [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), + [283] = { + [sym__simple_statements] = STATE(3747), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6343), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66589,76 +67314,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(441), - [sym__indent] = ACTIONS(443), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(117), }, - [281] = { - [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), + [284] = { + [sym__simple_statements] = STATE(1501), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6537), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66718,76 +67443,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(445), - [sym__indent] = ACTIONS(447), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(117), }, - [282] = { - [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), + [285] = { + [sym__simple_statements] = STATE(1151), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_int_type] = STATE(4760), + [sym__signedness] = STATE(4306), + [sym__longness] = STATE(4534), + [sym_function_pointer_type] = STATE(4760), + [sym_c_type] = STATE(6082), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(401), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66847,83 +67572,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(415), [anon_sym_volatile] = ACTIONS(415), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(449), - [sym__indent] = ACTIONS(451), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(117), }, - [283] = { - [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), + [286] = { + [sym__simple_statements] = STATE(2203), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -66931,13 +67657,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -66957,102 +67684,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(531), + [sym__indent] = ACTIONS(533), [sym_string_start] = ACTIONS(117), }, - [284] = { - [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), + [287] = { + [sym__simple_statements] = STATE(2116), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67060,13 +67778,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67086,102 +67805,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(535), + [sym__indent] = ACTIONS(537), [sym_string_start] = ACTIONS(117), }, - [285] = { - [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), + [288] = { + [sym__simple_statements] = STATE(2104), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67189,13 +67899,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67215,102 +67926,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), [sym_string_start] = ACTIONS(117), }, - [286] = { - [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), + [289] = { + [sym__simple_statements] = STATE(2088), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67318,13 +68020,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67344,102 +68047,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(543), + [sym__indent] = ACTIONS(545), [sym_string_start] = ACTIONS(117), }, - [287] = { - [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), + [290] = { + [sym__simple_statements] = STATE(2100), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67447,13 +68141,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67473,102 +68168,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(547), + [sym__indent] = ACTIONS(549), [sym_string_start] = ACTIONS(117), }, - [288] = { - [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), + [291] = { + [sym__simple_statements] = STATE(2197), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67576,13 +68262,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67602,102 +68289,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(551), + [sym__indent] = ACTIONS(553), [sym_string_start] = ACTIONS(117), }, - [289] = { - [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), + [292] = { + [sym__simple_statements] = STATE(2200), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67705,13 +68383,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67731,102 +68410,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(555), + [sym__indent] = ACTIONS(557), [sym_string_start] = ACTIONS(117), }, - [290] = { - [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), + [293] = { + [sym__simple_statements] = STATE(2068), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2518), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4831), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2511), + [sym_subscript] = STATE(2511), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(513), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), - [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), @@ -67834,13 +68504,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(405), - [anon_sym_async] = ACTIONS(405), + [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), @@ -67860,100 +68531,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [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_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__newline] = ACTIONS(559), + [sym__indent] = ACTIONS(561), [sym_string_start] = ACTIONS(117), }, - [291] = { - [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), + [294] = { + [sym__simple_statements] = STATE(1389), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -67996,93 +68652,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(563), + [sym__indent] = ACTIONS(565), [sym_string_start] = ACTIONS(117), }, - [292] = { - [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), + [295] = { + [sym__simple_statements] = STATE(4062), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68125,93 +68766,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(567), + [sym__indent] = ACTIONS(569), [sym_string_start] = ACTIONS(117), }, - [293] = { - [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), + [296] = { + [sym__simple_statements] = STATE(2082), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68254,93 +68880,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(571), + [sym__indent] = ACTIONS(573), [sym_string_start] = ACTIONS(117), }, - [294] = { - [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), + [297] = { + [sym__simple_statements] = STATE(1069), + [sym_import_statement] = STATE(6145), + [sym_future_import_statement] = STATE(6145), + [sym_import_from_statement] = STATE(6145), + [sym_print_statement] = STATE(6145), + [sym_assert_statement] = STATE(6145), + [sym_expression_statement] = STATE(6145), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6145), + [sym_delete_statement] = STATE(6145), + [sym_raise_statement] = STATE(6145), + [sym_pass_statement] = STATE(6145), + [sym_break_statement] = STATE(6145), + [sym_continue_statement] = STATE(6145), + [sym_global_statement] = STATE(6145), + [sym_nonlocal_statement] = STATE(6145), + [sym_exec_statement] = STATE(6145), + [sym_type_alias_statement] = STATE(6145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6145), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68383,93 +68994,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(575), + [sym__indent] = ACTIONS(577), [sym_string_start] = ACTIONS(117), }, - [295] = { - [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), + [298] = { + [sym__simple_statements] = STATE(2152), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68512,93 +69108,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(579), + [sym__indent] = ACTIONS(581), [sym_string_start] = ACTIONS(117), }, - [296] = { - [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), + [299] = { + [sym__simple_statements] = STATE(974), + [sym_import_statement] = STATE(6614), + [sym_future_import_statement] = STATE(6614), + [sym_import_from_statement] = STATE(6614), + [sym_print_statement] = STATE(6614), + [sym_assert_statement] = STATE(6614), + [sym_expression_statement] = STATE(6614), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6614), + [sym_delete_statement] = STATE(6614), + [sym_raise_statement] = STATE(6614), + [sym_pass_statement] = STATE(6614), + [sym_break_statement] = STATE(6614), + [sym_continue_statement] = STATE(6614), + [sym_global_statement] = STATE(6614), + [sym_nonlocal_statement] = STATE(6614), + [sym_exec_statement] = STATE(6614), + [sym_type_alias_statement] = STATE(6614), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6614), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68641,93 +69222,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(583), + [sym__indent] = ACTIONS(585), [sym_string_start] = ACTIONS(117), }, - [297] = { - [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), + [300] = { + [sym__simple_statements] = STATE(981), + [sym_import_statement] = STATE(6109), + [sym_future_import_statement] = STATE(6109), + [sym_import_from_statement] = STATE(6109), + [sym_print_statement] = STATE(6109), + [sym_assert_statement] = STATE(6109), + [sym_expression_statement] = STATE(6109), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6109), + [sym_delete_statement] = STATE(6109), + [sym_raise_statement] = STATE(6109), + [sym_pass_statement] = STATE(6109), + [sym_break_statement] = STATE(6109), + [sym_continue_statement] = STATE(6109), + [sym_global_statement] = STATE(6109), + [sym_nonlocal_statement] = STATE(6109), + [sym_exec_statement] = STATE(6109), + [sym_type_alias_statement] = STATE(6109), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6109), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -68770,96 +69336,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__newline] = ACTIONS(587), + [sym__indent] = ACTIONS(589), [sym_string_start] = ACTIONS(117), }, - [298] = { - [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), + [301] = { + [sym__simple_statements] = STATE(2158), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -68867,14 +69417,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -68894,8 +69443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -68903,84 +69452,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(531), - [sym__indent] = ACTIONS(533), + [sym__newline] = ACTIONS(591), + [sym__indent] = ACTIONS(593), [sym_string_start] = ACTIONS(117), }, - [299] = { - [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), + [302] = { + [sym__simple_statements] = STATE(2091), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -68988,14 +69531,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69015,8 +69557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69024,84 +69566,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(535), - [sym__indent] = ACTIONS(537), + [sym__newline] = ACTIONS(595), + [sym__indent] = ACTIONS(597), [sym_string_start] = ACTIONS(117), }, - [300] = { - [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), + [303] = { + [sym__simple_statements] = STATE(1843), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69109,14 +69645,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69136,8 +69671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69145,84 +69680,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(539), - [sym__indent] = ACTIONS(541), + [sym__newline] = ACTIONS(599), + [sym__indent] = ACTIONS(601), [sym_string_start] = ACTIONS(117), }, - [301] = { - [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), + [304] = { + [sym__simple_statements] = STATE(1844), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69230,14 +69759,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69257,8 +69785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69266,84 +69794,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(543), - [sym__indent] = ACTIONS(545), + [sym__newline] = ACTIONS(603), + [sym__indent] = ACTIONS(605), [sym_string_start] = ACTIONS(117), }, - [302] = { - [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), + [305] = { + [sym__simple_statements] = STATE(1845), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69351,14 +69873,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69378,8 +69899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69387,84 +69908,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(547), - [sym__indent] = ACTIONS(549), + [sym__newline] = ACTIONS(607), + [sym__indent] = ACTIONS(609), [sym_string_start] = ACTIONS(117), }, - [303] = { - [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), + [306] = { + [sym__simple_statements] = STATE(4076), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69472,14 +69987,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69499,8 +70013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69508,84 +70022,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(551), - [sym__indent] = ACTIONS(553), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(117), }, - [304] = { - [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), + [307] = { + [sym__simple_statements] = STATE(3972), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69593,14 +70101,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69620,8 +70127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69629,84 +70136,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(555), - [sym__indent] = ACTIONS(557), + [sym__newline] = ACTIONS(611), + [sym__indent] = ACTIONS(613), [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), + [308] = { + [sym__simple_statements] = STATE(1852), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(9), [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_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), @@ -69714,14 +70215,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(405), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(525), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -69741,8 +70241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(91), + [anon_sym_api] = ACTIONS(405), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -69750,71 +70250,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(559), - [sym__indent] = ACTIONS(561), + [sym__newline] = ACTIONS(615), + [sym__indent] = ACTIONS(617), [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), + [309] = { + [sym__simple_statements] = STATE(1487), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69864,71 +70364,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(563), - [sym__indent] = ACTIONS(565), + [sym__newline] = ACTIONS(619), + [sym__indent] = ACTIONS(621), [sym_string_start] = ACTIONS(117), }, - [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), + [310] = { + [sym__simple_statements] = STATE(2172), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69978,71 +70478,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(567), - [sym__indent] = ACTIONS(569), + [sym__newline] = ACTIONS(623), + [sym__indent] = ACTIONS(625), [sym_string_start] = ACTIONS(117), }, - [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), + [311] = { + [sym__simple_statements] = STATE(1043), + [sym_import_statement] = STATE(6200), + [sym_future_import_statement] = STATE(6200), + [sym_import_from_statement] = STATE(6200), + [sym_print_statement] = STATE(6200), + [sym_assert_statement] = STATE(6200), + [sym_expression_statement] = STATE(6200), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6200), + [sym_delete_statement] = STATE(6200), + [sym_raise_statement] = STATE(6200), + [sym_pass_statement] = STATE(6200), + [sym_break_statement] = STATE(6200), + [sym_continue_statement] = STATE(6200), + [sym_global_statement] = STATE(6200), + [sym_nonlocal_statement] = STATE(6200), + [sym_exec_statement] = STATE(6200), + [sym_type_alias_statement] = STATE(6200), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6200), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70092,71 +70592,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(571), - [sym__indent] = ACTIONS(573), + [sym__newline] = ACTIONS(627), + [sym__indent] = ACTIONS(629), [sym_string_start] = ACTIONS(117), }, - [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), + [312] = { + [sym__simple_statements] = STATE(2175), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70206,71 +70706,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(575), - [sym__indent] = ACTIONS(577), + [sym__newline] = ACTIONS(631), + [sym__indent] = ACTIONS(633), [sym_string_start] = ACTIONS(117), }, - [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), + [313] = { + [sym__simple_statements] = STATE(2179), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70320,71 +70820,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(579), - [sym__indent] = ACTIONS(581), + [sym__newline] = ACTIONS(635), + [sym__indent] = ACTIONS(637), [sym_string_start] = ACTIONS(117), }, - [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), + [314] = { + [sym__simple_statements] = STATE(1493), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70434,71 +70934,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(583), - [sym__indent] = ACTIONS(585), + [sym__newline] = ACTIONS(639), + [sym__indent] = ACTIONS(641), [sym_string_start] = ACTIONS(117), }, - [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), + [315] = { + [sym__simple_statements] = STATE(1859), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70548,71 +71048,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(587), - [sym__indent] = ACTIONS(589), + [sym__newline] = ACTIONS(643), + [sym__indent] = ACTIONS(645), [sym_string_start] = ACTIONS(117), }, - [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), + [316] = { + [sym__simple_statements] = STATE(2092), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70662,71 +71162,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(591), - [sym__indent] = ACTIONS(593), + [sym__newline] = ACTIONS(647), + [sym__indent] = ACTIONS(649), [sym_string_start] = ACTIONS(117), }, - [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), + [317] = { + [sym__simple_statements] = STATE(1864), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70776,71 +71276,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(595), - [sym__indent] = ACTIONS(597), + [sym__newline] = ACTIONS(651), + [sym__indent] = ACTIONS(653), [sym_string_start] = ACTIONS(117), }, - [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), + [318] = { + [sym__simple_statements] = STATE(1866), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70890,71 +71390,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(599), - [sym__indent] = ACTIONS(601), + [sym__newline] = ACTIONS(655), + [sym__indent] = ACTIONS(657), [sym_string_start] = ACTIONS(117), }, - [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), + [319] = { + [sym__simple_statements] = STATE(1502), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71004,71 +71504,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(603), - [sym__indent] = ACTIONS(605), + [sym__newline] = ACTIONS(659), + [sym__indent] = ACTIONS(661), [sym_string_start] = ACTIONS(117), }, - [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), + [320] = { + [sym__simple_statements] = STATE(1501), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71118,71 +71618,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(607), - [sym__indent] = ACTIONS(609), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(117), }, - [318] = { - [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), + [321] = { + [sym__simple_statements] = STATE(3974), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71232,71 +71732,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(663), + [sym__indent] = ACTIONS(665), [sym_string_start] = ACTIONS(117), }, - [319] = { - [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), + [322] = { + [sym__simple_statements] = STATE(4088), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71346,71 +71846,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(611), - [sym__indent] = ACTIONS(613), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(117), }, - [320] = { - [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), + [323] = { + [sym__simple_statements] = STATE(1507), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71460,71 +71960,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(615), - [sym__indent] = ACTIONS(617), + [sym__newline] = ACTIONS(667), + [sym__indent] = ACTIONS(669), [sym_string_start] = ACTIONS(117), }, - [321] = { - [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), + [324] = { + [sym__simple_statements] = STATE(1968), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71574,71 +72074,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(619), - [sym__indent] = ACTIONS(621), + [sym__newline] = ACTIONS(671), + [sym__indent] = ACTIONS(673), [sym_string_start] = ACTIONS(117), }, - [322] = { - [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), + [325] = { + [sym__simple_statements] = STATE(1970), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71688,71 +72188,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(623), - [sym__indent] = ACTIONS(625), + [sym__newline] = ACTIONS(675), + [sym__indent] = ACTIONS(677), [sym_string_start] = ACTIONS(117), }, - [323] = { - [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), + [326] = { + [sym__simple_statements] = STATE(1972), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71802,71 +72302,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(627), - [sym__indent] = ACTIONS(629), + [sym__newline] = ACTIONS(679), + [sym__indent] = ACTIONS(681), [sym_string_start] = ACTIONS(117), }, - [324] = { - [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), + [327] = { + [sym__simple_statements] = STATE(1976), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71916,71 +72416,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(631), - [sym__indent] = ACTIONS(633), + [sym__newline] = ACTIONS(683), + [sym__indent] = ACTIONS(685), [sym_string_start] = ACTIONS(117), }, - [325] = { - [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), + [328] = { + [sym__simple_statements] = STATE(2102), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72030,71 +72530,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(635), - [sym__indent] = ACTIONS(637), + [sym__newline] = ACTIONS(687), + [sym__indent] = ACTIONS(689), [sym_string_start] = ACTIONS(117), }, - [326] = { - [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), + [329] = { + [sym__simple_statements] = STATE(2196), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72144,71 +72644,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(639), - [sym__indent] = ACTIONS(641), + [sym__newline] = ACTIONS(691), + [sym__indent] = ACTIONS(693), [sym_string_start] = ACTIONS(117), }, - [327] = { - [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), + [330] = { + [sym__simple_statements] = STATE(860), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72258,71 +72758,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(643), - [sym__indent] = ACTIONS(645), + [sym__newline] = ACTIONS(695), + [sym__indent] = ACTIONS(697), [sym_string_start] = ACTIONS(117), }, - [328] = { - [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), + [331] = { + [sym__simple_statements] = STATE(953), + [sym_import_statement] = STATE(6200), + [sym_future_import_statement] = STATE(6200), + [sym_import_from_statement] = STATE(6200), + [sym_print_statement] = STATE(6200), + [sym_assert_statement] = STATE(6200), + [sym_expression_statement] = STATE(6200), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6200), + [sym_delete_statement] = STATE(6200), + [sym_raise_statement] = STATE(6200), + [sym_pass_statement] = STATE(6200), + [sym_break_statement] = STATE(6200), + [sym_continue_statement] = STATE(6200), + [sym_global_statement] = STATE(6200), + [sym_nonlocal_statement] = STATE(6200), + [sym_exec_statement] = STATE(6200), + [sym_type_alias_statement] = STATE(6200), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6200), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72372,71 +72872,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(473), - [sym__indent] = ACTIONS(475), + [sym__newline] = ACTIONS(699), + [sym__indent] = ACTIONS(701), [sym_string_start] = ACTIONS(117), }, - [329] = { - [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), + [332] = { + [sym__simple_statements] = STATE(954), + [sym_import_statement] = STATE(6221), + [sym_future_import_statement] = STATE(6221), + [sym_import_from_statement] = STATE(6221), + [sym_print_statement] = STATE(6221), + [sym_assert_statement] = STATE(6221), + [sym_expression_statement] = STATE(6221), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6221), + [sym_delete_statement] = STATE(6221), + [sym_raise_statement] = STATE(6221), + [sym_pass_statement] = STATE(6221), + [sym_break_statement] = STATE(6221), + [sym_continue_statement] = STATE(6221), + [sym_global_statement] = STATE(6221), + [sym_nonlocal_statement] = STATE(6221), + [sym_exec_statement] = STATE(6221), + [sym_type_alias_statement] = STATE(6221), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6221), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72486,71 +72986,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(647), - [sym__indent] = ACTIONS(649), + [sym__newline] = ACTIONS(703), + [sym__indent] = ACTIONS(705), [sym_string_start] = ACTIONS(117), }, - [330] = { - [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), + [333] = { + [sym__simple_statements] = STATE(1532), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72600,71 +73100,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(651), - [sym__indent] = ACTIONS(653), + [sym__newline] = ACTIONS(707), + [sym__indent] = ACTIONS(709), [sym_string_start] = ACTIONS(117), }, - [331] = { - [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), + [334] = { + [sym__simple_statements] = STATE(1554), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72714,71 +73214,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(655), - [sym__indent] = ACTIONS(657), + [sym__newline] = ACTIONS(711), + [sym__indent] = ACTIONS(713), [sym_string_start] = ACTIONS(117), }, - [332] = { - [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), + [335] = { + [sym__simple_statements] = STATE(2008), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72828,71 +73328,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(659), - [sym__indent] = ACTIONS(661), + [sym__newline] = ACTIONS(715), + [sym__indent] = ACTIONS(717), [sym_string_start] = ACTIONS(117), }, - [333] = { - [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), + [336] = { + [sym__simple_statements] = STATE(1535), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72942,71 +73442,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(663), - [sym__indent] = ACTIONS(665), + [sym__newline] = ACTIONS(719), + [sym__indent] = ACTIONS(721), [sym_string_start] = ACTIONS(117), }, - [334] = { - [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), + [337] = { + [sym__simple_statements] = STATE(1536), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73056,71 +73556,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(667), - [sym__indent] = ACTIONS(669), + [sym__newline] = ACTIONS(723), + [sym__indent] = ACTIONS(725), [sym_string_start] = ACTIONS(117), }, - [335] = { - [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), + [338] = { + [sym__simple_statements] = STATE(2015), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73170,71 +73670,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(671), - [sym__indent] = ACTIONS(673), + [sym__newline] = ACTIONS(727), + [sym__indent] = ACTIONS(729), [sym_string_start] = ACTIONS(117), }, - [336] = { - [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), + [339] = { + [sym__simple_statements] = STATE(1098), + [sym_import_statement] = STATE(6334), + [sym_future_import_statement] = STATE(6334), + [sym_import_from_statement] = STATE(6334), + [sym_print_statement] = STATE(6334), + [sym_assert_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6334), + [sym_delete_statement] = STATE(6334), + [sym_raise_statement] = STATE(6334), + [sym_pass_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_global_statement] = STATE(6334), + [sym_nonlocal_statement] = STATE(6334), + [sym_exec_statement] = STATE(6334), + [sym_type_alias_statement] = STATE(6334), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6334), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73284,71 +73784,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(675), - [sym__indent] = ACTIONS(677), + [sym__newline] = ACTIONS(731), + [sym__indent] = ACTIONS(733), [sym_string_start] = ACTIONS(117), }, - [337] = { - [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), + [340] = { + [sym__simple_statements] = STATE(2207), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73398,71 +73898,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(679), - [sym__indent] = ACTIONS(681), + [sym__newline] = ACTIONS(735), + [sym__indent] = ACTIONS(737), [sym_string_start] = ACTIONS(117), }, - [338] = { - [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), + [341] = { + [sym__simple_statements] = STATE(4096), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73512,71 +74012,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(683), - [sym__indent] = ACTIONS(685), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(117), }, - [339] = { - [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), + [342] = { + [sym__simple_statements] = STATE(6664), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73626,71 +74126,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(687), - [sym__indent] = ACTIONS(689), + [sym__newline] = ACTIONS(739), + [sym__indent] = ACTIONS(741), [sym_string_start] = ACTIONS(117), }, - [340] = { - [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), + [343] = { + [sym__simple_statements] = STATE(3978), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73740,71 +74240,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(691), - [sym__indent] = ACTIONS(693), + [sym__newline] = ACTIONS(743), + [sym__indent] = ACTIONS(745), [sym_string_start] = ACTIONS(117), }, - [341] = { - [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), + [344] = { + [sym__simple_statements] = STATE(1144), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73854,71 +74354,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(695), - [sym__indent] = ACTIONS(697), + [sym__newline] = ACTIONS(747), + [sym__indent] = ACTIONS(749), [sym_string_start] = ACTIONS(117), }, - [342] = { - [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), + [345] = { + [sym__simple_statements] = STATE(1124), + [sym_import_statement] = STATE(6334), + [sym_future_import_statement] = STATE(6334), + [sym_import_from_statement] = STATE(6334), + [sym_print_statement] = STATE(6334), + [sym_assert_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6334), + [sym_delete_statement] = STATE(6334), + [sym_raise_statement] = STATE(6334), + [sym_pass_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_global_statement] = STATE(6334), + [sym_nonlocal_statement] = STATE(6334), + [sym_exec_statement] = STATE(6334), + [sym_type_alias_statement] = STATE(6334), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6334), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73968,71 +74468,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(699), - [sym__indent] = ACTIONS(701), + [sym__newline] = ACTIONS(751), + [sym__indent] = ACTIONS(753), [sym_string_start] = ACTIONS(117), }, - [343] = { - [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), + [346] = { + [sym__simple_statements] = STATE(1147), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74082,71 +74582,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(703), - [sym__indent] = ACTIONS(705), + [sym__newline] = ACTIONS(755), + [sym__indent] = ACTIONS(757), [sym_string_start] = ACTIONS(117), }, - [344] = { - [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), + [347] = { + [sym__simple_statements] = STATE(1148), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74196,71 +74696,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(707), - [sym__indent] = ACTIONS(709), + [sym__newline] = ACTIONS(759), + [sym__indent] = ACTIONS(761), [sym_string_start] = ACTIONS(117), }, - [345] = { - [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), + [348] = { + [sym__simple_statements] = STATE(1110), + [sym_import_statement] = STATE(6145), + [sym_future_import_statement] = STATE(6145), + [sym_import_from_statement] = STATE(6145), + [sym_print_statement] = STATE(6145), + [sym_assert_statement] = STATE(6145), + [sym_expression_statement] = STATE(6145), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6145), + [sym_delete_statement] = STATE(6145), + [sym_raise_statement] = STATE(6145), + [sym_pass_statement] = STATE(6145), + [sym_break_statement] = STATE(6145), + [sym_continue_statement] = STATE(6145), + [sym_global_statement] = STATE(6145), + [sym_nonlocal_statement] = STATE(6145), + [sym_exec_statement] = STATE(6145), + [sym_type_alias_statement] = STATE(6145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6145), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74310,71 +74810,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(711), - [sym__indent] = ACTIONS(713), + [sym__newline] = ACTIONS(763), + [sym__indent] = ACTIONS(765), [sym_string_start] = ACTIONS(117), }, - [346] = { - [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), + [349] = { + [sym__simple_statements] = STATE(2127), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74424,71 +74924,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(715), - [sym__indent] = ACTIONS(717), + [sym__newline] = ACTIONS(767), + [sym__indent] = ACTIONS(769), [sym_string_start] = ACTIONS(117), }, - [347] = { - [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), + [350] = { + [sym__simple_statements] = STATE(1541), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74538,71 +75038,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(719), - [sym__indent] = ACTIONS(721), + [sym__newline] = ACTIONS(771), + [sym__indent] = ACTIONS(773), [sym_string_start] = ACTIONS(117), }, - [348] = { - [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), + [351] = { + [sym__simple_statements] = STATE(1542), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74652,71 +75152,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(723), - [sym__indent] = ACTIONS(725), + [sym__newline] = ACTIONS(775), + [sym__indent] = ACTIONS(777), [sym_string_start] = ACTIONS(117), }, - [349] = { - [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), + [352] = { + [sym__simple_statements] = STATE(1543), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74766,71 +75266,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(727), - [sym__indent] = ACTIONS(729), + [sym__newline] = ACTIONS(779), + [sym__indent] = ACTIONS(781), [sym_string_start] = ACTIONS(117), }, - [350] = { - [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), + [353] = { + [sym__simple_statements] = STATE(1155), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74880,71 +75380,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(731), - [sym__indent] = ACTIONS(733), + [sym__newline] = ACTIONS(783), + [sym__indent] = ACTIONS(785), [sym_string_start] = ACTIONS(117), }, - [351] = { - [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), + [354] = { + [sym__simple_statements] = STATE(1156), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74994,71 +75494,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(735), - [sym__indent] = ACTIONS(737), + [sym__newline] = ACTIONS(787), + [sym__indent] = ACTIONS(789), [sym_string_start] = ACTIONS(117), }, - [352] = { - [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), + [355] = { + [sym__simple_statements] = STATE(1157), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75108,71 +75608,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(739), - [sym__indent] = ACTIONS(741), + [sym__newline] = ACTIONS(791), + [sym__indent] = ACTIONS(793), [sym_string_start] = ACTIONS(117), }, - [353] = { - [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), + [356] = { + [sym__simple_statements] = STATE(1118), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75222,71 +75722,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(743), - [sym__indent] = ACTIONS(745), + [sym__newline] = ACTIONS(795), + [sym__indent] = ACTIONS(797), [sym_string_start] = ACTIONS(117), }, - [354] = { - [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), + [357] = { + [sym__simple_statements] = STATE(1057), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75336,71 +75836,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(799), + [sym__indent] = ACTIONS(801), [sym_string_start] = ACTIONS(117), }, - [355] = { - [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), + [358] = { + [sym__simple_statements] = STATE(4106), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75450,71 +75950,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(747), - [sym__indent] = ACTIONS(749), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(117), }, - [356] = { - [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), + [359] = { + [sym__simple_statements] = STATE(1550), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75564,71 +76064,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(751), - [sym__indent] = ACTIONS(753), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(117), }, - [357] = { - [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), + [360] = { + [sym__simple_statements] = STATE(2142), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75678,71 +76178,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(755), - [sym__indent] = ACTIONS(757), + [sym__newline] = ACTIONS(803), + [sym__indent] = ACTIONS(805), [sym_string_start] = ACTIONS(117), }, - [358] = { - [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), + [361] = { + [sym__simple_statements] = STATE(3982), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75792,71 +76292,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(759), - [sym__indent] = ACTIONS(761), + [sym__newline] = ACTIONS(807), + [sym__indent] = ACTIONS(809), [sym_string_start] = ACTIONS(117), }, - [359] = { - [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), + [362] = { + [sym__simple_statements] = STATE(1173), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75906,71 +76406,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(763), - [sym__indent] = ACTIONS(765), + [sym__newline] = ACTIONS(811), + [sym__indent] = ACTIONS(813), [sym_string_start] = ACTIONS(117), }, - [360] = { - [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), + [363] = { + [sym__simple_statements] = STATE(1553), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76020,71 +76520,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), + [sym__newline] = ACTIONS(815), + [sym__indent] = ACTIONS(817), [sym_string_start] = ACTIONS(117), }, - [361] = { - [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), + [364] = { + [sym__simple_statements] = STATE(1177), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76134,71 +76634,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(767), - [sym__indent] = ACTIONS(769), + [sym__newline] = ACTIONS(819), + [sym__indent] = ACTIONS(821), [sym_string_start] = ACTIONS(117), }, - [362] = { - [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), + [365] = { + [sym__simple_statements] = STATE(1664), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76248,71 +76748,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(771), - [sym__indent] = ACTIONS(773), + [sym__newline] = ACTIONS(823), + [sym__indent] = ACTIONS(825), [sym_string_start] = ACTIONS(117), }, - [363] = { - [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), + [366] = { + [sym__simple_statements] = STATE(5097), + [sym_import_statement] = STATE(6286), + [sym_future_import_statement] = STATE(6286), + [sym_import_from_statement] = STATE(6286), + [sym_print_statement] = STATE(6286), + [sym_assert_statement] = STATE(6286), + [sym_expression_statement] = STATE(6286), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6286), + [sym_delete_statement] = STATE(6286), + [sym_raise_statement] = STATE(6286), + [sym_pass_statement] = STATE(6286), + [sym_break_statement] = STATE(6286), + [sym_continue_statement] = STATE(6286), + [sym_global_statement] = STATE(6286), + [sym_nonlocal_statement] = STATE(6286), + [sym_exec_statement] = STATE(6286), + [sym_type_alias_statement] = STATE(6286), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6286), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76362,71 +76862,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(775), - [sym__indent] = ACTIONS(777), + [sym__newline] = ACTIONS(827), + [sym__indent] = ACTIONS(829), [sym_string_start] = ACTIONS(117), }, - [364] = { - [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), + [367] = { + [sym__simple_statements] = STATE(1830), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76476,71 +76976,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(831), + [sym__indent] = ACTIONS(833), [sym_string_start] = ACTIONS(117), }, - [365] = { - [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), + [368] = { + [sym__simple_statements] = STATE(1672), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76590,71 +77090,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(779), - [sym__indent] = ACTIONS(781), + [sym__newline] = ACTIONS(835), + [sym__indent] = ACTIONS(837), [sym_string_start] = ACTIONS(117), }, - [366] = { - [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), + [369] = { + [sym__simple_statements] = STATE(963), + [sym_import_statement] = STATE(6200), + [sym_future_import_statement] = STATE(6200), + [sym_import_from_statement] = STATE(6200), + [sym_print_statement] = STATE(6200), + [sym_assert_statement] = STATE(6200), + [sym_expression_statement] = STATE(6200), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6200), + [sym_delete_statement] = STATE(6200), + [sym_raise_statement] = STATE(6200), + [sym_pass_statement] = STATE(6200), + [sym_break_statement] = STATE(6200), + [sym_continue_statement] = STATE(6200), + [sym_global_statement] = STATE(6200), + [sym_nonlocal_statement] = STATE(6200), + [sym_exec_statement] = STATE(6200), + [sym_type_alias_statement] = STATE(6200), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6200), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76704,71 +77204,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(783), - [sym__indent] = ACTIONS(785), + [sym__newline] = ACTIONS(839), + [sym__indent] = ACTIONS(841), [sym_string_start] = ACTIONS(117), }, - [367] = { - [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), + [370] = { + [sym__simple_statements] = STATE(1835), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76818,71 +77318,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(787), - [sym__indent] = ACTIONS(789), + [sym__newline] = ACTIONS(843), + [sym__indent] = ACTIONS(845), [sym_string_start] = ACTIONS(117), }, - [368] = { - [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), + [371] = { + [sym__simple_statements] = STATE(1184), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76932,71 +77432,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(791), - [sym__indent] = ACTIONS(793), + [sym__newline] = ACTIONS(847), + [sym__indent] = ACTIONS(849), [sym_string_start] = ACTIONS(117), }, - [369] = { - [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), + [372] = { + [sym__simple_statements] = STATE(6854), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77046,71 +77546,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(795), - [sym__indent] = ACTIONS(797), + [sym__newline] = ACTIONS(851), + [sym__indent] = ACTIONS(853), [sym_string_start] = ACTIONS(117), }, - [370] = { - [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), + [373] = { + [sym__simple_statements] = STATE(1837), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77160,71 +77660,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(799), - [sym__indent] = ACTIONS(801), + [sym__newline] = ACTIONS(855), + [sym__indent] = ACTIONS(857), [sym_string_start] = ACTIONS(117), }, - [371] = { - [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), + [374] = { + [sym__simple_statements] = STATE(1187), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77274,71 +77774,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(803), - [sym__indent] = ACTIONS(805), + [sym__newline] = ACTIONS(859), + [sym__indent] = ACTIONS(861), [sym_string_start] = ACTIONS(117), }, - [372] = { - [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), + [375] = { + [sym__simple_statements] = STATE(1188), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77388,71 +77888,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(807), - [sym__indent] = ACTIONS(809), + [sym__newline] = ACTIONS(863), + [sym__indent] = ACTIONS(865), [sym_string_start] = ACTIONS(117), }, - [373] = { - [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), + [376] = { + [sym__simple_statements] = STATE(6860), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77502,71 +78002,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(811), - [sym__indent] = ACTIONS(813), + [sym__newline] = ACTIONS(867), + [sym__indent] = ACTIONS(869), [sym_string_start] = ACTIONS(117), }, - [374] = { - [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), + [377] = { + [sym__simple_statements] = STATE(1009), + [sym_import_statement] = STATE(6614), + [sym_future_import_statement] = STATE(6614), + [sym_import_from_statement] = STATE(6614), + [sym_print_statement] = STATE(6614), + [sym_assert_statement] = STATE(6614), + [sym_expression_statement] = STATE(6614), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6614), + [sym_delete_statement] = STATE(6614), + [sym_raise_statement] = STATE(6614), + [sym_pass_statement] = STATE(6614), + [sym_break_statement] = STATE(6614), + [sym_continue_statement] = STATE(6614), + [sym_global_statement] = STATE(6614), + [sym_nonlocal_statement] = STATE(6614), + [sym_exec_statement] = STATE(6614), + [sym_type_alias_statement] = STATE(6614), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6614), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77616,71 +78116,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(815), - [sym__indent] = ACTIONS(817), + [sym__newline] = ACTIONS(871), + [sym__indent] = ACTIONS(873), [sym_string_start] = ACTIONS(117), }, - [375] = { - [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), + [378] = { + [sym__simple_statements] = STATE(3984), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77730,71 +78230,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(819), - [sym__indent] = ACTIONS(821), + [sym__newline] = ACTIONS(875), + [sym__indent] = ACTIONS(877), [sym_string_start] = ACTIONS(117), }, - [376] = { - [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), + [379] = { + [sym__simple_statements] = STATE(4111), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77844,71 +78344,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(823), - [sym__indent] = ACTIONS(825), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(117), }, - [377] = { - [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), + [380] = { + [sym__simple_statements] = STATE(1204), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -77958,71 +78458,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(827), - [sym__indent] = ACTIONS(829), + [sym__newline] = ACTIONS(879), + [sym__indent] = ACTIONS(881), [sym_string_start] = ACTIONS(117), }, - [378] = { - [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), + [381] = { + [sym__simple_statements] = STATE(1205), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78072,71 +78572,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(831), - [sym__indent] = ACTIONS(833), + [sym__newline] = ACTIONS(883), + [sym__indent] = ACTIONS(885), [sym_string_start] = ACTIONS(117), }, - [379] = { - [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), + [382] = { + [sym__simple_statements] = STATE(1206), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78186,71 +78686,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(887), + [sym__indent] = ACTIONS(889), [sym_string_start] = ACTIONS(117), }, - [380] = { - [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), + [383] = { + [sym__simple_statements] = STATE(1682), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78300,71 +78800,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(835), - [sym__indent] = ACTIONS(837), + [sym__newline] = ACTIONS(891), + [sym__indent] = ACTIONS(893), [sym_string_start] = ACTIONS(117), }, - [381] = { - [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), + [384] = { + [sym__simple_statements] = STATE(1151), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78414,71 +78914,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(839), - [sym__indent] = ACTIONS(841), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(117), }, - [382] = { - [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), + [385] = { + [sym__simple_statements] = STATE(1685), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78528,71 +79028,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(843), - [sym__indent] = ACTIONS(845), + [sym__newline] = ACTIONS(895), + [sym__indent] = ACTIONS(897), [sym_string_start] = ACTIONS(117), }, - [383] = { - [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), + [386] = { + [sym__simple_statements] = STATE(1686), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78642,71 +79142,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(847), - [sym__indent] = ACTIONS(849), + [sym__newline] = ACTIONS(899), + [sym__indent] = ACTIONS(901), [sym_string_start] = ACTIONS(117), }, - [384] = { - [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), + [387] = { + [sym__simple_statements] = STATE(1211), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78756,71 +79256,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(851), - [sym__indent] = ACTIONS(853), + [sym__newline] = ACTIONS(903), + [sym__indent] = ACTIONS(905), [sym_string_start] = ACTIONS(117), }, - [385] = { - [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), + [388] = { + [sym__simple_statements] = STATE(1208), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78870,71 +79370,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(855), - [sym__indent] = ACTIONS(857), + [sym__newline] = ACTIONS(907), + [sym__indent] = ACTIONS(909), [sym_string_start] = ACTIONS(117), }, - [386] = { - [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), + [389] = { + [sym__simple_statements] = STATE(4115), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -78984,71 +79484,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(859), - [sym__indent] = ACTIONS(861), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(117), }, - [387] = { - [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), + [390] = { + [sym__simple_statements] = STATE(1691), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79098,71 +79598,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(863), - [sym__indent] = ACTIONS(865), + [sym__newline] = ACTIONS(911), + [sym__indent] = ACTIONS(913), [sym_string_start] = ACTIONS(117), }, - [388] = { - [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), + [391] = { + [sym__simple_statements] = STATE(1224), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79212,71 +79712,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(867), - [sym__indent] = ACTIONS(869), + [sym__newline] = ACTIONS(915), + [sym__indent] = ACTIONS(917), [sym_string_start] = ACTIONS(117), }, - [389] = { - [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), + [392] = { + [sym__simple_statements] = STATE(1688), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79326,71 +79826,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(871), - [sym__indent] = ACTIONS(873), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(117), }, - [390] = { - [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), + [393] = { + [sym__simple_statements] = STATE(1302), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79440,71 +79940,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(461), - [sym__indent] = ACTIONS(463), + [sym__newline] = ACTIONS(919), + [sym__indent] = ACTIONS(921), [sym_string_start] = ACTIONS(117), }, - [391] = { - [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), + [394] = { + [sym__simple_statements] = STATE(1227), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79554,71 +80054,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(875), - [sym__indent] = ACTIONS(877), + [sym__newline] = ACTIONS(923), + [sym__indent] = ACTIONS(925), [sym_string_start] = ACTIONS(117), }, - [392] = { - [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), + [395] = { + [sym__simple_statements] = STATE(1228), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79668,71 +80168,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(453), - [sym__indent] = ACTIONS(455), + [sym__newline] = ACTIONS(927), + [sym__indent] = ACTIONS(929), [sym_string_start] = ACTIONS(117), }, - [393] = { - [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), + [396] = { + [sym__simple_statements] = STATE(1708), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79782,71 +80282,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(879), - [sym__indent] = ACTIONS(881), + [sym__newline] = ACTIONS(931), + [sym__indent] = ACTIONS(933), [sym_string_start] = ACTIONS(117), }, - [394] = { - [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), + [397] = { + [sym__simple_statements] = STATE(4003), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -79896,71 +80396,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(883), - [sym__indent] = ACTIONS(885), + [sym__newline] = ACTIONS(935), + [sym__indent] = ACTIONS(937), [sym_string_start] = ACTIONS(117), }, - [395] = { - [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), + [398] = { + [sym__simple_statements] = STATE(1709), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80010,71 +80510,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(887), - [sym__indent] = ACTIONS(889), + [sym__newline] = ACTIONS(939), + [sym__indent] = ACTIONS(941), [sym_string_start] = ACTIONS(117), }, - [396] = { - [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), + [399] = { + [sym__simple_statements] = STATE(1710), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80124,71 +80624,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(891), - [sym__indent] = ACTIONS(893), + [sym__newline] = ACTIONS(943), + [sym__indent] = ACTIONS(945), [sym_string_start] = ACTIONS(117), }, - [397] = { - [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), + [400] = { + [sym__simple_statements] = STATE(1237), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80238,71 +80738,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(895), - [sym__indent] = ACTIONS(897), + [sym__newline] = ACTIONS(947), + [sym__indent] = ACTIONS(949), [sym_string_start] = ACTIONS(117), }, - [398] = { - [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), + [401] = { + [sym__simple_statements] = STATE(6773), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80352,71 +80852,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(899), - [sym__indent] = ACTIONS(901), + [sym__newline] = ACTIONS(951), + [sym__indent] = ACTIONS(953), [sym_string_start] = ACTIONS(117), }, - [399] = { - [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), + [402] = { + [sym__simple_statements] = STATE(4024), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80466,71 +80966,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(903), - [sym__indent] = ACTIONS(905), + [sym__newline] = ACTIONS(955), + [sym__indent] = ACTIONS(957), [sym_string_start] = ACTIONS(117), }, - [400] = { - [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), + [403] = { + [sym__simple_statements] = STATE(2111), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80580,71 +81080,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(907), - [sym__indent] = ACTIONS(909), + [sym__newline] = ACTIONS(959), + [sym__indent] = ACTIONS(961), [sym_string_start] = ACTIONS(117), }, - [401] = { - [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), + [404] = { + [sym__simple_statements] = STATE(6883), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80694,71 +81194,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(911), - [sym__indent] = ACTIONS(913), + [sym__newline] = ACTIONS(963), + [sym__indent] = ACTIONS(965), [sym_string_start] = ACTIONS(117), }, - [402] = { - [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), + [405] = { + [sym__simple_statements] = STATE(4005), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80808,71 +81308,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(915), - [sym__indent] = ACTIONS(917), + [sym__newline] = ACTIONS(967), + [sym__indent] = ACTIONS(969), [sym_string_start] = ACTIONS(117), }, - [403] = { - [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), + [406] = { + [sym__simple_statements] = STATE(1266), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -80922,71 +81422,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(919), - [sym__indent] = ACTIONS(921), + [sym__newline] = ACTIONS(971), + [sym__indent] = ACTIONS(973), [sym_string_start] = ACTIONS(117), }, - [404] = { - [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), + [407] = { + [sym__simple_statements] = STATE(1008), + [sym_import_statement] = STATE(6614), + [sym_future_import_statement] = STATE(6614), + [sym_import_from_statement] = STATE(6614), + [sym_print_statement] = STATE(6614), + [sym_assert_statement] = STATE(6614), + [sym_expression_statement] = STATE(6614), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6614), + [sym_delete_statement] = STATE(6614), + [sym_raise_statement] = STATE(6614), + [sym_pass_statement] = STATE(6614), + [sym_break_statement] = STATE(6614), + [sym_continue_statement] = STATE(6614), + [sym_global_statement] = STATE(6614), + [sym_nonlocal_statement] = STATE(6614), + [sym_exec_statement] = STATE(6614), + [sym_type_alias_statement] = STATE(6614), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6614), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81036,71 +81536,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(923), - [sym__indent] = ACTIONS(925), + [sym__newline] = ACTIONS(975), + [sym__indent] = ACTIONS(977), [sym_string_start] = ACTIONS(117), }, - [405] = { - [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), + [408] = { + [sym__simple_statements] = STATE(4038), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81150,71 +81650,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(927), - [sym__indent] = ACTIONS(929), + [sym__newline] = ACTIONS(979), + [sym__indent] = ACTIONS(981), [sym_string_start] = ACTIONS(117), }, - [406] = { - [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), + [409] = { + [sym__simple_statements] = STATE(4039), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81264,71 +81764,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(931), - [sym__indent] = ACTIONS(933), + [sym__newline] = ACTIONS(983), + [sym__indent] = ACTIONS(985), [sym_string_start] = ACTIONS(117), }, - [407] = { - [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), + [410] = { + [sym__simple_statements] = STATE(4040), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81378,71 +81878,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(935), - [sym__indent] = ACTIONS(937), + [sym__newline] = ACTIONS(987), + [sym__indent] = ACTIONS(989), [sym_string_start] = ACTIONS(117), }, - [408] = { - [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), + [411] = { + [sym__simple_statements] = STATE(2134), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81492,71 +81992,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(939), - [sym__indent] = ACTIONS(941), + [sym__newline] = ACTIONS(991), + [sym__indent] = ACTIONS(993), [sym_string_start] = ACTIONS(117), }, - [409] = { - [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), + [412] = { + [sym__simple_statements] = STATE(1277), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81606,71 +82106,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(943), - [sym__indent] = ACTIONS(945), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(117), }, - [410] = { - [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), + [413] = { + [sym__simple_statements] = STATE(1280), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81720,71 +82220,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(947), - [sym__indent] = ACTIONS(949), + [sym__newline] = ACTIONS(995), + [sym__indent] = ACTIONS(997), [sym_string_start] = ACTIONS(117), }, - [411] = { - [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), + [414] = { + [sym__simple_statements] = STATE(4080), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81834,71 +82334,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(951), - [sym__indent] = ACTIONS(953), + [sym__newline] = ACTIONS(999), + [sym__indent] = ACTIONS(1001), [sym_string_start] = ACTIONS(117), }, - [412] = { - [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), + [415] = { + [sym__simple_statements] = STATE(4104), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -81948,71 +82448,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(955), - [sym__indent] = ACTIONS(957), + [sym__newline] = ACTIONS(1003), + [sym__indent] = ACTIONS(1005), [sym_string_start] = ACTIONS(117), }, - [413] = { - [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), + [416] = { + [sym__simple_statements] = STATE(1718), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82062,71 +82562,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(959), - [sym__indent] = ACTIONS(961), + [sym__newline] = ACTIONS(1007), + [sym__indent] = ACTIONS(1009), [sym_string_start] = ACTIONS(117), }, - [414] = { - [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), + [417] = { + [sym__simple_statements] = STATE(2184), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82176,71 +82676,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(963), - [sym__indent] = ACTIONS(965), + [sym__newline] = ACTIONS(1011), + [sym__indent] = ACTIONS(1013), [sym_string_start] = ACTIONS(117), }, - [415] = { - [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), + [418] = { + [sym__simple_statements] = STATE(3988), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82290,71 +82790,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(449), - [sym__indent] = ACTIONS(451), + [sym__newline] = ACTIONS(1015), + [sym__indent] = ACTIONS(1017), [sym_string_start] = ACTIONS(117), }, - [416] = { - [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), + [419] = { + [sym__simple_statements] = STATE(3989), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82404,71 +82904,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(967), - [sym__indent] = ACTIONS(969), + [sym__newline] = ACTIONS(1019), + [sym__indent] = ACTIONS(1021), [sym_string_start] = ACTIONS(117), }, - [417] = { - [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), + [420] = { + [sym__simple_statements] = STATE(1721), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82518,185 +83018,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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(477), - [sym__indent] = ACTIONS(479), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(117), }, - [419] = { - [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), + [421] = { + [sym__simple_statements] = STATE(1289), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82746,185 +83132,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(975), - [sym__indent] = ACTIONS(977), + [sym__newline] = ACTIONS(1023), + [sym__indent] = ACTIONS(1025), [sym_string_start] = ACTIONS(117), }, - [420] = { - [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(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_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_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(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(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), + [422] = { + [sym__simple_statements] = STATE(1286), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -82974,71 +83246,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1018), - [sym__indent] = ACTIONS(1020), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(117), }, - [422] = { - [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), + [423] = { + [sym__simple_statements] = STATE(1383), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83088,71 +83360,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1022), - [sym__indent] = ACTIONS(1024), + [sym__newline] = ACTIONS(1027), + [sym__indent] = ACTIONS(1029), [sym_string_start] = ACTIONS(117), }, - [423] = { - [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), + [424] = { + [sym__simple_statements] = STATE(4008), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83202,71 +83474,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1026), - [sym__indent] = ACTIONS(1028), + [sym__newline] = ACTIONS(1031), + [sym__indent] = ACTIONS(1033), [sym_string_start] = ACTIONS(117), }, - [424] = { - [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), + [425] = { + [sym__simple_statements] = STATE(4009), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83316,71 +83588,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1030), - [sym__indent] = ACTIONS(1032), + [sym__newline] = ACTIONS(1035), + [sym__indent] = ACTIONS(1037), [sym_string_start] = ACTIONS(117), }, - [425] = { - [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), + [426] = { + [sym__simple_statements] = STATE(4010), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83430,71 +83702,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1034), - [sym__indent] = ACTIONS(1036), + [sym__newline] = ACTIONS(1039), + [sym__indent] = ACTIONS(1041), [sym_string_start] = ACTIONS(117), }, - [426] = { - [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), + [427] = { + [sym__simple_statements] = STATE(4021), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83544,185 +83816,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_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_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(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__newline] = ACTIONS(1043), + [sym__indent] = ACTIONS(1045), [sym_string_start] = ACTIONS(117), }, [428] = { - [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__simple_statements] = STATE(1734), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83772,71 +83930,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(493), - [sym__indent] = ACTIONS(495), + [sym__newline] = ACTIONS(1047), + [sym__indent] = ACTIONS(1049), [sym_string_start] = ACTIONS(117), }, [429] = { - [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__simple_statements] = STATE(4026), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -83886,101 +84044,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1045), - [sym__indent] = ACTIONS(1047), + [sym__newline] = ACTIONS(1051), + [sym__indent] = ACTIONS(1053), [sym_string_start] = ACTIONS(117), }, [430] = { - [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), - [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), + [sym_chevron] = STATE(6000), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5246), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_not] = ACTIONS(1084), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -83991,80 +84151,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, [431] = { - [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__simple_statements] = STATE(1296), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84114,71 +84272,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1053), - [sym__indent] = ACTIONS(1055), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(117), }, [432] = { - [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__simple_statements] = STATE(1737), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84228,71 +84386,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1057), - [sym__indent] = ACTIONS(1059), + [sym__newline] = ACTIONS(1094), + [sym__indent] = ACTIONS(1096), [sym_string_start] = ACTIONS(117), }, [433] = { - [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__simple_statements] = STATE(1300), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84342,71 +84500,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1061), - [sym__indent] = ACTIONS(1063), + [sym__newline] = ACTIONS(1098), + [sym__indent] = ACTIONS(1100), [sym_string_start] = ACTIONS(117), }, [434] = { - [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__simple_statements] = STATE(1739), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84456,71 +84614,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(445), - [sym__indent] = ACTIONS(447), + [sym__newline] = ACTIONS(1102), + [sym__indent] = ACTIONS(1104), [sym_string_start] = ACTIONS(117), }, [435] = { - [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__simple_statements] = STATE(1395), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84570,71 +84728,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1065), - [sym__indent] = ACTIONS(1067), + [sym__newline] = ACTIONS(1106), + [sym__indent] = ACTIONS(1108), [sym_string_start] = ACTIONS(117), }, [436] = { - [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__simple_statements] = STATE(4055), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84684,71 +84842,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1069), - [sym__indent] = ACTIONS(1071), + [sym__newline] = ACTIONS(1110), + [sym__indent] = ACTIONS(1112), [sym_string_start] = ACTIONS(117), }, [437] = { - [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__simple_statements] = STATE(6684), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84798,71 +84956,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1073), - [sym__indent] = ACTIONS(1075), + [sym__newline] = ACTIONS(1114), + [sym__indent] = ACTIONS(1116), [sym_string_start] = ACTIONS(117), }, [438] = { - [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__simple_statements] = STATE(4065), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -84912,71 +85070,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1077), - [sym__indent] = ACTIONS(1079), + [sym__newline] = ACTIONS(1118), + [sym__indent] = ACTIONS(1120), [sym_string_start] = ACTIONS(117), }, [439] = { - [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__simple_statements] = STATE(4066), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85026,71 +85184,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1081), - [sym__indent] = ACTIONS(1083), + [sym__newline] = ACTIONS(1122), + [sym__indent] = ACTIONS(1124), [sym_string_start] = ACTIONS(117), }, [440] = { - [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__simple_statements] = STATE(4068), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85140,71 +85298,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1085), - [sym__indent] = ACTIONS(1087), + [sym__newline] = ACTIONS(1126), + [sym__indent] = ACTIONS(1128), [sym_string_start] = ACTIONS(117), }, [441] = { - [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__simple_statements] = STATE(4072), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85254,71 +85412,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1089), - [sym__indent] = ACTIONS(1091), + [sym__newline] = ACTIONS(1130), + [sym__indent] = ACTIONS(1132), [sym_string_start] = ACTIONS(117), }, [442] = { - [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__simple_statements] = STATE(4078), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85368,71 +85526,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1093), - [sym__indent] = ACTIONS(1095), + [sym__newline] = ACTIONS(1134), + [sym__indent] = ACTIONS(1136), [sym_string_start] = ACTIONS(117), }, [443] = { - [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__simple_statements] = STATE(1741), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85482,71 +85640,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1097), - [sym__indent] = ACTIONS(1099), + [sym__newline] = ACTIONS(1138), + [sym__indent] = ACTIONS(1140), [sym_string_start] = ACTIONS(117), }, [444] = { - [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__simple_statements] = STATE(1305), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85596,71 +85754,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1101), - [sym__indent] = ACTIONS(1103), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(117), }, [445] = { - [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__simple_statements] = STATE(1446), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85710,71 +85868,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1105), - [sym__indent] = ACTIONS(1107), + [sym__newline] = ACTIONS(1142), + [sym__indent] = ACTIONS(1144), [sym_string_start] = ACTIONS(117), }, [446] = { - [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__simple_statements] = STATE(867), + [sym_import_statement] = STATE(6334), + [sym_future_import_statement] = STATE(6334), + [sym_import_from_statement] = STATE(6334), + [sym_print_statement] = STATE(6334), + [sym_assert_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6334), + [sym_delete_statement] = STATE(6334), + [sym_raise_statement] = STATE(6334), + [sym_pass_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_global_statement] = STATE(6334), + [sym_nonlocal_statement] = STATE(6334), + [sym_exec_statement] = STATE(6334), + [sym_type_alias_statement] = STATE(6334), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6334), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85824,71 +85982,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1109), - [sym__indent] = ACTIONS(1111), + [sym__newline] = ACTIONS(1146), + [sym__indent] = ACTIONS(1148), [sym_string_start] = ACTIONS(117), }, [447] = { - [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__simple_statements] = STATE(1423), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -85938,71 +86096,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1113), - [sym__indent] = ACTIONS(1115), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(117), }, [448] = { - [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__simple_statements] = STATE(1307), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86052,71 +86210,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1117), - [sym__indent] = ACTIONS(1119), + [sym__newline] = ACTIONS(1150), + [sym__indent] = ACTIONS(1152), [sym_string_start] = ACTIONS(117), }, [449] = { - [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__simple_statements] = STATE(3990), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86166,71 +86324,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1121), - [sym__indent] = ACTIONS(1123), + [sym__newline] = ACTIONS(1154), + [sym__indent] = ACTIONS(1156), [sym_string_start] = ACTIONS(117), }, [450] = { - [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__simple_statements] = STATE(1777), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86280,71 +86438,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(1158), + [sym__indent] = ACTIONS(1160), [sym_string_start] = ACTIONS(117), }, [451] = { - [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__simple_statements] = STATE(1120), + [sym_import_statement] = STATE(6334), + [sym_future_import_statement] = STATE(6334), + [sym_import_from_statement] = STATE(6334), + [sym_print_statement] = STATE(6334), + [sym_assert_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6334), + [sym_delete_statement] = STATE(6334), + [sym_raise_statement] = STATE(6334), + [sym_pass_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_global_statement] = STATE(6334), + [sym_nonlocal_statement] = STATE(6334), + [sym_exec_statement] = STATE(6334), + [sym_type_alias_statement] = STATE(6334), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6334), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86394,71 +86552,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1125), - [sym__indent] = ACTIONS(1127), + [sym__newline] = ACTIONS(1162), + [sym__indent] = ACTIONS(1164), [sym_string_start] = ACTIONS(117), }, [452] = { - [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__simple_statements] = STATE(3994), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86508,71 +86666,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1129), - [sym__indent] = ACTIONS(1131), + [sym__newline] = ACTIONS(1166), + [sym__indent] = ACTIONS(1168), [sym_string_start] = ACTIONS(117), }, [453] = { - [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__simple_statements] = STATE(1467), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86622,71 +86780,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1133), - [sym__indent] = ACTIONS(1135), + [sym__newline] = ACTIONS(1170), + [sym__indent] = ACTIONS(1172), [sym_string_start] = ACTIONS(117), }, [454] = { - [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__simple_statements] = STATE(1474), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86736,71 +86894,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1137), - [sym__indent] = ACTIONS(1139), + [sym__newline] = ACTIONS(1174), + [sym__indent] = ACTIONS(1176), [sym_string_start] = ACTIONS(117), }, [455] = { - [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__simple_statements] = STATE(3997), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86850,71 +87008,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(1178), + [sym__indent] = ACTIONS(1180), [sym_string_start] = ACTIONS(117), }, [456] = { - [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__simple_statements] = STATE(1782), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -86964,71 +87122,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1141), - [sym__indent] = ACTIONS(1143), + [sym__newline] = ACTIONS(1182), + [sym__indent] = ACTIONS(1184), [sym_string_start] = ACTIONS(117), }, [457] = { - [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__simple_statements] = STATE(4000), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87078,71 +87236,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1145), - [sym__indent] = ACTIONS(1147), + [sym__newline] = ACTIONS(1186), + [sym__indent] = ACTIONS(1188), [sym_string_start] = ACTIONS(117), }, [458] = { - [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__simple_statements] = STATE(4001), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87192,71 +87350,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1149), - [sym__indent] = ACTIONS(1151), + [sym__newline] = ACTIONS(1190), + [sym__indent] = ACTIONS(1192), [sym_string_start] = ACTIONS(117), }, [459] = { - [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__simple_statements] = STATE(1475), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87306,101 +87464,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1153), - [sym__indent] = ACTIONS(1155), + [sym__newline] = ACTIONS(1194), + [sym__indent] = ACTIONS(1196), [sym_string_start] = ACTIONS(117), }, [460] = { - [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), - [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), + [sym_chevron] = STATE(6000), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5246), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_not] = ACTIONS(1084), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -87411,80 +87571,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, [461] = { - [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__simple_statements] = STATE(1313), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87534,71 +87692,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1161), - [sym__indent] = ACTIONS(1163), + [sym__newline] = ACTIONS(1201), + [sym__indent] = ACTIONS(1203), [sym_string_start] = ACTIONS(117), }, [462] = { - [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__simple_statements] = STATE(1310), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87648,71 +87806,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1165), - [sym__indent] = ACTIONS(1167), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(117), }, [463] = { - [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__simple_statements] = STATE(4012), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87762,71 +87920,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1169), - [sym__indent] = ACTIONS(1171), + [sym__newline] = ACTIONS(1205), + [sym__indent] = ACTIONS(1207), [sym_string_start] = ACTIONS(117), }, [464] = { - [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__simple_statements] = STATE(4013), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87876,71 +88034,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1173), - [sym__indent] = ACTIONS(1175), + [sym__newline] = ACTIONS(1209), + [sym__indent] = ACTIONS(1211), [sym_string_start] = ACTIONS(117), }, [465] = { - [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__simple_statements] = STATE(4014), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -87990,71 +88148,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1177), - [sym__indent] = ACTIONS(1179), + [sym__newline] = ACTIONS(1213), + [sym__indent] = ACTIONS(1215), [sym_string_start] = ACTIONS(117), }, [466] = { - [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__simple_statements] = STATE(1481), + [sym_import_statement] = STATE(6514), + [sym_future_import_statement] = STATE(6514), + [sym_import_from_statement] = STATE(6514), + [sym_print_statement] = STATE(6514), + [sym_assert_statement] = STATE(6514), + [sym_expression_statement] = STATE(6514), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6514), + [sym_delete_statement] = STATE(6514), + [sym_raise_statement] = STATE(6514), + [sym_pass_statement] = STATE(6514), + [sym_break_statement] = STATE(6514), + [sym_continue_statement] = STATE(6514), + [sym_global_statement] = STATE(6514), + [sym_nonlocal_statement] = STATE(6514), + [sym_exec_statement] = STATE(6514), + [sym_type_alias_statement] = STATE(6514), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6514), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88104,71 +88262,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1181), - [sym__indent] = ACTIONS(1183), + [sym__newline] = ACTIONS(1217), + [sym__indent] = ACTIONS(1219), [sym_string_start] = ACTIONS(117), }, [467] = { - [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__simple_statements] = STATE(4018), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88218,71 +88376,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(465), - [sym__indent] = ACTIONS(467), + [sym__newline] = ACTIONS(1221), + [sym__indent] = ACTIONS(1223), [sym_string_start] = ACTIONS(117), }, [468] = { - [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__simple_statements] = STATE(1315), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88332,71 +88490,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1185), - [sym__indent] = ACTIONS(1187), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(117), }, [469] = { - [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__simple_statements] = STATE(4030), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88446,71 +88604,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1189), - [sym__indent] = ACTIONS(1191), + [sym__newline] = ACTIONS(1225), + [sym__indent] = ACTIONS(1227), [sym_string_start] = ACTIONS(117), }, [470] = { - [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__simple_statements] = STATE(4034), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88560,71 +88718,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1193), - [sym__indent] = ACTIONS(1195), + [sym__newline] = ACTIONS(1229), + [sym__indent] = ACTIONS(1231), [sym_string_start] = ACTIONS(117), }, [471] = { - [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__simple_statements] = STATE(4035), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88674,71 +88832,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1197), - [sym__indent] = ACTIONS(1199), + [sym__newline] = ACTIONS(1233), + [sym__indent] = ACTIONS(1235), [sym_string_start] = ACTIONS(117), }, [472] = { - [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__simple_statements] = STATE(1317), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88788,71 +88946,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1201), - [sym__indent] = ACTIONS(1203), + [sym__newline] = ACTIONS(1237), + [sym__indent] = ACTIONS(1239), [sym_string_start] = ACTIONS(117), }, [473] = { - [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__simple_statements] = STATE(4043), + [sym_import_statement] = STATE(6065), + [sym_future_import_statement] = STATE(6065), + [sym_import_from_statement] = STATE(6065), + [sym_print_statement] = STATE(6065), + [sym_assert_statement] = STATE(6065), + [sym_expression_statement] = STATE(6065), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6065), + [sym_delete_statement] = STATE(6065), + [sym_raise_statement] = STATE(6065), + [sym_pass_statement] = STATE(6065), + [sym_break_statement] = STATE(6065), + [sym_continue_statement] = STATE(6065), + [sym_global_statement] = STATE(6065), + [sym_nonlocal_statement] = STATE(6065), + [sym_exec_statement] = STATE(6065), + [sym_type_alias_statement] = STATE(6065), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6065), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -88902,71 +89060,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1205), - [sym__indent] = ACTIONS(1207), + [sym__newline] = ACTIONS(1241), + [sym__indent] = ACTIONS(1243), [sym_string_start] = ACTIONS(117), }, [474] = { - [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__simple_statements] = STATE(3676), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89016,71 +89174,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), + [sym__newline] = ACTIONS(1245), + [sym__indent] = ACTIONS(1247), [sym_string_start] = ACTIONS(117), }, [475] = { - [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__simple_statements] = STATE(3683), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89130,71 +89288,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1209), - [sym__indent] = ACTIONS(1211), + [sym__newline] = ACTIONS(1249), + [sym__indent] = ACTIONS(1251), [sym_string_start] = ACTIONS(117), }, [476] = { - [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__simple_statements] = STATE(3690), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89244,71 +89402,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1213), - [sym__indent] = ACTIONS(1215), + [sym__newline] = ACTIONS(1253), + [sym__indent] = ACTIONS(1255), [sym_string_start] = ACTIONS(117), }, [477] = { - [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__simple_statements] = STATE(3691), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89358,71 +89516,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1217), - [sym__indent] = ACTIONS(1219), + [sym__newline] = ACTIONS(1257), + [sym__indent] = ACTIONS(1259), [sym_string_start] = ACTIONS(117), }, [478] = { - [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__simple_statements] = STATE(3692), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89472,71 +89630,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1221), - [sym__indent] = ACTIONS(1223), + [sym__newline] = ACTIONS(1261), + [sym__indent] = ACTIONS(1263), [sym_string_start] = ACTIONS(117), }, [479] = { - [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__simple_statements] = STATE(3699), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89586,71 +89744,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1225), - [sym__indent] = ACTIONS(1227), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(117), }, [480] = { - [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__simple_statements] = STATE(3702), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89700,71 +89858,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1229), - [sym__indent] = ACTIONS(1231), + [sym__newline] = ACTIONS(1265), + [sym__indent] = ACTIONS(1267), [sym_string_start] = ACTIONS(117), }, [481] = { - [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__simple_statements] = STATE(3706), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89814,71 +89972,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1233), - [sym__indent] = ACTIONS(1235), + [sym__newline] = ACTIONS(1269), + [sym__indent] = ACTIONS(1271), [sym_string_start] = ACTIONS(117), }, [482] = { - [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__simple_statements] = STATE(3710), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -89928,71 +90086,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1237), - [sym__indent] = ACTIONS(1239), + [sym__newline] = ACTIONS(1273), + [sym__indent] = ACTIONS(1275), [sym_string_start] = ACTIONS(117), }, [483] = { - [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__simple_statements] = STATE(3713), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90042,71 +90200,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1241), - [sym__indent] = ACTIONS(1243), + [sym__newline] = ACTIONS(1277), + [sym__indent] = ACTIONS(1279), [sym_string_start] = ACTIONS(117), }, [484] = { - [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__simple_statements] = STATE(3714), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90156,71 +90314,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1245), - [sym__indent] = ACTIONS(1247), + [sym__newline] = ACTIONS(1281), + [sym__indent] = ACTIONS(1283), [sym_string_start] = ACTIONS(117), }, [485] = { - [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__simple_statements] = STATE(3723), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90270,71 +90428,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(1285), + [sym__indent] = ACTIONS(1287), [sym_string_start] = ACTIONS(117), }, [486] = { - [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__simple_statements] = STATE(3720), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90384,71 +90542,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1249), - [sym__indent] = ACTIONS(1251), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(117), }, [487] = { - [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__simple_statements] = STATE(3735), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90498,71 +90656,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1253), - [sym__indent] = ACTIONS(1255), + [sym__newline] = ACTIONS(1289), + [sym__indent] = ACTIONS(1291), [sym_string_start] = ACTIONS(117), }, [488] = { - [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__simple_statements] = STATE(3736), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90612,71 +90770,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1257), - [sym__indent] = ACTIONS(1259), + [sym__newline] = ACTIONS(1293), + [sym__indent] = ACTIONS(1295), [sym_string_start] = ACTIONS(117), }, [489] = { - [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__simple_statements] = STATE(3737), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90726,71 +90884,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1261), - [sym__indent] = ACTIONS(1263), + [sym__newline] = ACTIONS(1297), + [sym__indent] = ACTIONS(1299), [sym_string_start] = ACTIONS(117), }, [490] = { - [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__simple_statements] = STATE(3738), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90840,71 +90998,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1265), - [sym__indent] = ACTIONS(1267), + [sym__newline] = ACTIONS(1301), + [sym__indent] = ACTIONS(1303), [sym_string_start] = ACTIONS(117), }, [491] = { - [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__simple_statements] = STATE(3742), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -90954,71 +91112,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1269), - [sym__indent] = ACTIONS(1271), + [sym__newline] = ACTIONS(1305), + [sym__indent] = ACTIONS(1307), [sym_string_start] = ACTIONS(117), }, [492] = { - [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__simple_statements] = STATE(3747), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91068,71 +91226,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1273), - [sym__indent] = ACTIONS(1275), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3751), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91182,71 +91340,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1277), - [sym__indent] = ACTIONS(1279), + [sym__newline] = ACTIONS(1309), + [sym__indent] = ACTIONS(1311), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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__simple_statements] = STATE(3766), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91296,71 +91454,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1281), - [sym__indent] = ACTIONS(1283), + [sym__newline] = ACTIONS(1313), + [sym__indent] = ACTIONS(1315), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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__simple_statements] = STATE(1122), + [sym_import_statement] = STATE(6334), + [sym_future_import_statement] = STATE(6334), + [sym_import_from_statement] = STATE(6334), + [sym_print_statement] = STATE(6334), + [sym_assert_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6334), + [sym_delete_statement] = STATE(6334), + [sym_raise_statement] = STATE(6334), + [sym_pass_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_global_statement] = STATE(6334), + [sym_nonlocal_statement] = STATE(6334), + [sym_exec_statement] = STATE(6334), + [sym_type_alias_statement] = STATE(6334), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6334), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91410,71 +91568,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1285), - [sym__indent] = ACTIONS(1287), + [sym__newline] = ACTIONS(1317), + [sym__indent] = ACTIONS(1319), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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__simple_statements] = STATE(3769), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91524,71 +91682,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1289), - [sym__indent] = ACTIONS(1291), + [sym__newline] = ACTIONS(1321), + [sym__indent] = ACTIONS(1323), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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__simple_statements] = STATE(3770), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91638,71 +91796,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1293), - [sym__indent] = ACTIONS(1295), + [sym__newline] = ACTIONS(1325), + [sym__indent] = ACTIONS(1327), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3772), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91752,71 +91910,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), + [sym__newline] = ACTIONS(1329), + [sym__indent] = ACTIONS(1331), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3773), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91866,71 +92024,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1297), - [sym__indent] = ACTIONS(1299), + [sym__newline] = ACTIONS(1333), + [sym__indent] = ACTIONS(1335), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3774), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -91980,71 +92138,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1301), - [sym__indent] = ACTIONS(1303), + [sym__newline] = ACTIONS(1337), + [sym__indent] = ACTIONS(1339), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3778), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92094,71 +92252,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1305), - [sym__indent] = ACTIONS(1307), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3780), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92208,71 +92366,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1309), - [sym__indent] = ACTIONS(1311), + [sym__newline] = ACTIONS(1341), + [sym__indent] = ACTIONS(1343), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3796), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92322,71 +92480,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1313), - [sym__indent] = ACTIONS(1315), + [sym__newline] = ACTIONS(1345), + [sym__indent] = ACTIONS(1347), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3800), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92436,71 +92594,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1317), - [sym__indent] = ACTIONS(1319), + [sym__newline] = ACTIONS(1349), + [sym__indent] = ACTIONS(1351), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3803), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92550,71 +92708,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1321), - [sym__indent] = ACTIONS(1323), + [sym__newline] = ACTIONS(1353), + [sym__indent] = ACTIONS(1355), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3806), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92664,71 +92822,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1325), - [sym__indent] = ACTIONS(1327), + [sym__newline] = ACTIONS(1357), + [sym__indent] = ACTIONS(1359), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3807), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92778,71 +92936,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1329), - [sym__indent] = ACTIONS(1331), + [sym__newline] = ACTIONS(1361), + [sym__indent] = ACTIONS(1363), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3812), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -92892,71 +93050,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1333), - [sym__indent] = ACTIONS(1335), + [sym__newline] = ACTIONS(1365), + [sym__indent] = ACTIONS(1367), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3809), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93006,71 +93164,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1337), - [sym__indent] = ACTIONS(1339), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3827), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93120,71 +93278,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1341), - [sym__indent] = ACTIONS(1343), + [sym__newline] = ACTIONS(1369), + [sym__indent] = ACTIONS(1371), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3828), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93234,71 +93392,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1345), - [sym__indent] = ACTIONS(1347), + [sym__newline] = ACTIONS(1373), + [sym__indent] = ACTIONS(1375), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3829), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93348,71 +93506,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1349), - [sym__indent] = ACTIONS(1351), + [sym__newline] = ACTIONS(1377), + [sym__indent] = ACTIONS(1379), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3833), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93462,71 +93620,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1353), - [sym__indent] = ACTIONS(1355), + [sym__newline] = ACTIONS(1381), + [sym__indent] = ACTIONS(1383), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3836), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93576,71 +93734,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1357), - [sym__indent] = ACTIONS(1359), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3849), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93690,71 +93848,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1361), - [sym__indent] = ACTIONS(1363), + [sym__newline] = ACTIONS(1385), + [sym__indent] = ACTIONS(1387), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3852), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93804,71 +93962,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(1389), + [sym__indent] = ACTIONS(1391), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3853), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -93918,71 +94076,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1365), - [sym__indent] = ACTIONS(1367), + [sym__newline] = ACTIONS(1393), + [sym__indent] = ACTIONS(1395), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3855), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94032,71 +94190,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1369), - [sym__indent] = ACTIONS(1371), + [sym__newline] = ACTIONS(1397), + [sym__indent] = ACTIONS(1399), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(3864), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94146,71 +94304,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1373), - [sym__indent] = ACTIONS(1375), + [sym__newline] = ACTIONS(1401), + [sym__indent] = ACTIONS(1403), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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__simple_statements] = STATE(3867), + [sym_import_statement] = STATE(6178), + [sym_future_import_statement] = STATE(6178), + [sym_import_from_statement] = STATE(6178), + [sym_print_statement] = STATE(6178), + [sym_assert_statement] = STATE(6178), + [sym_expression_statement] = STATE(6178), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6178), + [sym_delete_statement] = STATE(6178), + [sym_raise_statement] = STATE(6178), + [sym_pass_statement] = STATE(6178), + [sym_break_statement] = STATE(6178), + [sym_continue_statement] = STATE(6178), + [sym_global_statement] = STATE(6178), + [sym_nonlocal_statement] = STATE(6178), + [sym_exec_statement] = STATE(6178), + [sym_type_alias_statement] = STATE(6178), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6178), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94260,71 +94418,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1377), - [sym__indent] = ACTIONS(1379), + [sym__newline] = ACTIONS(1405), + [sym__indent] = ACTIONS(1407), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(843), + [sym_import_statement] = STATE(6145), + [sym_future_import_statement] = STATE(6145), + [sym_import_from_statement] = STATE(6145), + [sym_print_statement] = STATE(6145), + [sym_assert_statement] = STATE(6145), + [sym_expression_statement] = STATE(6145), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6145), + [sym_delete_statement] = STATE(6145), + [sym_raise_statement] = STATE(6145), + [sym_pass_statement] = STATE(6145), + [sym_break_statement] = STATE(6145), + [sym_continue_statement] = STATE(6145), + [sym_global_statement] = STATE(6145), + [sym_nonlocal_statement] = STATE(6145), + [sym_exec_statement] = STATE(6145), + [sym_type_alias_statement] = STATE(6145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6145), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94374,71 +94532,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1381), - [sym__indent] = ACTIONS(1383), + [sym__newline] = ACTIONS(1409), + [sym__indent] = ACTIONS(1411), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(1055), + [sym_import_statement] = STATE(6145), + [sym_future_import_statement] = STATE(6145), + [sym_import_from_statement] = STATE(6145), + [sym_print_statement] = STATE(6145), + [sym_assert_statement] = STATE(6145), + [sym_expression_statement] = STATE(6145), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6145), + [sym_delete_statement] = STATE(6145), + [sym_raise_statement] = STATE(6145), + [sym_pass_statement] = STATE(6145), + [sym_break_statement] = STATE(6145), + [sym_continue_statement] = STATE(6145), + [sym_global_statement] = STATE(6145), + [sym_nonlocal_statement] = STATE(6145), + [sym_exec_statement] = STATE(6145), + [sym_type_alias_statement] = STATE(6145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6145), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94488,71 +94646,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(441), - [sym__indent] = ACTIONS(443), + [sym__newline] = ACTIONS(1413), + [sym__indent] = ACTIONS(1415), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(1056), + [sym_import_statement] = STATE(6145), + [sym_future_import_statement] = STATE(6145), + [sym_import_from_statement] = STATE(6145), + [sym_print_statement] = STATE(6145), + [sym_assert_statement] = STATE(6145), + [sym_expression_statement] = STATE(6145), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6145), + [sym_delete_statement] = STATE(6145), + [sym_raise_statement] = STATE(6145), + [sym_pass_statement] = STATE(6145), + [sym_break_statement] = STATE(6145), + [sym_continue_statement] = STATE(6145), + [sym_global_statement] = STATE(6145), + [sym_nonlocal_statement] = STATE(6145), + [sym_exec_statement] = STATE(6145), + [sym_type_alias_statement] = STATE(6145), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6145), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94602,71 +94760,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1385), - [sym__indent] = ACTIONS(1387), + [sym__newline] = ACTIONS(1417), + [sym__indent] = ACTIONS(1419), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(2144), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94716,71 +94874,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1389), - [sym__indent] = ACTIONS(1391), + [sym__newline] = ACTIONS(1421), + [sym__indent] = ACTIONS(1423), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(1826), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94830,71 +94988,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1393), - [sym__indent] = ACTIONS(1395), + [sym__newline] = ACTIONS(1425), + [sym__indent] = ACTIONS(1427), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(2145), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -94944,71 +95102,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1397), - [sym__indent] = ACTIONS(1399), + [sym__newline] = ACTIONS(1429), + [sym__indent] = ACTIONS(1431), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(865), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95058,71 +95216,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(457), - [sym__indent] = ACTIONS(459), + [sym__newline] = ACTIONS(1433), + [sym__indent] = ACTIONS(1435), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(5175), + [sym_import_statement] = STATE(6286), + [sym_future_import_statement] = STATE(6286), + [sym_import_from_statement] = STATE(6286), + [sym_print_statement] = STATE(6286), + [sym_assert_statement] = STATE(6286), + [sym_expression_statement] = STATE(6286), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6286), + [sym_delete_statement] = STATE(6286), + [sym_raise_statement] = STATE(6286), + [sym_pass_statement] = STATE(6286), + [sym_break_statement] = STATE(6286), + [sym_continue_statement] = STATE(6286), + [sym_global_statement] = STATE(6286), + [sym_nonlocal_statement] = STATE(6286), + [sym_exec_statement] = STATE(6286), + [sym_type_alias_statement] = STATE(6286), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6286), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95172,71 +95330,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(481), - [sym__indent] = ACTIONS(483), + [sym__newline] = ACTIONS(1437), + [sym__indent] = ACTIONS(1439), [sym_string_start] = ACTIONS(117), }, [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__simple_statements] = STATE(1320), + [sym_import_statement] = STATE(6431), + [sym_future_import_statement] = STATE(6431), + [sym_import_from_statement] = STATE(6431), + [sym_print_statement] = STATE(6431), + [sym_assert_statement] = STATE(6431), + [sym_expression_statement] = STATE(6431), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6431), + [sym_delete_statement] = STATE(6431), + [sym_raise_statement] = STATE(6431), + [sym_pass_statement] = STATE(6431), + [sym_break_statement] = STATE(6431), + [sym_continue_statement] = STATE(6431), + [sym_global_statement] = STATE(6431), + [sym_nonlocal_statement] = STATE(6431), + [sym_exec_statement] = STATE(6431), + [sym_type_alias_statement] = STATE(6431), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6431), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95286,299 +95444,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1401), - [sym__indent] = ACTIONS(1403), + [sym__newline] = ACTIONS(1441), + [sym__indent] = ACTIONS(1443), [sym_string_start] = ACTIONS(117), }, [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), + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5280), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1057), + [sym_string_start] = ACTIONS(1489), }, [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), + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5250), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1057), + [sym_string_start] = ACTIONS(1489), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95628,71 +95783,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1413), - [sym__indent] = ACTIONS(1415), + [sym__newline] = ACTIONS(1491), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95742,71 +95895,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1417), - [sym__indent] = ACTIONS(1419), + [sym__newline] = ACTIONS(1493), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95856,71 +96007,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1421), - [sym__indent] = ACTIONS(1423), + [sym__newline] = ACTIONS(1495), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -95970,71 +96119,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1425), - [sym__indent] = ACTIONS(1427), + [sym__newline] = ACTIONS(1497), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96084,71 +96231,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1429), - [sym__indent] = ACTIONS(1431), + [sym__newline] = ACTIONS(1499), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96198,71 +96343,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1433), - [sym__indent] = ACTIONS(1435), + [sym__newline] = ACTIONS(1501), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96312,71 +96455,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1437), - [sym__indent] = ACTIONS(1439), + [sym__newline] = ACTIONS(1503), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96426,71 +96567,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1441), - [sym__indent] = ACTIONS(1443), + [sym__newline] = ACTIONS(1505), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96540,71 +96679,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1445), - [sym__indent] = ACTIONS(1447), + [sym__newline] = ACTIONS(1507), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96654,71 +96791,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1449), - [sym__indent] = ACTIONS(1451), + [sym__newline] = ACTIONS(1509), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96768,71 +96903,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1453), - [sym__indent] = ACTIONS(1455), + [sym__newline] = ACTIONS(1511), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96882,71 +97015,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1457), - [sym__indent] = ACTIONS(1459), + [sym__newline] = ACTIONS(1513), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -96996,71 +97127,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1461), - [sym__indent] = ACTIONS(1463), + [sym__newline] = ACTIONS(1515), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97110,71 +97239,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1465), - [sym__indent] = ACTIONS(1467), + [sym__newline] = ACTIONS(1517), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97224,71 +97351,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1469), - [sym__indent] = ACTIONS(1471), + [sym__newline] = ACTIONS(1519), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97338,71 +97463,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1473), - [sym__indent] = ACTIONS(1475), + [sym__newline] = ACTIONS(1521), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97452,71 +97575,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1477), - [sym__indent] = ACTIONS(1479), + [sym__newline] = ACTIONS(1523), [sym_string_start] = ACTIONS(117), }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97566,71 +97687,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1481), - [sym__indent] = ACTIONS(1483), + [sym__newline] = ACTIONS(1525), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97680,71 +97799,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(1527), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97794,71 +97911,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1485), - [sym__indent] = ACTIONS(1487), + [sym__newline] = ACTIONS(1529), [sym_string_start] = ACTIONS(117), }, [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_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -97908,410 +98023,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1489), - [sym__indent] = ACTIONS(1491), + [sym__newline] = ACTIONS(1531), [sym_string_start] = ACTIONS(117), }, [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), - }, - [554] = { - [sym_named_expression] = STATE(3946), - [sym__named_expression_lhs] = STATE(6967), - [sym_list_splat_pattern] = STATE(2843), - [sym_as_pattern] = STATE(3946), + [sym_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), [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), - }, - [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), - }, - [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -98361,69 +98135,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1539), + [sym__newline] = ACTIONS(1533), [sym_string_start] = ACTIONS(117), }, - [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), + [554] = { + [sym_import_statement] = STATE(6670), + [sym_future_import_statement] = STATE(6670), + [sym_import_from_statement] = STATE(6670), + [sym_print_statement] = STATE(6670), + [sym_assert_statement] = STATE(6670), + [sym_expression_statement] = STATE(6670), + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_return_statement] = STATE(6670), + [sym_delete_statement] = STATE(6670), + [sym_raise_statement] = STATE(6670), + [sym_pass_statement] = STATE(6670), + [sym_break_statement] = STATE(6670), + [sym_continue_statement] = STATE(6670), + [sym_global_statement] = STATE(6670), + [sym_nonlocal_statement] = STATE(6670), + [sym_exec_statement] = STATE(6670), + [sym_type_alias_statement] = STATE(6670), + [sym_pattern] = STATE(4433), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5113), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6727), + [sym_augmented_assignment] = STATE(6727), + [sym_pattern_list] = STATE(4567), + [sym_yield] = STATE(6727), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_include_statement] = STATE(6670), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -98473,99 +98247,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(101), [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1541), [sym_string_start] = ACTIONS(117), }, - [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), + [555] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2771), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -98576,108 +98340,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1547), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [556] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2771), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -98688,108 +98441,4044 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1547), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, + [557] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1551), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_AT_EQ] = ACTIONS(1549), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PERCENT_EQ] = ACTIONS(1549), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1549), + [anon_sym_GT_GT_EQ] = ACTIONS(1549), + [anon_sym_LT_LT_EQ] = ACTIONS(1549), + [anon_sym_AMP_EQ] = ACTIONS(1549), + [anon_sym_CARET_EQ] = ACTIONS(1549), + [anon_sym_PIPE_EQ] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(1489), + }, + [558] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym__patterns] = STATE(7027), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4709), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6301), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7043), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6775), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [559] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4753), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6071), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6913), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6850), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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), + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7027), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6775), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [561] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6713), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [562] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6799), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [563] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6272), + [sym_dictionary_splat] = STATE(6272), + [sym_parenthesized_list_splat] = STATE(6274), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5324), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6272), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [564] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6205), + [sym_dictionary_splat] = STATE(6205), + [sym_parenthesized_list_splat] = STATE(6206), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5416), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6205), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [565] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6160), + [sym_dictionary_splat] = STATE(6160), + [sym_parenthesized_list_splat] = STATE(6161), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5329), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6160), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_COMMA] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [566] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6125), + [sym_dictionary_splat] = STATE(6125), + [sym_parenthesized_list_splat] = STATE(6126), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5300), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6125), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [567] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6882), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [568] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6750), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [569] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6183), + [sym_dictionary_splat] = STATE(6183), + [sym_parenthesized_list_splat] = STATE(6184), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5336), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6183), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [570] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6080), + [sym_dictionary_splat] = STATE(6080), + [sym_parenthesized_list_splat] = STATE(6081), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5378), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6080), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [571] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6032), + [sym_dictionary_splat] = STATE(6032), + [sym_parenthesized_list_splat] = STATE(6036), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5418), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6032), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [572] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6682), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [573] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6272), + [sym_dictionary_splat] = STATE(6272), + [sym_parenthesized_list_splat] = STATE(6274), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5324), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6272), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [574] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6517), + [sym_dictionary_splat] = STATE(6517), + [sym_parenthesized_list_splat] = STATE(6519), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5313), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6517), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [575] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [576] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6032), + [sym_dictionary_splat] = STATE(6032), + [sym_parenthesized_list_splat] = STATE(6036), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5418), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6032), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [577] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6033), + [sym_dictionary_splat] = STATE(6033), + [sym_parenthesized_list_splat] = STATE(6034), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5419), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6033), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [578] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6080), + [sym_dictionary_splat] = STATE(6080), + [sym_parenthesized_list_splat] = STATE(6081), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5378), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6080), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [579] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6125), + [sym_dictionary_splat] = STATE(6125), + [sym_parenthesized_list_splat] = STATE(6126), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5300), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6125), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [580] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [581] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6033), + [sym_dictionary_splat] = STATE(6033), + [sym_parenthesized_list_splat] = STATE(6034), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5419), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6033), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [582] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6228), + [sym_dictionary_splat] = STATE(6228), + [sym_parenthesized_list_splat] = STATE(6229), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5404), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6228), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [583] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6517), + [sym_dictionary_splat] = STATE(6517), + [sym_parenthesized_list_splat] = STATE(6519), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5313), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6517), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [584] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6700), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [585] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6708), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [586] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6816), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [587] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6718), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [588] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6758), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [589] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6760), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [590] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6763), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [591] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6769), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [592] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6783), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [593] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6788), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [594] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6793), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [595] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6183), + [sym_dictionary_splat] = STATE(6183), + [sym_parenthesized_list_splat] = STATE(6184), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5336), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6183), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(5966), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [596] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4711), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6111), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7048), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6775), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [597] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4711), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6111), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7048), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6775), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [598] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4709), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6301), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7043), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6775), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [599] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2771), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -98800,108 +102489,963 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1547), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [600] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5805), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6817), + [sym_c_function_argument_type] = STATE(7102), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [601] = { + [sym_list_splat_pattern] = STATE(3218), + [sym_primary_expression] = STATE(2760), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_print] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(1790), + [anon_sym_api] = ACTIONS(1766), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [602] = { + [sym_list_splat_pattern] = STATE(3218), + [sym_primary_expression] = STATE(2760), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_print] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(1790), + [anon_sym_api] = ACTIONS(1766), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [603] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5680), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6908), + [sym_c_function_argument_type] = STATE(7071), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [604] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5782), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6752), + [sym_c_function_argument_type] = STATE(6926), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [605] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5619), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6786), + [sym_c_function_argument_type] = STATE(7150), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [606] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5672), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6843), + [sym_c_function_argument_type] = STATE(7157), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [607] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5682), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6651), + [sym_c_function_argument_type] = STATE(7026), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [608] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5693), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6719), + [sym_c_function_argument_type] = STATE(7184), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [609] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5701), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6765), + [sym_c_function_argument_type] = STATE(6979), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [610] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2953), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_from] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = 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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -98912,108 +103456,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [611] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2997), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_with] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = 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_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -99024,108 +103542,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1810), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(101), - [anon_sym_new] = ACTIONS(109), + [anon_sym_nogil] = ACTIONS(1059), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1551), + [sym__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [612] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2771), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -99136,108 +103630,863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1547), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [613] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(1489), + }, + [614] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2842), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [615] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1551), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_AT_EQ] = ACTIONS(1549), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PERCENT_EQ] = ACTIONS(1549), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1549), + [anon_sym_GT_GT_EQ] = ACTIONS(1549), + [anon_sym_LT_LT_EQ] = ACTIONS(1549), + [anon_sym_AMP_EQ] = ACTIONS(1549), + [anon_sym_CARET_EQ] = ACTIONS(1549), + [anon_sym_PIPE_EQ] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(1489), + }, + [616] = { + [sym_list_splat_pattern] = STATE(3218), + [sym_primary_expression] = STATE(2760), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_print] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_COLON] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(1790), + [anon_sym_api] = ACTIONS(1766), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [617] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1090), + [sym_string_start] = ACTIONS(1489), + }, + [618] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [sym_type_conversion] = ACTIONS(1549), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [619] = { + [sym_list_splat_pattern] = STATE(3218), + [sym_primary_expression] = STATE(2760), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_print] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(1790), + [anon_sym_api] = ACTIONS(1766), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [620] = { + [sym_list_splat_pattern] = STATE(2958), + [sym_primary_expression] = STATE(2797), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1857), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [621] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2842), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [622] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2997), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_with] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = 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_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -99248,108 +104497,1287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1810), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(101), - [anon_sym_new] = ACTIONS(109), + [anon_sym_nogil] = ACTIONS(1059), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1555), + [sym__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [623] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_with] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(1489), + }, + [624] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2842), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [625] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3265), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [626] = { + [sym_list_splat_pattern] = STATE(2958), + [sym_primary_expression] = STATE(2992), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1859), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1861), + }, + [627] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2973), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1626), + }, + [628] = { + [sym_list_splat_pattern] = STATE(3416), + [sym_primary_expression] = STATE(3225), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [629] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(2963), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [630] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(2963), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [631] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [632] = { + [sym_list_splat_pattern] = STATE(3416), + [sym_primary_expression] = STATE(3225), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [633] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_from] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(1549), + [sym_string_start] = ACTIONS(1489), + }, + [634] = { + [sym_list_splat_pattern] = STATE(2958), + [sym_primary_expression] = STATE(2797), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1857), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [635] = { + [sym_list_splat_pattern] = STATE(3516), + [sym_primary_expression] = STATE(3371), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_print] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_api] = ACTIONS(1957), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [636] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(2981), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1951), + }, + [637] = { + [sym_list_splat_pattern] = STATE(2689), + [sym_primary_expression] = STATE(2953), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_from] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_print] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = 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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -99360,98 +105788,3345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_api] = ACTIONS(1539), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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__newline] = ACTIONS(1057), [sym_string_start] = ACTIONS(117), }, - [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), + [638] = { + [sym_list_splat_pattern] = STATE(3516), + [sym_primary_expression] = STATE(3371), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_print] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_api] = ACTIONS(1957), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [639] = { + [sym_list_splat_pattern] = STATE(2958), + [sym_primary_expression] = STATE(2992), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1859), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1861), + }, + [640] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2842), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [641] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [642] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(2973), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1626), + }, + [643] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [644] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3325), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1489), + }, + [645] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3265), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [646] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [647] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(2981), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1951), + }, + [648] = { + [sym_list_splat_pattern] = STATE(3416), + [sym_primary_expression] = STATE(3225), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [649] = { + [sym_list_splat_pattern] = STATE(3516), + [sym_primary_expression] = STATE(3371), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_print] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_api] = ACTIONS(1957), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [650] = { + [sym_list_splat_pattern] = STATE(3218), + [sym_primary_expression] = STATE(2760), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_print] = ACTIONS(1766), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(1790), + [anon_sym_api] = ACTIONS(1766), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [651] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1551), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_AT_EQ] = ACTIONS(1549), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PERCENT_EQ] = ACTIONS(1549), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1549), + [anon_sym_GT_GT_EQ] = ACTIONS(1549), + [anon_sym_LT_LT_EQ] = ACTIONS(1549), + [anon_sym_AMP_EQ] = ACTIONS(1549), + [anon_sym_CARET_EQ] = ACTIONS(1549), + [anon_sym_PIPE_EQ] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [652] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_STAR_EQ] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1090), + [anon_sym_AT_EQ] = ACTIONS(1090), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1090), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1090), + [anon_sym_GT_GT_EQ] = ACTIONS(1090), + [anon_sym_LT_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_EQ] = ACTIONS(1090), + [anon_sym_CARET_EQ] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [653] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(2963), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [654] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), + }, + [655] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), + }, + [656] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [657] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), + }, + [658] = { + [sym_list_splat_pattern] = STATE(3516), + [sym_primary_expression] = STATE(3371), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_print] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1551), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_is] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT_GT] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_api] = ACTIONS(1957), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [659] = { + [sym_list_splat_pattern] = STATE(3416), + [sym_primary_expression] = STATE(3225), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [660] = { + [sym_list_splat_pattern] = STATE(3516), + [sym_primary_expression] = STATE(3371), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_print] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_api] = ACTIONS(1957), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [661] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3325), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1489), + }, + [662] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [663] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3460), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON_EQ] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [664] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), + }, + [665] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(3460), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_LT_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [666] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_is] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT_GT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [667] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(6928), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [668] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7024), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4748), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(6950), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [669] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7211), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [670] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7051), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [671] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6114), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4676), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5117), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(7099), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [672] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym__patterns] = STATE(7027), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4709), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6301), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7043), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [673] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7078), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [674] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7024), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [675] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6150), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4678), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5124), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(6941), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [676] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6313), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4680), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5204), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(7220), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [677] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6736), + [sym_pattern] = STATE(4455), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5154), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6736), + [sym_augmented_assignment] = STATE(6736), + [sym_pattern_list] = STATE(4444), + [sym__right_hand_side] = STATE(6736), + [sym_yield] = STATE(6736), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [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_print] = ACTIONS(405), [anon_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_exec] = ACTIONS(405), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -99478,92 +109153,718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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), }, - [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), + [678] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4753), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6071), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6913), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [679] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [680] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7203), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4703), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7224), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [681] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7088), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [682] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6338), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4649), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5169), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(6975), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [683] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7051), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4725), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7239), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [684] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6408), + [sym__patterns] = STATE(6972), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4809), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6451), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7263), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [685] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4753), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6071), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6913), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [686] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6737), + [sym_pattern] = STATE(4455), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5154), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6737), + [sym_augmented_assignment] = STATE(6737), + [sym_pattern_list] = STATE(4444), + [sym__right_hand_side] = STATE(6737), + [sym_yield] = STATE(6737), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [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_print] = ACTIONS(405), [anon_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_exec] = ACTIONS(405), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -99590,92 +109891,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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), }, - [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(2544), - [sym_call] = STATE(2544), - [sym_list] = STATE(2544), - [sym_set] = STATE(2544), - [sym_tuple] = STATE(2544), - [sym_dictionary] = STATE(2544), - [sym_list_comprehension] = STATE(2544), - [sym_dictionary_comprehension] = STATE(2544), - [sym_set_comprehension] = STATE(2544), - [sym_generator_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_conditional_expression] = STATE(4285), - [sym_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), + [687] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7027), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [688] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7051), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4772), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7138), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [689] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6626), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4671), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5218), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(7104), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [690] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6863), + [sym_pattern] = STATE(4455), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(2520), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5154), + [sym_primary_expression] = STATE(2619), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_assignment] = STATE(6863), + [sym_augmented_assignment] = STATE(6863), + [sym_pattern_list] = STATE(4444), + [sym__right_hand_side] = STATE(6863), + [sym_yield] = STATE(6863), + [sym_attribute] = STATE(2519), + [sym_subscript] = STATE(2519), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), [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_print] = ACTIONS(405), [anon_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_exec] = ACTIONS(405), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -99702,93 +110219,1597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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), }, - [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), + [691] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6459), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4663), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5140), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(6976), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [692] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4800), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6068), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7342), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [693] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7051), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [694] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6348), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4659), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5107), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(7059), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [695] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7051), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4725), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7239), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [696] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(6972), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [697] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym__patterns] = STATE(7203), + [sym_pattern] = STATE(6174), + [sym_tuple_pattern] = STATE(6785), + [sym_list_pattern] = STATE(6785), + [sym_list_splat_pattern] = STATE(3307), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3390), + [sym_subscript] = STATE(3390), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [698] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat] = STATE(6389), + [sym_dictionary_splat] = STATE(6070), + [sym_parenthesized_list_splat] = STATE(6389), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4674), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_yield] = STATE(6389), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_pair] = STATE(5102), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym__collection_elements] = STATE(7046), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [699] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(3372), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3374), + [sym_subscript] = STATE(3374), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_exec] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1608), + [anon_sym_api] = ACTIONS(1578), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [700] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_expression_list] = STATE(5655), + [sym_pattern] = STATE(6662), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(3248), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5001), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_pattern_list] = STATE(5655), + [sym_yield] = STATE(5655), + [sym_attribute] = STATE(3249), + [sym_subscript] = STATE(3249), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym__f_expression] = STATE(5655), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_exec] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_api] = ACTIONS(2113), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [701] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [702] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [703] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [704] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_expression_list] = STATE(5778), + [sym_pattern] = STATE(6662), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(3248), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5001), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_pattern_list] = STATE(5778), + [sym_yield] = STATE(5778), + [sym_attribute] = STATE(3249), + [sym_subscript] = STATE(3249), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym__f_expression] = STATE(5778), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_exec] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_api] = ACTIONS(2113), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [705] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [706] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [707] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [708] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6033), + [sym_dictionary_splat] = STATE(6033), + [sym_parenthesized_list_splat] = STATE(6034), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4758), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6033), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [709] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6517), + [sym_dictionary_splat] = STATE(6517), + [sym_parenthesized_list_splat] = STATE(6519), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4730), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6517), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [710] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5077), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5744), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -99797,7 +111818,6 @@ 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), [anon_sym_0x] = ACTIONS(81), @@ -99808,108 +111828,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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), }, - [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), + [711] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5150), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(5869), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [712] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4915), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5550), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2191), [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_lambda] = ACTIONS(2193), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -99920,108 +111986,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(101), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2195), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1567), [sym_string_start] = ACTIONS(117), }, - [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), + [713] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6618), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [714] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6077), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [715] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5493), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [716] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6032), + [sym_dictionary_splat] = STATE(6032), + [sym_parenthesized_list_splat] = STATE(6036), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4778), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6032), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [717] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5150), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(5864), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [718] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6272), + [sym_dictionary_splat] = STATE(6272), + [sym_parenthesized_list_splat] = STATE(6274), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4712), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6272), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [719] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5474), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [720] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5424), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [721] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4915), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5476), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2191), [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_lambda] = ACTIONS(2193), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -100032,108 +112697,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(101), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2195), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1569), [sym_string_start] = ACTIONS(117), }, - [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), + [722] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_with_item] = STATE(6539), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4796), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [723] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5150), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(5991), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [724] = { + [sym__patterns] = STATE(7027), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(4376), + [sym_primary_expression] = STATE(4384), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(4398), + [sym_subscript] = STATE(4398), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6689), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [725] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6125), + [sym_dictionary_splat] = STATE(6125), + [sym_parenthesized_list_splat] = STATE(6126), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4752), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6125), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [726] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6558), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [727] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(5869), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [728] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4915), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5512), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2191), [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_lambda] = ACTIONS(2193), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -100144,547 +113250,1252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(101), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2195), [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(1571), [sym_string_start] = ACTIONS(117), }, - [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), + [729] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6361), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [730] = { + [sym_pattern] = STATE(4385), + [sym_tuple_pattern] = STATE(4370), + [sym_list_pattern] = STATE(4370), + [sym_list_splat_pattern] = STATE(3381), + [sym_primary_expression] = STATE(4375), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3382), + [sym_subscript] = STATE(3382), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2235), + [anon_sym_COLON] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_exec] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_AT_EQ] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_api] = ACTIONS(2235), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(2229), + [sym_string_start] = ACTIONS(1489), }, - [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), + [731] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6312), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [732] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6637), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [733] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6370), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [734] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6415), + [sym_dictionary_splat] = STATE(6415), + [sym_parenthesized_list_splat] = STATE(6416), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4762), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6415), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [735] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6374), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [736] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5691), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [737] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5712), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [738] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5549), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [739] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5422), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_type] = STATE(6132), + [sym_splat_type] = STATE(6007), + [sym_generic_type] = STATE(6007), + [sym_union_type] = STATE(6007), + [sym_constrained_type] = STATE(6007), + [sym_member_type] = STATE(6007), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(523), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [740] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6183), + [sym_dictionary_splat] = STATE(6183), + [sym_parenthesized_list_splat] = STATE(6184), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4828), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6183), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [741] = { + [sym_pattern] = STATE(4385), + [sym_tuple_pattern] = STATE(4370), + [sym_list_pattern] = STATE(4370), + [sym_list_splat_pattern] = STATE(3381), + [sym_primary_expression] = STATE(4375), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3382), + [sym_subscript] = STATE(3382), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2235), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_exec] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(2243), + [anon_sym_DASH_EQ] = ACTIONS(2243), + [anon_sym_STAR_EQ] = ACTIONS(2243), + [anon_sym_SLASH_EQ] = ACTIONS(2243), + [anon_sym_AT_EQ] = ACTIONS(2243), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(2243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2243), + [anon_sym_GT_GT_EQ] = ACTIONS(2243), + [anon_sym_LT_LT_EQ] = ACTIONS(2243), + [anon_sym_AMP_EQ] = ACTIONS(2243), + [anon_sym_CARET_EQ] = ACTIONS(2243), + [anon_sym_PIPE_EQ] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_api] = ACTIONS(2235), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym__newline] = ACTIONS(2243), + [sym_string_start] = ACTIONS(1489), + }, + [742] = { + [sym__patterns] = STATE(7246), + [sym_pattern] = STATE(6057), + [sym_tuple_pattern] = STATE(6726), + [sym_list_pattern] = STATE(6726), + [sym_list_splat_pattern] = STATE(4376), + [sym_primary_expression] = STATE(4384), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(4398), + [sym_subscript] = STATE(4398), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_int_type] = STATE(4642), + [sym__signedness] = STATE(4337), + [sym__longness] = STATE(4553), + [sym_function_pointer_type] = STATE(4642), + [sym_c_type] = STATE(6689), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1612), + [anon_sym_double] = ACTIONS(1612), + [anon_sym_complex] = ACTIONS(1612), + [anon_sym_signed] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_short] = ACTIONS(1618), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_volatile] = ACTIONS(1622), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [743] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5073), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_type] = STATE(5713), + [sym_splat_type] = STATE(5649), + [sym_generic_type] = STATE(5649), + [sym_union_type] = STATE(5649), + [sym_constrained_type] = STATE(5649), + [sym_member_type] = STATE(5649), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_STAR_STAR] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [744] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5077), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5836), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -100693,7 +114504,6 @@ 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), [anon_sym_0x] = ACTIONS(81), @@ -100704,99 +114514,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(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), + [745] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5077), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_type] = STATE(5550), + [sym_splat_type] = STATE(5510), + [sym_generic_type] = STATE(5510), + [sym_union_type] = STATE(5510), + [sym_constrained_type] = STATE(5510), + [sym_member_type] = STATE(5510), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -100805,7 +114583,6 @@ 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), [anon_sym_0x] = ACTIONS(81), @@ -100816,10149 +114593,7921 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_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_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [746] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6080), + [sym_dictionary_splat] = STATE(6080), + [sym_parenthesized_list_splat] = STATE(6081), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4820), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_keyword_argument] = STATE(6080), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [747] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [748] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [749] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [750] = { + [sym_else_clause] = STATE(1053), + [sym_except_clause] = STATE(868), + [sym_finally_clause] = STATE(2057), + [aux_sym_try_statement_repeat1] = STATE(868), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_except] = ACTIONS(2261), + [anon_sym_finally] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym_string_start] = ACTIONS(2255), }, - [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), + [751] = { + [sym_else_clause] = STATE(1053), + [sym_except_group_clause] = STATE(873), + [sym_finally_clause] = STATE(2057), + [aux_sym_try_statement_repeat2] = STATE(873), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_except_STAR] = ACTIONS(2265), + [anon_sym_finally] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym_string_start] = ACTIONS(2255), }, - [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), + [752] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [753] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [754] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4753), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6071), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6913), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [755] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4725), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7239), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [756] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4709), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6301), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7043), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [757] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6377), + [sym_parenthesized_list_splat] = STATE(6378), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4738), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6620), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7083), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [758] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4709), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6301), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7043), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [759] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4776), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7057), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [760] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6064), + [sym_parenthesized_list_splat] = STATE(6067), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4711), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6111), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7048), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [761] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [762] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [763] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [764] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [765] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [766] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [767] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [768] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [769] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4747), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6341), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6989), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [770] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [771] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [772] = { + [sym_else_clause] = STATE(1072), + [sym_except_clause] = STATE(870), + [sym_finally_clause] = STATE(2155), + [aux_sym_try_statement_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_except] = ACTIONS(2309), + [anon_sym_finally] = ACTIONS(2311), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym__dedent] = ACTIONS(2255), + [sym_string_start] = ACTIONS(2255), }, - [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), + [773] = { + [sym_else_clause] = STATE(1072), + [sym_except_group_clause] = STATE(871), + [sym_finally_clause] = STATE(2155), + [aux_sym_try_statement_repeat2] = STATE(871), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_except_STAR] = ACTIONS(2313), + [anon_sym_finally] = ACTIONS(2311), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym__dedent] = ACTIONS(2255), + [sym_string_start] = ACTIONS(2255), }, - [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), + [774] = { + [sym_else_clause] = STATE(1127), + [sym_except_clause] = STATE(870), + [sym_finally_clause] = STATE(2177), + [aux_sym_try_statement_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(2315), + [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_else] = ACTIONS(2307), + [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_except] = ACTIONS(2309), + [anon_sym_finally] = ACTIONS(2311), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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), }, - [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), + [775] = { + [sym_else_clause] = STATE(1127), + [sym_except_group_clause] = STATE(871), + [sym_finally_clause] = STATE(2177), + [aux_sym_try_statement_repeat2] = STATE(871), + [sym_identifier] = ACTIONS(2315), + [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_else] = ACTIONS(2307), + [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_except_STAR] = ACTIONS(2313), + [anon_sym_finally] = ACTIONS(2311), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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), }, - [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), + [776] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4793), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6148), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6930), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [777] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4703), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7224), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [778] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6408), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4793), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6148), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(6930), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [779] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [780] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [781] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [782] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4809), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6451), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7263), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [783] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4748), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(6950), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [784] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6377), + [sym_parenthesized_list_splat] = STATE(6378), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4800), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6068), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7342), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [785] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [786] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [787] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [788] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [789] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4800), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6068), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7342), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [790] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4780), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(6935), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [791] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [792] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [793] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [794] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [795] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4738), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6620), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7083), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [796] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4772), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7138), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [797] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [798] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1881), + [799] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [800] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [801] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [802] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [803] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_nogil] = ACTIONS(983), - [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [804] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [805] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [806] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [807] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [808] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [809] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [810] = { + [sym_else_clause] = STATE(1136), + [sym_except_clause] = STATE(868), + [sym_finally_clause] = STATE(2146), + [aux_sym_try_statement_repeat1] = STATE(868), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2315), + [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_else] = ACTIONS(2259), + [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_except] = ACTIONS(2261), + [anon_sym_finally] = ACTIONS(2263), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2317), }, - [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), + [811] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [812] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [813] = { + [sym_else_clause] = STATE(1136), + [sym_except_group_clause] = STATE(873), + [sym_finally_clause] = STATE(2146), + [aux_sym_try_statement_repeat2] = STATE(873), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2315), + [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_else] = ACTIONS(2259), + [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_except_STAR] = ACTIONS(2265), + [anon_sym_finally] = ACTIONS(2263), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2317), }, - [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), + [814] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6039), + [sym_parenthesized_list_splat] = STATE(6039), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4711), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6111), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7048), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [815] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4766), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7092), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [816] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat] = STATE(6407), + [sym_parenthesized_list_splat] = STATE(6408), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4809), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_yield] = STATE(6451), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym__collection_elements] = STATE(7263), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), - }, - [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [817] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat] = STATE(6144), + [sym_parenthesized_list_splat] = STATE(6144), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4736), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_yield] = STATE(6144), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym__collection_elements] = STATE(7035), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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_nogil] = ACTIONS(983), - [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(981), - [sym_string_start] = ACTIONS(117), + [818] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [819] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [820] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_expression_list] = STATE(5645), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(4993), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_from] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(2399), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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_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_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), + [821] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [822] = { + [sym_pattern] = STATE(4443), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(3515), + [sym_primary_expression] = STATE(4390), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3518), + [sym_subscript] = STATE(3518), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2411), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_exec] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(2243), + [anon_sym_DASH_EQ] = ACTIONS(2243), + [anon_sym_STAR_EQ] = ACTIONS(2243), + [anon_sym_SLASH_EQ] = ACTIONS(2243), + [anon_sym_AT_EQ] = ACTIONS(2243), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(2243), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2243), + [anon_sym_GT_GT_EQ] = ACTIONS(2243), + [anon_sym_LT_LT_EQ] = ACTIONS(2243), + [anon_sym_AMP_EQ] = ACTIONS(2243), + [anon_sym_CARET_EQ] = ACTIONS(2243), + [anon_sym_PIPE_EQ] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2411), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [823] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5641), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5641), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [824] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5641), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5641), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [825] = { + [sym_pattern] = STATE(4443), + [sym_tuple_pattern] = STATE(4521), + [sym_list_pattern] = STATE(4521), + [sym_list_splat_pattern] = STATE(3515), + [sym_primary_expression] = STATE(4390), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3518), + [sym_subscript] = STATE(3518), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2411), + [anon_sym_COLON] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_exec] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(2229), + [anon_sym_DASH_EQ] = ACTIONS(2229), + [anon_sym_STAR_EQ] = ACTIONS(2229), + [anon_sym_SLASH_EQ] = ACTIONS(2229), + [anon_sym_AT_EQ] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2229), + [anon_sym_PERCENT_EQ] = ACTIONS(2229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2229), + [anon_sym_GT_GT_EQ] = ACTIONS(2229), + [anon_sym_LT_LT_EQ] = ACTIONS(2229), + [anon_sym_AMP_EQ] = ACTIONS(2229), + [anon_sym_CARET_EQ] = ACTIONS(2229), + [anon_sym_PIPE_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2411), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [826] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5641), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5641), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [827] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6690), + [sym_dictionary_splat] = STATE(6690), + [sym_parenthesized_list_splat] = STATE(6706), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5516), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_keyword_argument] = STATE(6690), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_STAR_STAR] = ACTIONS(1644), + [anon_sym_exec] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1672), + [anon_sym_api] = ACTIONS(1642), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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_sizeof] = ACTIONS(1961), - [sym_string_start] = ACTIONS(1963), + [828] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat] = STATE(6829), + [sym_parenthesized_list_splat] = STATE(6829), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5577), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_yield] = STATE(6829), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [829] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5641), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5641), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [830] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat] = STATE(6829), + [sym_parenthesized_list_splat] = STATE(6829), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5577), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_yield] = STATE(6829), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [831] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat] = STATE(6836), + [sym_parenthesized_list_splat] = STATE(6836), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5554), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_yield] = STATE(6836), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [832] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6697), + [sym_parenthesized_list_splat] = STATE(6697), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5500), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_yield] = STATE(6697), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [833] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat] = STATE(6836), + [sym_parenthesized_list_splat] = STATE(6836), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5554), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_yield] = STATE(6836), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [834] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5838), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5838), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), [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), - }, - [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), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [835] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5599), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5599), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [836] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5599), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5599), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [837] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5599), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5599), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [838] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5599), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5599), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [839] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6697), + [sym_parenthesized_list_splat] = STATE(6697), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5500), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_yield] = STATE(6697), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [840] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5838), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5838), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), [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), - }, - [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_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), - }, - [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), - }, - [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), - }, - [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_new] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(1961), - [sym_string_start] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [841] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5838), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5838), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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_new] = ACTIONS(2065), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1881), + [842] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5838), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5838), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [843] = { + [sym_elif_clause] = STATE(1063), + [sym_else_clause] = STATE(2148), + [aux_sym_if_statement_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(2469), + [anon_sym_import] = ACTIONS(2469), + [anon_sym_cimport] = ACTIONS(2469), + [anon_sym_from] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_del] = ACTIONS(2469), + [anon_sym_raise] = ACTIONS(2469), + [anon_sym_pass] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_elif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_with] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_global] = ACTIONS(2469), + [anon_sym_nonlocal] = ACTIONS(2469), + [anon_sym_exec] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_lambda] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), + [anon_sym_None] = ACTIONS(2469), + [anon_sym_0x] = ACTIONS(2471), + [anon_sym_0X] = ACTIONS(2471), + [anon_sym_0o] = ACTIONS(2471), + [anon_sym_0O] = ACTIONS(2471), + [anon_sym_0b] = ACTIONS(2471), + [anon_sym_0B] = ACTIONS(2471), + [aux_sym_integer_token4] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_api] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_DEF] = ACTIONS(2469), + [anon_sym_IF] = ACTIONS(2469), + [anon_sym_cdef] = ACTIONS(2469), + [anon_sym_cpdef] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_ctypedef] = ACTIONS(2469), + [anon_sym_public] = ACTIONS(2469), + [anon_sym_packed] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_readonly] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2469), + [sym__dedent] = ACTIONS(2471), + [sym_string_start] = ACTIONS(2471), }, - [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), + [844] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_expression_list] = STATE(6771), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5259), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_from] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [845] = { + [sym_elif_clause] = STATE(1106), + [sym_else_clause] = STATE(2096), + [aux_sym_if_statement_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_import] = ACTIONS(2479), + [anon_sym_cimport] = ACTIONS(2479), + [anon_sym_from] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2479), + [anon_sym_assert] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_del] = ACTIONS(2479), + [anon_sym_raise] = ACTIONS(2479), + [anon_sym_pass] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_with] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2479), + [anon_sym_global] = ACTIONS(2479), + [anon_sym_nonlocal] = ACTIONS(2479), + [anon_sym_exec] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_AT] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_lambda] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2477), + [anon_sym_None] = ACTIONS(2479), + [anon_sym_0x] = ACTIONS(2477), + [anon_sym_0X] = ACTIONS(2477), + [anon_sym_0o] = ACTIONS(2477), + [anon_sym_0O] = ACTIONS(2477), + [anon_sym_0b] = ACTIONS(2477), + [anon_sym_0B] = ACTIONS(2477), + [aux_sym_integer_token4] = ACTIONS(2479), + [sym_float] = ACTIONS(2477), + [anon_sym_await] = ACTIONS(2479), + [anon_sym_api] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2479), + [anon_sym_include] = ACTIONS(2479), + [anon_sym_DEF] = ACTIONS(2479), + [anon_sym_IF] = ACTIONS(2479), + [anon_sym_cdef] = ACTIONS(2479), + [anon_sym_cpdef] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_ctypedef] = ACTIONS(2479), + [anon_sym_public] = ACTIONS(2479), + [anon_sym_packed] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_readonly] = ACTIONS(2479), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_string_start] = ACTIONS(2477), }, - [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), + [846] = { + [sym_ELIF_clause] = STATE(1129), + [sym_ELSE_clause] = STATE(2093), + [aux_sym_IF_statement_repeat1] = STATE(948), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2485), + [anon_sym_import] = ACTIONS(2485), + [anon_sym_cimport] = ACTIONS(2485), + [anon_sym_from] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_assert] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_del] = ACTIONS(2485), + [anon_sym_raise] = ACTIONS(2485), + [anon_sym_pass] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_with] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_global] = ACTIONS(2485), + [anon_sym_nonlocal] = ACTIONS(2485), + [anon_sym_exec] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_lambda] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2483), + [anon_sym_None] = ACTIONS(2485), + [anon_sym_0x] = ACTIONS(2483), + [anon_sym_0X] = ACTIONS(2483), + [anon_sym_0o] = ACTIONS(2483), + [anon_sym_0O] = ACTIONS(2483), + [anon_sym_0b] = ACTIONS(2483), + [anon_sym_0B] = ACTIONS(2483), + [aux_sym_integer_token4] = ACTIONS(2485), + [sym_float] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_api] = ACTIONS(2485), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_DEF] = ACTIONS(2485), + [anon_sym_IF] = ACTIONS(2485), + [anon_sym_ELIF] = ACTIONS(2487), + [anon_sym_ELSE] = ACTIONS(2489), + [anon_sym_cdef] = ACTIONS(2485), + [anon_sym_cpdef] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_ctypedef] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_packed] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_string_start] = ACTIONS(2483), }, - [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), + [847] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_expression_list] = STATE(6582), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5053), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_from] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = 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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -110969,151 +122518,748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [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(2491), [sym_string_start] = ACTIONS(117), }, - [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), + [848] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_expression_list] = STATE(6740), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5289), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_from] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [849] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5084), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(2509), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [850] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [851] = { + [sym_elif_clause] = STATE(1106), + [sym_else_clause] = STATE(2099), + [aux_sym_if_statement_repeat1] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [anon_sym_import] = ACTIONS(2515), + [anon_sym_cimport] = ACTIONS(2515), + [anon_sym_from] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2515), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_del] = ACTIONS(2515), + [anon_sym_raise] = ACTIONS(2515), + [anon_sym_pass] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_elif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2515), + [anon_sym_global] = ACTIONS(2515), + [anon_sym_nonlocal] = ACTIONS(2515), + [anon_sym_exec] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_AT] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_lambda] = ACTIONS(2515), + [anon_sym_yield] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2513), + [anon_sym_None] = ACTIONS(2515), + [anon_sym_0x] = ACTIONS(2513), + [anon_sym_0X] = ACTIONS(2513), + [anon_sym_0o] = ACTIONS(2513), + [anon_sym_0O] = ACTIONS(2513), + [anon_sym_0b] = ACTIONS(2513), + [anon_sym_0B] = ACTIONS(2513), + [aux_sym_integer_token4] = ACTIONS(2515), + [sym_float] = ACTIONS(2513), + [anon_sym_await] = ACTIONS(2515), + [anon_sym_api] = ACTIONS(2515), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2515), + [anon_sym_include] = ACTIONS(2515), + [anon_sym_DEF] = ACTIONS(2515), + [anon_sym_IF] = ACTIONS(2515), + [anon_sym_cdef] = ACTIONS(2515), + [anon_sym_cpdef] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_ctypedef] = ACTIONS(2515), + [anon_sym_public] = ACTIONS(2515), + [anon_sym_packed] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_readonly] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2515), + [sym_string_start] = ACTIONS(2513), + }, + [852] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [853] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [854] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [855] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [856] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [857] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6714), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5145), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_from] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -111122,7 +123268,6 @@ 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), [anon_sym_0x] = ACTIONS(81), @@ -111133,3702 +123278,5344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0B] = ACTIONS(85), [aux_sym_integer_token4] = ACTIONS(87), [sym_float] = ACTIONS(89), - [anon_sym_await] = ACTIONS(91), - [anon_sym_api] = ACTIONS(405), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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(2399), [sym_string_start] = ACTIONS(117), }, - [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), + [858] = { + [sym_elif_clause] = STATE(1106), + [sym_else_clause] = STATE(2077), + [aux_sym_if_statement_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2533), + [anon_sym_import] = ACTIONS(2533), + [anon_sym_cimport] = ACTIONS(2533), + [anon_sym_from] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_assert] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_del] = ACTIONS(2533), + [anon_sym_raise] = ACTIONS(2533), + [anon_sym_pass] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_elif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_with] = ACTIONS(2533), + [anon_sym_def] = ACTIONS(2533), + [anon_sym_global] = ACTIONS(2533), + [anon_sym_nonlocal] = ACTIONS(2533), + [anon_sym_exec] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_lambda] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [anon_sym_0x] = ACTIONS(2531), + [anon_sym_0X] = ACTIONS(2531), + [anon_sym_0o] = ACTIONS(2531), + [anon_sym_0O] = ACTIONS(2531), + [anon_sym_0b] = ACTIONS(2531), + [anon_sym_0B] = ACTIONS(2531), + [aux_sym_integer_token4] = ACTIONS(2533), + [sym_float] = ACTIONS(2531), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_api] = ACTIONS(2533), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_DEF] = ACTIONS(2533), + [anon_sym_IF] = ACTIONS(2533), + [anon_sym_cdef] = ACTIONS(2533), + [anon_sym_cpdef] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_ctypedef] = ACTIONS(2533), + [anon_sym_public] = ACTIONS(2533), + [anon_sym_packed] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_readonly] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2531), }, - [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), + [859] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat] = STATE(6829), + [sym_parenthesized_list_splat] = STATE(6829), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5577), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_yield] = STATE(6829), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [860] = { + [sym_ELIF_clause] = STATE(1129), + [sym_ELSE_clause] = STATE(2167), + [aux_sym_IF_statement_repeat1] = STATE(888), + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2537), + [anon_sym_import] = ACTIONS(2537), + [anon_sym_cimport] = ACTIONS(2537), + [anon_sym_from] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_assert] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_del] = ACTIONS(2537), + [anon_sym_raise] = ACTIONS(2537), + [anon_sym_pass] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_with] = ACTIONS(2537), + [anon_sym_def] = ACTIONS(2537), + [anon_sym_global] = ACTIONS(2537), + [anon_sym_nonlocal] = ACTIONS(2537), + [anon_sym_exec] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_lambda] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2535), + [anon_sym_None] = ACTIONS(2537), + [anon_sym_0x] = ACTIONS(2535), + [anon_sym_0X] = ACTIONS(2535), + [anon_sym_0o] = ACTIONS(2535), + [anon_sym_0O] = ACTIONS(2535), + [anon_sym_0b] = ACTIONS(2535), + [anon_sym_0B] = ACTIONS(2535), + [aux_sym_integer_token4] = ACTIONS(2537), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2537), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_DEF] = ACTIONS(2537), + [anon_sym_IF] = ACTIONS(2537), + [anon_sym_ELIF] = ACTIONS(2487), + [anon_sym_ELSE] = ACTIONS(2489), + [anon_sym_cdef] = ACTIONS(2537), + [anon_sym_cpdef] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_ctypedef] = ACTIONS(2537), + [anon_sym_public] = ACTIONS(2537), + [anon_sym_packed] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_readonly] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_string_start] = ACTIONS(2535), }, - [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), + [861] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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_new] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(1961), - [sym_string_start] = ACTIONS(1963), + [862] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_expression_list] = STATE(5645), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5288), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_from] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [863] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [864] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat] = STATE(6697), + [sym_parenthesized_list_splat] = STATE(6697), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5500), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_yield] = STATE(6697), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [865] = { + [sym_ELIF_clause] = STATE(1090), + [sym_ELSE_clause] = STATE(2161), + [aux_sym_IF_statement_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(2537), + [anon_sym_import] = ACTIONS(2537), + [anon_sym_cimport] = ACTIONS(2537), + [anon_sym_from] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_assert] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_del] = ACTIONS(2537), + [anon_sym_raise] = ACTIONS(2537), + [anon_sym_pass] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_with] = ACTIONS(2537), + [anon_sym_def] = ACTIONS(2537), + [anon_sym_global] = ACTIONS(2537), + [anon_sym_nonlocal] = ACTIONS(2537), + [anon_sym_exec] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_lambda] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2535), + [anon_sym_None] = ACTIONS(2537), + [anon_sym_0x] = ACTIONS(2535), + [anon_sym_0X] = ACTIONS(2535), + [anon_sym_0o] = ACTIONS(2535), + [anon_sym_0O] = ACTIONS(2535), + [anon_sym_0b] = ACTIONS(2535), + [anon_sym_0B] = ACTIONS(2535), + [aux_sym_integer_token4] = ACTIONS(2537), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2537), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_DEF] = ACTIONS(2537), + [anon_sym_IF] = ACTIONS(2537), + [anon_sym_ELIF] = ACTIONS(2545), + [anon_sym_ELSE] = ACTIONS(2547), + [anon_sym_cdef] = ACTIONS(2537), + [anon_sym_cpdef] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_ctypedef] = ACTIONS(2537), + [anon_sym_public] = ACTIONS(2537), + [anon_sym_packed] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_readonly] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2537), + [sym__dedent] = ACTIONS(2535), + [sym_string_start] = ACTIONS(2535), }, - [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), + [866] = { + [sym_elif_clause] = STATE(1063), + [sym_else_clause] = STATE(2165), + [aux_sym_if_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(2479), + [anon_sym_import] = ACTIONS(2479), + [anon_sym_cimport] = ACTIONS(2479), + [anon_sym_from] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2479), + [anon_sym_assert] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_del] = ACTIONS(2479), + [anon_sym_raise] = ACTIONS(2479), + [anon_sym_pass] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_with] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2479), + [anon_sym_global] = ACTIONS(2479), + [anon_sym_nonlocal] = ACTIONS(2479), + [anon_sym_exec] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_AT] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_lambda] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2477), + [anon_sym_None] = ACTIONS(2479), + [anon_sym_0x] = ACTIONS(2477), + [anon_sym_0X] = ACTIONS(2477), + [anon_sym_0o] = ACTIONS(2477), + [anon_sym_0O] = ACTIONS(2477), + [anon_sym_0b] = ACTIONS(2477), + [anon_sym_0B] = ACTIONS(2477), + [aux_sym_integer_token4] = ACTIONS(2479), + [sym_float] = ACTIONS(2477), + [anon_sym_await] = ACTIONS(2479), + [anon_sym_api] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2479), + [anon_sym_include] = ACTIONS(2479), + [anon_sym_DEF] = ACTIONS(2479), + [anon_sym_IF] = ACTIONS(2479), + [anon_sym_cdef] = ACTIONS(2479), + [anon_sym_cpdef] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_ctypedef] = ACTIONS(2479), + [anon_sym_public] = ACTIONS(2479), + [anon_sym_packed] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_readonly] = ACTIONS(2479), + [anon_sym_sizeof] = ACTIONS(2479), + [sym__dedent] = ACTIONS(2477), + [sym_string_start] = ACTIONS(2477), }, - [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), + [867] = { + [sym_elif_clause] = STATE(1106), + [sym_else_clause] = STATE(2122), + [aux_sym_if_statement_repeat1] = STATE(845), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2469), + [anon_sym_import] = ACTIONS(2469), + [anon_sym_cimport] = ACTIONS(2469), + [anon_sym_from] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_del] = ACTIONS(2469), + [anon_sym_raise] = ACTIONS(2469), + [anon_sym_pass] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_elif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_with] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_global] = ACTIONS(2469), + [anon_sym_nonlocal] = ACTIONS(2469), + [anon_sym_exec] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_lambda] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), + [anon_sym_None] = ACTIONS(2469), + [anon_sym_0x] = ACTIONS(2471), + [anon_sym_0X] = ACTIONS(2471), + [anon_sym_0o] = ACTIONS(2471), + [anon_sym_0O] = ACTIONS(2471), + [anon_sym_0b] = ACTIONS(2471), + [anon_sym_0B] = ACTIONS(2471), + [aux_sym_integer_token4] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_api] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_DEF] = ACTIONS(2469), + [anon_sym_IF] = ACTIONS(2469), + [anon_sym_cdef] = ACTIONS(2469), + [anon_sym_cpdef] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_ctypedef] = ACTIONS(2469), + [anon_sym_public] = ACTIONS(2469), + [anon_sym_packed] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_readonly] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_string_start] = ACTIONS(2471), }, - [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), + [868] = { + [sym_except_clause] = STATE(868), + [aux_sym_try_statement_repeat1] = STATE(868), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_cimport] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [anon_sym_pass] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_except] = ACTIONS(2553), + [anon_sym_finally] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2549), + [anon_sym_None] = ACTIONS(2551), + [anon_sym_0x] = ACTIONS(2549), + [anon_sym_0X] = ACTIONS(2549), + [anon_sym_0o] = ACTIONS(2549), + [anon_sym_0O] = ACTIONS(2549), + [anon_sym_0b] = ACTIONS(2549), + [anon_sym_0B] = ACTIONS(2549), + [aux_sym_integer_token4] = ACTIONS(2551), + [sym_float] = ACTIONS(2549), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(2551), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2551), + [anon_sym_include] = ACTIONS(2551), + [anon_sym_DEF] = ACTIONS(2551), + [anon_sym_IF] = ACTIONS(2551), + [anon_sym_cdef] = ACTIONS(2551), + [anon_sym_cpdef] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_ctypedef] = ACTIONS(2551), + [anon_sym_public] = ACTIONS(2551), + [anon_sym_packed] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_readonly] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_string_start] = ACTIONS(2549), }, - [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), + [869] = { + [sym_elif_clause] = STATE(1063), + [sym_else_clause] = STATE(2166), + [aux_sym_if_statement_repeat1] = STATE(877), + [sym_identifier] = ACTIONS(2515), + [anon_sym_import] = ACTIONS(2515), + [anon_sym_cimport] = ACTIONS(2515), + [anon_sym_from] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2515), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_del] = ACTIONS(2515), + [anon_sym_raise] = ACTIONS(2515), + [anon_sym_pass] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_elif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2515), + [anon_sym_global] = ACTIONS(2515), + [anon_sym_nonlocal] = ACTIONS(2515), + [anon_sym_exec] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_class] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_AT] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_lambda] = ACTIONS(2515), + [anon_sym_yield] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2513), + [anon_sym_None] = ACTIONS(2515), + [anon_sym_0x] = ACTIONS(2513), + [anon_sym_0X] = ACTIONS(2513), + [anon_sym_0o] = ACTIONS(2513), + [anon_sym_0O] = ACTIONS(2513), + [anon_sym_0b] = ACTIONS(2513), + [anon_sym_0B] = ACTIONS(2513), + [aux_sym_integer_token4] = ACTIONS(2515), + [sym_float] = ACTIONS(2513), + [anon_sym_await] = ACTIONS(2515), + [anon_sym_api] = ACTIONS(2515), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2515), + [anon_sym_include] = ACTIONS(2515), + [anon_sym_DEF] = ACTIONS(2515), + [anon_sym_IF] = ACTIONS(2515), + [anon_sym_cdef] = ACTIONS(2515), + [anon_sym_cpdef] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_ctypedef] = ACTIONS(2515), + [anon_sym_public] = ACTIONS(2515), + [anon_sym_packed] = ACTIONS(2515), + [anon_sym_inline] = ACTIONS(2515), + [anon_sym_readonly] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2515), + [sym__dedent] = ACTIONS(2513), + [sym_string_start] = ACTIONS(2513), }, - [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), + [870] = { + [sym_except_clause] = STATE(870), + [aux_sym_try_statement_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(2551), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_cimport] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [anon_sym_pass] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_except] = ACTIONS(2556), + [anon_sym_finally] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2549), + [anon_sym_None] = ACTIONS(2551), + [anon_sym_0x] = ACTIONS(2549), + [anon_sym_0X] = ACTIONS(2549), + [anon_sym_0o] = ACTIONS(2549), + [anon_sym_0O] = ACTIONS(2549), + [anon_sym_0b] = ACTIONS(2549), + [anon_sym_0B] = ACTIONS(2549), + [aux_sym_integer_token4] = ACTIONS(2551), + [sym_float] = ACTIONS(2549), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_api] = ACTIONS(2551), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2551), + [anon_sym_include] = ACTIONS(2551), + [anon_sym_DEF] = ACTIONS(2551), + [anon_sym_IF] = ACTIONS(2551), + [anon_sym_cdef] = ACTIONS(2551), + [anon_sym_cpdef] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_ctypedef] = ACTIONS(2551), + [anon_sym_public] = ACTIONS(2551), + [anon_sym_packed] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_readonly] = ACTIONS(2551), + [anon_sym_sizeof] = ACTIONS(2551), + [sym__dedent] = ACTIONS(2549), + [sym_string_start] = ACTIONS(2549), }, - [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), + [871] = { + [sym_except_group_clause] = STATE(871), + [aux_sym_try_statement_repeat2] = STATE(871), + [sym_identifier] = ACTIONS(2559), + [anon_sym_import] = ACTIONS(2559), + [anon_sym_cimport] = ACTIONS(2559), + [anon_sym_from] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2559), + [anon_sym_assert] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_del] = ACTIONS(2559), + [anon_sym_raise] = ACTIONS(2559), + [anon_sym_pass] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_match] = ACTIONS(2559), + [anon_sym_async] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_except_STAR] = ACTIONS(2563), + [anon_sym_finally] = ACTIONS(2559), + [anon_sym_with] = ACTIONS(2559), + [anon_sym_def] = ACTIONS(2559), + [anon_sym_global] = ACTIONS(2559), + [anon_sym_nonlocal] = ACTIONS(2559), + [anon_sym_exec] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), + [anon_sym_None] = ACTIONS(2559), + [anon_sym_0x] = ACTIONS(2561), + [anon_sym_0X] = ACTIONS(2561), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0O] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(2561), + [anon_sym_0B] = ACTIONS(2561), + [aux_sym_integer_token4] = ACTIONS(2559), + [sym_float] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2559), + [anon_sym_api] = ACTIONS(2559), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2559), + [anon_sym_include] = ACTIONS(2559), + [anon_sym_DEF] = ACTIONS(2559), + [anon_sym_IF] = ACTIONS(2559), + [anon_sym_cdef] = ACTIONS(2559), + [anon_sym_cpdef] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_ctypedef] = ACTIONS(2559), + [anon_sym_public] = ACTIONS(2559), + [anon_sym_packed] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_readonly] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2559), + [sym__dedent] = ACTIONS(2561), + [sym_string_start] = ACTIONS(2561), }, - [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), + [872] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [873] = { + [sym_except_group_clause] = STATE(873), + [aux_sym_try_statement_repeat2] = STATE(873), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [anon_sym_import] = ACTIONS(2559), + [anon_sym_cimport] = ACTIONS(2559), + [anon_sym_from] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2559), + [anon_sym_assert] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_del] = ACTIONS(2559), + [anon_sym_raise] = ACTIONS(2559), + [anon_sym_pass] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_match] = ACTIONS(2559), + [anon_sym_async] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_except_STAR] = ACTIONS(2568), + [anon_sym_finally] = ACTIONS(2559), + [anon_sym_with] = ACTIONS(2559), + [anon_sym_def] = ACTIONS(2559), + [anon_sym_global] = ACTIONS(2559), + [anon_sym_nonlocal] = ACTIONS(2559), + [anon_sym_exec] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), + [anon_sym_None] = ACTIONS(2559), + [anon_sym_0x] = ACTIONS(2561), + [anon_sym_0X] = ACTIONS(2561), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0O] = ACTIONS(2561), + [anon_sym_0b] = ACTIONS(2561), + [anon_sym_0B] = ACTIONS(2561), + [aux_sym_integer_token4] = ACTIONS(2559), + [sym_float] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2559), + [anon_sym_api] = ACTIONS(2559), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2559), + [anon_sym_include] = ACTIONS(2559), + [anon_sym_DEF] = ACTIONS(2559), + [anon_sym_IF] = ACTIONS(2559), + [anon_sym_cdef] = ACTIONS(2559), + [anon_sym_cpdef] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_ctypedef] = ACTIONS(2559), + [anon_sym_public] = ACTIONS(2559), + [anon_sym_packed] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_readonly] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_string_start] = ACTIONS(2561), }, - [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), + [874] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [875] = { + [sym_ELIF_clause] = STATE(1090), + [sym_ELSE_clause] = STATE(2182), + [aux_sym_IF_statement_repeat1] = STATE(926), + [sym_identifier] = ACTIONS(2573), + [anon_sym_import] = ACTIONS(2573), + [anon_sym_cimport] = ACTIONS(2573), + [anon_sym_from] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_assert] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_del] = ACTIONS(2573), + [anon_sym_raise] = ACTIONS(2573), + [anon_sym_pass] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_with] = ACTIONS(2573), + [anon_sym_def] = ACTIONS(2573), + [anon_sym_global] = ACTIONS(2573), + [anon_sym_nonlocal] = ACTIONS(2573), + [anon_sym_exec] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [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(2573), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_lambda] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [anon_sym_None] = ACTIONS(2573), + [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(2573), + [sym_float] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_api] = ACTIONS(2573), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_DEF] = ACTIONS(2573), + [anon_sym_IF] = ACTIONS(2573), + [anon_sym_ELIF] = ACTIONS(2545), + [anon_sym_ELSE] = ACTIONS(2547), + [anon_sym_cdef] = ACTIONS(2573), + [anon_sym_cpdef] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_ctypedef] = ACTIONS(2573), + [anon_sym_public] = ACTIONS(2573), + [anon_sym_packed] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_readonly] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2573), + [sym__dedent] = ACTIONS(2575), + [sym_string_start] = ACTIONS(2575), }, - [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), + [876] = { + [sym_ELIF_clause] = STATE(1090), + [sym_ELSE_clause] = STATE(2183), + [aux_sym_IF_statement_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_cimport] = ACTIONS(2577), + [anon_sym_from] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [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(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_lambda] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [anon_sym_None] = ACTIONS(2577), + [anon_sym_0x] = ACTIONS(2579), + [anon_sym_0X] = ACTIONS(2579), + [anon_sym_0o] = ACTIONS(2579), + [anon_sym_0O] = ACTIONS(2579), + [anon_sym_0b] = ACTIONS(2579), + [anon_sym_0B] = ACTIONS(2579), + [aux_sym_integer_token4] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [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(2545), + [anon_sym_ELSE] = ACTIONS(2547), + [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(2579), + [sym_string_start] = ACTIONS(2579), }, - [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), + [877] = { + [sym_elif_clause] = STATE(1063), + [sym_else_clause] = STATE(2192), + [aux_sym_if_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(2533), + [anon_sym_import] = ACTIONS(2533), + [anon_sym_cimport] = ACTIONS(2533), + [anon_sym_from] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_assert] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_del] = ACTIONS(2533), + [anon_sym_raise] = ACTIONS(2533), + [anon_sym_pass] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_elif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_with] = ACTIONS(2533), + [anon_sym_def] = ACTIONS(2533), + [anon_sym_global] = ACTIONS(2533), + [anon_sym_nonlocal] = ACTIONS(2533), + [anon_sym_exec] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_lambda] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [anon_sym_0x] = ACTIONS(2531), + [anon_sym_0X] = ACTIONS(2531), + [anon_sym_0o] = ACTIONS(2531), + [anon_sym_0O] = ACTIONS(2531), + [anon_sym_0b] = ACTIONS(2531), + [anon_sym_0B] = ACTIONS(2531), + [aux_sym_integer_token4] = ACTIONS(2533), + [sym_float] = ACTIONS(2531), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_api] = ACTIONS(2533), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_DEF] = ACTIONS(2533), + [anon_sym_IF] = ACTIONS(2533), + [anon_sym_cdef] = ACTIONS(2533), + [anon_sym_cpdef] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_ctypedef] = ACTIONS(2533), + [anon_sym_public] = ACTIONS(2533), + [anon_sym_packed] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_readonly] = ACTIONS(2533), + [anon_sym_sizeof] = ACTIONS(2533), + [sym__dedent] = ACTIONS(2531), + [sym_string_start] = ACTIONS(2531), }, - [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), + [878] = { + [sym_ELIF_clause] = STATE(1090), + [sym_ELSE_clause] = STATE(2208), + [aux_sym_IF_statement_repeat1] = STATE(926), + [sym_identifier] = ACTIONS(2485), + [anon_sym_import] = ACTIONS(2485), + [anon_sym_cimport] = ACTIONS(2485), + [anon_sym_from] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_assert] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_del] = ACTIONS(2485), + [anon_sym_raise] = ACTIONS(2485), + [anon_sym_pass] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_with] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_global] = ACTIONS(2485), + [anon_sym_nonlocal] = ACTIONS(2485), + [anon_sym_exec] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_lambda] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2483), + [anon_sym_None] = ACTIONS(2485), + [anon_sym_0x] = ACTIONS(2483), + [anon_sym_0X] = ACTIONS(2483), + [anon_sym_0o] = ACTIONS(2483), + [anon_sym_0O] = ACTIONS(2483), + [anon_sym_0b] = ACTIONS(2483), + [anon_sym_0B] = ACTIONS(2483), + [aux_sym_integer_token4] = ACTIONS(2485), + [sym_float] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_api] = ACTIONS(2485), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_DEF] = ACTIONS(2485), + [anon_sym_IF] = ACTIONS(2485), + [anon_sym_ELIF] = ACTIONS(2545), + [anon_sym_ELSE] = ACTIONS(2547), + [anon_sym_cdef] = ACTIONS(2485), + [anon_sym_cpdef] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_ctypedef] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_packed] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_readonly] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2485), + [sym__dedent] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2483), }, - [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), + [879] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat] = STATE(6836), + [sym_parenthesized_list_splat] = STATE(6836), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5554), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_yield] = STATE(6836), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [880] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5084), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_COLON] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_EQ] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [sym_type_conversion] = ACTIONS(2581), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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_new] = ACTIONS(2065), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1881), + [881] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [882] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [883] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [884] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [885] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [886] = { + [sym_ELIF_clause] = STATE(1129), + [sym_ELSE_clause] = STATE(2206), + [aux_sym_IF_statement_repeat1] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_cimport] = ACTIONS(2577), + [anon_sym_from] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [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(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_lambda] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [anon_sym_None] = ACTIONS(2577), + [anon_sym_0x] = ACTIONS(2579), + [anon_sym_0X] = ACTIONS(2579), + [anon_sym_0o] = ACTIONS(2579), + [anon_sym_0O] = ACTIONS(2579), + [anon_sym_0b] = ACTIONS(2579), + [anon_sym_0B] = ACTIONS(2579), + [aux_sym_integer_token4] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [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(2487), + [anon_sym_ELSE] = ACTIONS(2489), + [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(2579), }, - [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), + [887] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [888] = { + [sym_ELIF_clause] = STATE(1129), + [sym_ELSE_clause] = STATE(2136), + [aux_sym_IF_statement_repeat1] = STATE(948), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2573), + [anon_sym_import] = ACTIONS(2573), + [anon_sym_cimport] = ACTIONS(2573), + [anon_sym_from] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_assert] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_del] = ACTIONS(2573), + [anon_sym_raise] = ACTIONS(2573), + [anon_sym_pass] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_with] = ACTIONS(2573), + [anon_sym_def] = ACTIONS(2573), + [anon_sym_global] = ACTIONS(2573), + [anon_sym_nonlocal] = ACTIONS(2573), + [anon_sym_exec] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [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(2573), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_lambda] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [anon_sym_None] = ACTIONS(2573), + [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(2573), + [sym_float] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_api] = ACTIONS(2573), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_DEF] = ACTIONS(2573), + [anon_sym_IF] = ACTIONS(2573), + [anon_sym_ELIF] = ACTIONS(2487), + [anon_sym_ELSE] = ACTIONS(2489), + [anon_sym_cdef] = ACTIONS(2573), + [anon_sym_cpdef] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_ctypedef] = ACTIONS(2573), + [anon_sym_public] = ACTIONS(2573), + [anon_sym_packed] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_readonly] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_string_start] = ACTIONS(2575), }, - [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_new] = ACTIONS(2153), - [anon_sym_sizeof] = ACTIONS(1999), - [sym_string_start] = ACTIONS(2001), + [889] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [890] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_ELIF] = ACTIONS(2601), + [anon_sym_ELSE] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym_string_start] = ACTIONS(2599), }, - [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), + [891] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5201), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_from] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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(2581), + [sym_string_start] = ACTIONS(117), }, - [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), + [892] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_ELIF] = ACTIONS(2607), + [anon_sym_ELSE] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_string_start] = ACTIONS(2605), }, - [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), + [893] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5179), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [894] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [895] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5179), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [896] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [897] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5201), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_from] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2509), + [sym_string_start] = ACTIONS(117), }, - [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), + [898] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [899] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [900] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [901] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [902] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [903] = { + [sym_elif_clause] = STATE(1106), + [aux_sym_if_statement_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_cimport] = ACTIONS(2627), + [anon_sym_from] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_print] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_del] = ACTIONS(2627), + [anon_sym_raise] = ACTIONS(2627), + [anon_sym_pass] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_elif] = ACTIONS(2629), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_with] = ACTIONS(2627), + [anon_sym_def] = ACTIONS(2627), + [anon_sym_global] = ACTIONS(2627), + [anon_sym_nonlocal] = ACTIONS(2627), + [anon_sym_exec] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_lambda] = ACTIONS(2627), + [anon_sym_yield] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [anon_sym_None] = ACTIONS(2627), + [anon_sym_0x] = ACTIONS(2625), + [anon_sym_0X] = ACTIONS(2625), + [anon_sym_0o] = ACTIONS(2625), + [anon_sym_0O] = ACTIONS(2625), + [anon_sym_0b] = ACTIONS(2625), + [anon_sym_0B] = ACTIONS(2625), + [aux_sym_integer_token4] = ACTIONS(2627), + [sym_float] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(2627), + [anon_sym_api] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2627), + [anon_sym_include] = ACTIONS(2627), + [anon_sym_DEF] = ACTIONS(2627), + [anon_sym_IF] = ACTIONS(2627), + [anon_sym_cdef] = ACTIONS(2627), + [anon_sym_cpdef] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_ctypedef] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_packed] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_readonly] = ACTIONS(2627), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_string_start] = ACTIONS(2625), + }, + [904] = { + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_ELIF] = ACTIONS(2601), + [anon_sym_ELSE] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym__dedent] = ACTIONS(2599), + [sym_string_start] = ACTIONS(2599), + }, + [905] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_dictionary_splat] = STATE(6901), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5837), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_pair] = STATE(6901), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_STAR_STAR] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [906] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_ELIF] = ACTIONS(2607), + [anon_sym_ELSE] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym__dedent] = ACTIONS(2605), + [sym_string_start] = ACTIONS(2605), + }, + [907] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [908] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [909] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [910] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [911] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [912] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [913] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [914] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5359), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [915] = { + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_ELIF] = ACTIONS(2650), + [anon_sym_ELSE] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2652), + }, + [916] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [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(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(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2656), + [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(2656), + [sym_float] = ACTIONS(2654), + [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_new] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [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(2654), }, - [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), + [917] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5233), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [918] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [919] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [920] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [921] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [922] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [923] = { + [sym_elif_clause] = STATE(1063), + [aux_sym_if_statement_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_cimport] = ACTIONS(2627), + [anon_sym_from] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_print] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_del] = ACTIONS(2627), + [anon_sym_raise] = ACTIONS(2627), + [anon_sym_pass] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_elif] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_with] = ACTIONS(2627), + [anon_sym_def] = ACTIONS(2627), + [anon_sym_global] = ACTIONS(2627), + [anon_sym_nonlocal] = ACTIONS(2627), + [anon_sym_exec] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_lambda] = ACTIONS(2627), + [anon_sym_yield] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [anon_sym_None] = ACTIONS(2627), + [anon_sym_0x] = ACTIONS(2625), + [anon_sym_0X] = ACTIONS(2625), + [anon_sym_0o] = ACTIONS(2625), + [anon_sym_0O] = ACTIONS(2625), + [anon_sym_0b] = ACTIONS(2625), + [anon_sym_0B] = ACTIONS(2625), + [aux_sym_integer_token4] = ACTIONS(2627), + [sym_float] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(2627), + [anon_sym_api] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2627), + [anon_sym_include] = ACTIONS(2627), + [anon_sym_DEF] = ACTIONS(2627), + [anon_sym_IF] = ACTIONS(2627), + [anon_sym_cdef] = ACTIONS(2627), + [anon_sym_cpdef] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_ctypedef] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_packed] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_readonly] = ACTIONS(2627), + [anon_sym_sizeof] = ACTIONS(2627), + [sym__dedent] = ACTIONS(2625), + [sym_string_start] = ACTIONS(2625), + }, + [924] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [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(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(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2656), + [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(2656), + [sym_float] = ACTIONS(2654), + [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_new] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [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(2654), + [sym_string_start] = ACTIONS(2654), }, - [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), + [925] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5428), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [926] = { + [sym_ELIF_clause] = STATE(1090), + [aux_sym_IF_statement_repeat1] = STATE(926), + [sym_identifier] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2675), + [anon_sym_cimport] = ACTIONS(2675), + [anon_sym_from] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_print] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_del] = ACTIONS(2675), + [anon_sym_raise] = ACTIONS(2675), + [anon_sym_pass] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_def] = ACTIONS(2675), + [anon_sym_global] = ACTIONS(2675), + [anon_sym_nonlocal] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_lambda] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2677), + [anon_sym_None] = ACTIONS(2675), + [anon_sym_0x] = ACTIONS(2677), + [anon_sym_0X] = ACTIONS(2677), + [anon_sym_0o] = ACTIONS(2677), + [anon_sym_0O] = ACTIONS(2677), + [anon_sym_0b] = ACTIONS(2677), + [anon_sym_0B] = ACTIONS(2677), + [aux_sym_integer_token4] = ACTIONS(2675), + [sym_float] = ACTIONS(2677), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_api] = ACTIONS(2675), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2675), + [anon_sym_include] = ACTIONS(2675), + [anon_sym_DEF] = ACTIONS(2675), + [anon_sym_IF] = ACTIONS(2675), + [anon_sym_ELIF] = ACTIONS(2679), + [anon_sym_ELSE] = ACTIONS(2675), + [anon_sym_cdef] = ACTIONS(2675), + [anon_sym_cpdef] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_ctypedef] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_packed] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym_readonly] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2675), + [sym__dedent] = ACTIONS(2677), + [sym_string_start] = ACTIONS(2677), }, - [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), + [927] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [928] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6811), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5160), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -114847,549 +128634,2313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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(2684), [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), + [929] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_ELIF] = ACTIONS(2688), + [anon_sym_ELSE] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym_string_start] = ACTIONS(2686), }, - [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), + [930] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [931] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [932] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [933] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [934] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [935] = { + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_ELIF] = ACTIONS(2688), + [anon_sym_ELSE] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym__dedent] = ACTIONS(2686), + [sym_string_start] = ACTIONS(2686), + }, + [936] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5233), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [937] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [938] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [939] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5332), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2706), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [940] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [941] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [942] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_ELIF] = ACTIONS(2650), + [anon_sym_ELSE] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym_string_start] = ACTIONS(2652), + }, + [943] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [944] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [945] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [946] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [947] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [948] = { + [sym_ELIF_clause] = STATE(1129), + [aux_sym_IF_statement_repeat1] = STATE(948), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2675), + [anon_sym_cimport] = ACTIONS(2675), + [anon_sym_from] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_print] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_del] = ACTIONS(2675), + [anon_sym_raise] = ACTIONS(2675), + [anon_sym_pass] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_def] = ACTIONS(2675), + [anon_sym_global] = ACTIONS(2675), + [anon_sym_nonlocal] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_lambda] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2677), + [anon_sym_None] = ACTIONS(2675), + [anon_sym_0x] = ACTIONS(2677), + [anon_sym_0X] = ACTIONS(2677), + [anon_sym_0o] = ACTIONS(2677), + [anon_sym_0O] = ACTIONS(2677), + [anon_sym_0b] = ACTIONS(2677), + [anon_sym_0B] = ACTIONS(2677), + [aux_sym_integer_token4] = ACTIONS(2675), + [sym_float] = ACTIONS(2677), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_api] = ACTIONS(2675), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2675), + [anon_sym_include] = ACTIONS(2675), + [anon_sym_DEF] = ACTIONS(2675), + [anon_sym_IF] = ACTIONS(2675), + [anon_sym_ELIF] = ACTIONS(2722), + [anon_sym_ELSE] = ACTIONS(2675), + [anon_sym_cdef] = ACTIONS(2675), + [anon_sym_cpdef] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_ctypedef] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_packed] = ACTIONS(2675), + [anon_sym_inline] = ACTIONS(2675), + [anon_sym_readonly] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2675), + [sym_string_start] = ACTIONS(2677), + }, + [949] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5190), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [950] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5190), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [951] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [952] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5581), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [953] = { + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except] = ACTIONS(2727), + [anon_sym_finally] = ACTIONS(2727), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [anon_sym_0x] = ACTIONS(2729), + [anon_sym_0X] = ACTIONS(2729), + [anon_sym_0o] = ACTIONS(2729), + [anon_sym_0O] = ACTIONS(2729), + [anon_sym_0b] = ACTIONS(2729), + [anon_sym_0B] = ACTIONS(2729), + [aux_sym_integer_token4] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), + [anon_sym_api] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_IF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym__dedent] = ACTIONS(2729), + [sym_string_start] = ACTIONS(2729), + }, + [954] = { + [sym_identifier] = ACTIONS(2731), + [anon_sym_import] = ACTIONS(2731), + [anon_sym_cimport] = ACTIONS(2731), + [anon_sym_from] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_print] = ACTIONS(2731), + [anon_sym_assert] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_del] = ACTIONS(2731), + [anon_sym_raise] = ACTIONS(2731), + [anon_sym_pass] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_async] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_except_STAR] = ACTIONS(2733), + [anon_sym_finally] = ACTIONS(2731), + [anon_sym_with] = ACTIONS(2731), + [anon_sym_def] = ACTIONS(2731), + [anon_sym_global] = ACTIONS(2731), + [anon_sym_nonlocal] = ACTIONS(2731), + [anon_sym_exec] = ACTIONS(2731), + [anon_sym_type] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_LT] = ACTIONS(2733), + [anon_sym_lambda] = ACTIONS(2731), + [anon_sym_yield] = ACTIONS(2731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2733), + [anon_sym_None] = ACTIONS(2731), + [anon_sym_0x] = ACTIONS(2733), + [anon_sym_0X] = ACTIONS(2733), + [anon_sym_0o] = ACTIONS(2733), + [anon_sym_0O] = ACTIONS(2733), + [anon_sym_0b] = ACTIONS(2733), + [anon_sym_0B] = ACTIONS(2733), + [aux_sym_integer_token4] = ACTIONS(2731), + [sym_float] = ACTIONS(2733), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2731), + [anon_sym_include] = ACTIONS(2731), + [anon_sym_DEF] = ACTIONS(2731), + [anon_sym_IF] = ACTIONS(2731), + [anon_sym_cdef] = ACTIONS(2731), + [anon_sym_cpdef] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_ctypedef] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_packed] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym_readonly] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2731), + [sym__dedent] = ACTIONS(2733), + [sym_string_start] = ACTIONS(2733), + }, + [955] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_with_item] = STATE(6767), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5530), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [956] = { + [sym_identifier] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_cimport] = ACTIONS(2737), + [anon_sym_from] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_print] = ACTIONS(2737), + [anon_sym_assert] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_del] = ACTIONS(2737), + [anon_sym_raise] = ACTIONS(2737), + [anon_sym_pass] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_except] = ACTIONS(2737), + [anon_sym_finally] = ACTIONS(2737), + [anon_sym_with] = ACTIONS(2737), + [anon_sym_def] = ACTIONS(2737), + [anon_sym_global] = ACTIONS(2737), + [anon_sym_nonlocal] = ACTIONS(2737), + [anon_sym_exec] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_AT] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_lambda] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2739), + [anon_sym_None] = ACTIONS(2737), + [anon_sym_0x] = ACTIONS(2739), + [anon_sym_0X] = ACTIONS(2739), + [anon_sym_0o] = ACTIONS(2739), + [anon_sym_0O] = ACTIONS(2739), + [anon_sym_0b] = ACTIONS(2739), + [anon_sym_0B] = ACTIONS(2739), + [aux_sym_integer_token4] = ACTIONS(2737), + [sym_float] = ACTIONS(2739), + [anon_sym_await] = ACTIONS(2737), + [anon_sym_api] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2737), + [anon_sym_include] = ACTIONS(2737), + [anon_sym_DEF] = ACTIONS(2737), + [anon_sym_IF] = ACTIONS(2737), + [anon_sym_cdef] = ACTIONS(2737), + [anon_sym_cpdef] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_ctypedef] = ACTIONS(2737), + [anon_sym_public] = ACTIONS(2737), + [anon_sym_packed] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_readonly] = ACTIONS(2737), + [anon_sym_sizeof] = ACTIONS(2737), + [sym__dedent] = ACTIONS(2739), + [sym_string_start] = ACTIONS(2739), + }, + [957] = { + [sym_identifier] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_cimport] = ACTIONS(2741), + [anon_sym_from] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_del] = ACTIONS(2741), + [anon_sym_raise] = ACTIONS(2741), + [anon_sym_pass] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_except_STAR] = ACTIONS(2743), + [anon_sym_finally] = ACTIONS(2741), + [anon_sym_with] = ACTIONS(2741), + [anon_sym_def] = ACTIONS(2741), + [anon_sym_global] = ACTIONS(2741), + [anon_sym_nonlocal] = ACTIONS(2741), + [anon_sym_exec] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_lambda] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_None] = ACTIONS(2741), + [anon_sym_0x] = ACTIONS(2743), + [anon_sym_0X] = ACTIONS(2743), + [anon_sym_0o] = ACTIONS(2743), + [anon_sym_0O] = ACTIONS(2743), + [anon_sym_0b] = ACTIONS(2743), + [anon_sym_0B] = ACTIONS(2743), + [aux_sym_integer_token4] = ACTIONS(2741), + [sym_float] = ACTIONS(2743), + [anon_sym_await] = ACTIONS(2741), + [anon_sym_api] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2741), + [anon_sym_include] = ACTIONS(2741), + [anon_sym_DEF] = ACTIONS(2741), + [anon_sym_IF] = ACTIONS(2741), + [anon_sym_cdef] = ACTIONS(2741), + [anon_sym_cpdef] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_ctypedef] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2741), + [anon_sym_packed] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2741), + [sym__dedent] = ACTIONS(2743), + [sym_string_start] = ACTIONS(2743), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2747), + [anon_sym_import] = ACTIONS(2747), + [anon_sym_cimport] = ACTIONS(2747), + [anon_sym_from] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_print] = ACTIONS(2747), + [anon_sym_assert] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_del] = ACTIONS(2747), + [anon_sym_raise] = ACTIONS(2747), + [anon_sym_pass] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_match] = ACTIONS(2747), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_except] = ACTIONS(2747), + [anon_sym_finally] = ACTIONS(2747), + [anon_sym_with] = ACTIONS(2747), + [anon_sym_def] = ACTIONS(2747), + [anon_sym_global] = ACTIONS(2747), + [anon_sym_nonlocal] = ACTIONS(2747), + [anon_sym_exec] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_lambda] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2745), + [anon_sym_None] = ACTIONS(2747), + [anon_sym_0x] = ACTIONS(2745), + [anon_sym_0X] = ACTIONS(2745), + [anon_sym_0o] = ACTIONS(2745), + [anon_sym_0O] = ACTIONS(2745), + [anon_sym_0b] = ACTIONS(2745), + [anon_sym_0B] = ACTIONS(2745), + [aux_sym_integer_token4] = ACTIONS(2747), + [sym_float] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2747), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2747), + [anon_sym_include] = ACTIONS(2747), + [anon_sym_DEF] = ACTIONS(2747), + [anon_sym_IF] = ACTIONS(2747), + [anon_sym_cdef] = ACTIONS(2747), + [anon_sym_cpdef] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_ctypedef] = ACTIONS(2747), + [anon_sym_public] = ACTIONS(2747), + [anon_sym_packed] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_readonly] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2747), + [sym_string_start] = ACTIONS(2745), + }, + [959] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5355), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -115400,312 +130951,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2749), [sym_string_start] = ACTIONS(117), }, - [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), + [960] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5835), + [sym_expression] = STATE(5191), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5835), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [961] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5355), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2751), + [sym_string_start] = ACTIONS(117), }, - [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), + [962] = { + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_cimport] = ACTIONS(2741), + [anon_sym_from] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_del] = ACTIONS(2741), + [anon_sym_raise] = ACTIONS(2741), + [anon_sym_pass] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_except_STAR] = ACTIONS(2743), + [anon_sym_finally] = ACTIONS(2741), + [anon_sym_with] = ACTIONS(2741), + [anon_sym_def] = ACTIONS(2741), + [anon_sym_global] = ACTIONS(2741), + [anon_sym_nonlocal] = ACTIONS(2741), + [anon_sym_exec] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_lambda] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_None] = ACTIONS(2741), + [anon_sym_0x] = ACTIONS(2743), + [anon_sym_0X] = ACTIONS(2743), + [anon_sym_0o] = ACTIONS(2743), + [anon_sym_0O] = ACTIONS(2743), + [anon_sym_0b] = ACTIONS(2743), + [anon_sym_0B] = ACTIONS(2743), + [aux_sym_integer_token4] = ACTIONS(2741), + [sym_float] = ACTIONS(2743), + [anon_sym_await] = ACTIONS(2741), + [anon_sym_api] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2741), + [anon_sym_include] = ACTIONS(2741), + [anon_sym_DEF] = ACTIONS(2741), + [anon_sym_IF] = ACTIONS(2741), + [anon_sym_cdef] = ACTIONS(2741), + [anon_sym_cpdef] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_ctypedef] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2741), + [anon_sym_packed] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_string_start] = ACTIONS(2743), }, - [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), + [963] = { + [sym_identifier] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_cimport] = ACTIONS(2753), + [anon_sym_from] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_assert] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_del] = ACTIONS(2753), + [anon_sym_raise] = ACTIONS(2753), + [anon_sym_pass] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_except] = ACTIONS(2753), + [anon_sym_finally] = ACTIONS(2753), + [anon_sym_with] = ACTIONS(2753), + [anon_sym_def] = ACTIONS(2753), + [anon_sym_global] = ACTIONS(2753), + [anon_sym_nonlocal] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_lambda] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2755), + [anon_sym_None] = ACTIONS(2753), + [anon_sym_0x] = ACTIONS(2755), + [anon_sym_0X] = ACTIONS(2755), + [anon_sym_0o] = ACTIONS(2755), + [anon_sym_0O] = ACTIONS(2755), + [anon_sym_0b] = ACTIONS(2755), + [anon_sym_0B] = ACTIONS(2755), + [aux_sym_integer_token4] = ACTIONS(2753), + [sym_float] = ACTIONS(2755), + [anon_sym_await] = ACTIONS(2753), + [anon_sym_api] = ACTIONS(2753), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2753), + [anon_sym_include] = ACTIONS(2753), + [anon_sym_DEF] = ACTIONS(2753), + [anon_sym_IF] = ACTIONS(2753), + [anon_sym_cdef] = ACTIONS(2753), + [anon_sym_cpdef] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_ctypedef] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_packed] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_readonly] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2753), + [sym__dedent] = ACTIONS(2755), + [sym_string_start] = ACTIONS(2755), }, - [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), + [964] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -115716,541 +131321,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2581), [sym_string_start] = ACTIONS(117), }, - [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_new] = ACTIONS(2153), - [anon_sym_sizeof] = ACTIONS(1999), - [sym_string_start] = ACTIONS(2001), + [965] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_item] = STATE(6838), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [966] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_clause] = STATE(6931), + [sym_with_item] = STATE(6597), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [967] = { + [sym_identifier] = ACTIONS(2763), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_cimport] = ACTIONS(2763), + [anon_sym_from] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_print] = ACTIONS(2763), + [anon_sym_assert] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_del] = ACTIONS(2763), + [anon_sym_raise] = ACTIONS(2763), + [anon_sym_pass] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_async] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_except_STAR] = ACTIONS(2765), + [anon_sym_finally] = ACTIONS(2763), + [anon_sym_with] = ACTIONS(2763), + [anon_sym_def] = ACTIONS(2763), + [anon_sym_global] = ACTIONS(2763), + [anon_sym_nonlocal] = ACTIONS(2763), + [anon_sym_exec] = ACTIONS(2763), + [anon_sym_type] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2763), + [anon_sym_yield] = ACTIONS(2763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), + [anon_sym_None] = ACTIONS(2763), + [anon_sym_0x] = ACTIONS(2765), + [anon_sym_0X] = ACTIONS(2765), + [anon_sym_0o] = ACTIONS(2765), + [anon_sym_0O] = ACTIONS(2765), + [anon_sym_0b] = ACTIONS(2765), + [anon_sym_0B] = ACTIONS(2765), + [aux_sym_integer_token4] = ACTIONS(2763), + [sym_float] = ACTIONS(2765), + [anon_sym_await] = ACTIONS(2763), + [anon_sym_api] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2763), + [anon_sym_include] = ACTIONS(2763), + [anon_sym_DEF] = ACTIONS(2763), + [anon_sym_IF] = ACTIONS(2763), + [anon_sym_cdef] = ACTIONS(2763), + [anon_sym_cpdef] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_ctypedef] = ACTIONS(2763), + [anon_sym_public] = ACTIONS(2763), + [anon_sym_packed] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_readonly] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2763), + [sym__dedent] = ACTIONS(2765), + [sym_string_start] = ACTIONS(2765), }, - [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_new] = ACTIONS(2153), - [anon_sym_sizeof] = ACTIONS(1999), - [sym_string_start] = ACTIONS(2001), + [968] = { + [sym_identifier] = ACTIONS(2767), + [anon_sym_import] = ACTIONS(2767), + [anon_sym_cimport] = ACTIONS(2767), + [anon_sym_from] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_print] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_del] = ACTIONS(2767), + [anon_sym_raise] = ACTIONS(2767), + [anon_sym_pass] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_async] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_except] = ACTIONS(2767), + [anon_sym_finally] = ACTIONS(2767), + [anon_sym_with] = ACTIONS(2767), + [anon_sym_def] = ACTIONS(2767), + [anon_sym_global] = ACTIONS(2767), + [anon_sym_nonlocal] = ACTIONS(2767), + [anon_sym_exec] = ACTIONS(2767), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), + [anon_sym_None] = ACTIONS(2767), + [anon_sym_0x] = ACTIONS(2769), + [anon_sym_0X] = ACTIONS(2769), + [anon_sym_0o] = ACTIONS(2769), + [anon_sym_0O] = ACTIONS(2769), + [anon_sym_0b] = ACTIONS(2769), + [anon_sym_0B] = ACTIONS(2769), + [aux_sym_integer_token4] = ACTIONS(2767), + [sym_float] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(2767), + [anon_sym_api] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2767), + [anon_sym_include] = ACTIONS(2767), + [anon_sym_DEF] = ACTIONS(2767), + [anon_sym_IF] = ACTIONS(2767), + [anon_sym_cdef] = ACTIONS(2767), + [anon_sym_cpdef] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_ctypedef] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2767), + [anon_sym_packed] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2767), + [sym__dedent] = ACTIONS(2769), + [sym_string_start] = ACTIONS(2769), }, - [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), + [969] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5255), [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), - }, - [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -116269,233 +131691,810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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), }, - [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), + [970] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5491), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [971] = { + [sym_identifier] = ACTIONS(2775), + [anon_sym_import] = ACTIONS(2775), + [anon_sym_cimport] = ACTIONS(2775), + [anon_sym_from] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2777), + [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_STAR] = ACTIONS(2777), + [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(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(2775), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2777), + [anon_sym_None] = ACTIONS(2775), + [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(2775), + [sym_float] = ACTIONS(2777), + [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(2777), + [sym_string_start] = ACTIONS(2777), }, - [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), + [972] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5607), + [sym_expression] = STATE(5111), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5607), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [973] = { + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_cimport] = ACTIONS(2737), + [anon_sym_from] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_print] = ACTIONS(2737), + [anon_sym_assert] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_del] = ACTIONS(2737), + [anon_sym_raise] = ACTIONS(2737), + [anon_sym_pass] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_except] = ACTIONS(2737), + [anon_sym_finally] = ACTIONS(2737), + [anon_sym_with] = ACTIONS(2737), + [anon_sym_def] = ACTIONS(2737), + [anon_sym_global] = ACTIONS(2737), + [anon_sym_nonlocal] = ACTIONS(2737), + [anon_sym_exec] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_AT] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_lambda] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2739), + [anon_sym_None] = ACTIONS(2737), + [anon_sym_0x] = ACTIONS(2739), + [anon_sym_0X] = ACTIONS(2739), + [anon_sym_0o] = ACTIONS(2739), + [anon_sym_0O] = ACTIONS(2739), + [anon_sym_0b] = ACTIONS(2739), + [anon_sym_0B] = ACTIONS(2739), + [aux_sym_integer_token4] = ACTIONS(2737), + [sym_float] = ACTIONS(2739), + [anon_sym_await] = ACTIONS(2737), + [anon_sym_api] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2737), + [anon_sym_include] = ACTIONS(2737), + [anon_sym_DEF] = ACTIONS(2737), + [anon_sym_IF] = ACTIONS(2737), + [anon_sym_cdef] = ACTIONS(2737), + [anon_sym_cpdef] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_ctypedef] = ACTIONS(2737), + [anon_sym_public] = ACTIONS(2737), + [anon_sym_packed] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_readonly] = ACTIONS(2737), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_string_start] = ACTIONS(2739), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except] = ACTIONS(2727), + [anon_sym_finally] = ACTIONS(2727), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [anon_sym_0x] = ACTIONS(2729), + [anon_sym_0X] = ACTIONS(2729), + [anon_sym_0o] = ACTIONS(2729), + [anon_sym_0O] = ACTIONS(2729), + [anon_sym_0b] = ACTIONS(2729), + [anon_sym_0B] = ACTIONS(2729), + [aux_sym_integer_token4] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), + [anon_sym_api] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_IF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym_string_start] = ACTIONS(2729), + }, + [975] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5568), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5568), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [976] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5812), + [sym_expression] = STATE(5219), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5812), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [977] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5507), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [978] = { + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2767), + [anon_sym_import] = ACTIONS(2767), + [anon_sym_cimport] = ACTIONS(2767), + [anon_sym_from] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_print] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_del] = ACTIONS(2767), + [anon_sym_raise] = ACTIONS(2767), + [anon_sym_pass] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_async] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [anon_sym_except] = ACTIONS(2767), + [anon_sym_finally] = ACTIONS(2767), + [anon_sym_with] = ACTIONS(2767), + [anon_sym_def] = ACTIONS(2767), + [anon_sym_global] = ACTIONS(2767), + [anon_sym_nonlocal] = ACTIONS(2767), + [anon_sym_exec] = ACTIONS(2767), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), + [anon_sym_None] = ACTIONS(2767), + [anon_sym_0x] = ACTIONS(2769), + [anon_sym_0X] = ACTIONS(2769), + [anon_sym_0o] = ACTIONS(2769), + [anon_sym_0O] = ACTIONS(2769), + [anon_sym_0b] = ACTIONS(2769), + [anon_sym_0B] = ACTIONS(2769), + [aux_sym_integer_token4] = ACTIONS(2767), + [sym_float] = ACTIONS(2769), + [anon_sym_await] = ACTIONS(2767), + [anon_sym_api] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2767), + [anon_sym_include] = ACTIONS(2767), + [anon_sym_DEF] = ACTIONS(2767), + [anon_sym_IF] = ACTIONS(2767), + [anon_sym_cdef] = ACTIONS(2767), + [anon_sym_cpdef] = ACTIONS(2767), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_ctypedef] = ACTIONS(2767), + [anon_sym_public] = ACTIONS(2767), + [anon_sym_packed] = ACTIONS(2767), + [anon_sym_inline] = ACTIONS(2767), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2767), + [sym_string_start] = ACTIONS(2769), + }, + [979] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5557), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5557), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [980] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -116506,225 +132505,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(109), [anon_sym_sizeof] = ACTIONS(115), + [sym__newline] = ACTIONS(2509), [sym_string_start] = ACTIONS(117), }, - [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), + [981] = { + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_identifier] = ACTIONS(2731), + [anon_sym_import] = ACTIONS(2731), + [anon_sym_cimport] = ACTIONS(2731), + [anon_sym_from] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_print] = ACTIONS(2731), + [anon_sym_assert] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_del] = ACTIONS(2731), + [anon_sym_raise] = ACTIONS(2731), + [anon_sym_pass] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_async] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [anon_sym_except_STAR] = ACTIONS(2733), + [anon_sym_finally] = ACTIONS(2731), + [anon_sym_with] = ACTIONS(2731), + [anon_sym_def] = ACTIONS(2731), + [anon_sym_global] = ACTIONS(2731), + [anon_sym_nonlocal] = ACTIONS(2731), + [anon_sym_exec] = ACTIONS(2731), + [anon_sym_type] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2733), + [anon_sym_LT] = ACTIONS(2733), + [anon_sym_lambda] = ACTIONS(2731), + [anon_sym_yield] = ACTIONS(2731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2733), + [anon_sym_None] = ACTIONS(2731), + [anon_sym_0x] = ACTIONS(2733), + [anon_sym_0X] = ACTIONS(2733), + [anon_sym_0o] = ACTIONS(2733), + [anon_sym_0O] = ACTIONS(2733), + [anon_sym_0b] = ACTIONS(2733), + [anon_sym_0B] = ACTIONS(2733), + [aux_sym_integer_token4] = ACTIONS(2731), + [sym_float] = ACTIONS(2733), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2731), + [anon_sym_include] = ACTIONS(2731), + [anon_sym_DEF] = ACTIONS(2731), + [anon_sym_IF] = ACTIONS(2731), + [anon_sym_cdef] = ACTIONS(2731), + [anon_sym_cpdef] = ACTIONS(2731), + [anon_sym_new] = ACTIONS(2731), + [anon_sym_ctypedef] = ACTIONS(2731), + [anon_sym_public] = ACTIONS(2731), + [anon_sym_packed] = ACTIONS(2731), + [anon_sym_inline] = ACTIONS(2731), + [anon_sym_readonly] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2731), + [sym_string_start] = ACTIONS(2733), }, - [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), + [982] = { + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2775), + [anon_sym_import] = ACTIONS(2775), + [anon_sym_cimport] = ACTIONS(2775), + [anon_sym_from] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2777), + [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_STAR] = ACTIONS(2777), + [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(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(2775), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2777), + [anon_sym_None] = ACTIONS(2775), + [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(2775), + [sym_float] = ACTIONS(2777), + [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_new] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1674), + [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(2777), }, - [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), + [983] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [sym_type_conversion] = ACTIONS(1549), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [984] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5443), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [985] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4257), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [986] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -116743,8305 +132949,1180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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(2789), [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), + [987] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5599), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5599), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [988] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5517), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [989] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5356), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6638), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [990] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5838), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5838), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), [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), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [991] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5184), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6559), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [992] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5584), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5584), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [993] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5639), + [sym_expression] = STATE(5156), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5639), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [994] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5567), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5567), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), [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), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [995] = { + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_except] = ACTIONS(2650), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2652), }, - [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), + [996] = { + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [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(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(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), + [anon_sym_None] = ACTIONS(2656), + [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(2656), + [sym_float] = ACTIONS(2654), + [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(2654), + [sym_string_start] = ACTIONS(2654), }, - [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), + [997] = { + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_except] = ACTIONS(2601), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym__dedent] = ACTIONS(2599), + [sym_string_start] = ACTIONS(2599), }, - [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), + [998] = { + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_except] = ACTIONS(2688), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym__dedent] = ACTIONS(2686), + [sym_string_start] = ACTIONS(2686), }, - [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), + [999] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_except] = ACTIONS(2607), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym__dedent] = ACTIONS(2605), + [sym_string_start] = ACTIONS(2605), }, - [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), + [1000] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5518), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2793), [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), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1001] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5573), + [sym_expression] = STATE(5197), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5573), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), [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), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1002] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [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_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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -125052,1128 +134133,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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__newline] = ACTIONS(2795), [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), + [1003] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [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_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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -126192,2150 +134207,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [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__newline] = ACTIONS(2797), [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), + [1004] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym__expression_within_for_in_clause] = STATE(5641), + [sym_expression] = STATE(5165), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_lambda_within_for_in_clause] = STATE(5641), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1005] = { + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_except_STAR] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2652), }, - [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), + [1006] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5598), + [sym_expression] = STATE(5213), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5598), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), [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), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1007] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5482), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1008] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_cimport] = ACTIONS(2801), + [anon_sym_from] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_print] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_del] = ACTIONS(2801), + [anon_sym_raise] = ACTIONS(2801), + [anon_sym_pass] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_except] = ACTIONS(2801), + [anon_sym_finally] = ACTIONS(2801), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_def] = ACTIONS(2801), + [anon_sym_global] = ACTIONS(2801), + [anon_sym_nonlocal] = ACTIONS(2801), + [anon_sym_exec] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_lambda] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_None] = ACTIONS(2801), + [anon_sym_0x] = ACTIONS(2799), + [anon_sym_0X] = ACTIONS(2799), + [anon_sym_0o] = ACTIONS(2799), + [anon_sym_0O] = ACTIONS(2799), + [anon_sym_0b] = ACTIONS(2799), + [anon_sym_0B] = ACTIONS(2799), + [aux_sym_integer_token4] = ACTIONS(2801), + [sym_float] = ACTIONS(2799), + [anon_sym_await] = ACTIONS(2801), + [anon_sym_api] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2801), + [anon_sym_include] = ACTIONS(2801), + [anon_sym_DEF] = ACTIONS(2801), + [anon_sym_IF] = ACTIONS(2801), + [anon_sym_cdef] = ACTIONS(2801), + [anon_sym_cpdef] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_ctypedef] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_packed] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_readonly] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_string_start] = ACTIONS(2799), }, - [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), + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_cimport] = ACTIONS(2753), + [anon_sym_from] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_assert] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_del] = ACTIONS(2753), + [anon_sym_raise] = ACTIONS(2753), + [anon_sym_pass] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_except] = ACTIONS(2753), + [anon_sym_finally] = ACTIONS(2753), + [anon_sym_with] = ACTIONS(2753), + [anon_sym_def] = ACTIONS(2753), + [anon_sym_global] = ACTIONS(2753), + [anon_sym_nonlocal] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_lambda] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2755), + [anon_sym_None] = ACTIONS(2753), + [anon_sym_0x] = ACTIONS(2755), + [anon_sym_0X] = ACTIONS(2755), + [anon_sym_0o] = ACTIONS(2755), + [anon_sym_0O] = ACTIONS(2755), + [anon_sym_0b] = ACTIONS(2755), + [anon_sym_0B] = ACTIONS(2755), + [aux_sym_integer_token4] = ACTIONS(2753), + [sym_float] = ACTIONS(2755), + [anon_sym_await] = ACTIONS(2753), + [anon_sym_api] = ACTIONS(2753), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2753), + [anon_sym_include] = ACTIONS(2753), + [anon_sym_DEF] = ACTIONS(2753), + [anon_sym_IF] = ACTIONS(2753), + [anon_sym_cdef] = ACTIONS(2753), + [anon_sym_cpdef] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_ctypedef] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_packed] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_readonly] = ACTIONS(2753), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_string_start] = ACTIONS(2755), }, - [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), + [1010] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5482), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_COMMA] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [915] = { + [1011] = { [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_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), [anon_sym_print] = ACTIONS(2656), [anon_sym_assert] = ACTIONS(2656), [anon_sym_return] = ACTIONS(2656), @@ -128345,11 +134752,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2654), [anon_sym_finally] = ACTIONS(2656), [anon_sym_with] = ACTIONS(2656), [anon_sym_def] = ACTIONS(2656), @@ -128358,27 +134767,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2656), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), [anon_sym_lambda] = ACTIONS(2656), [anon_sym_yield] = ACTIONS(2656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), [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), + [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(2656), - [sym_float] = ACTIONS(2658), + [sym_float] = ACTIONS(2654), [anon_sym_await] = ACTIONS(2656), [anon_sym_api] = ACTIONS(2656), [sym_true] = ACTIONS(2656), @@ -128389,8 +134798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -128400,768 +134807,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), }, - [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), + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2763), + [anon_sym_import] = ACTIONS(2763), + [anon_sym_cimport] = ACTIONS(2763), + [anon_sym_from] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_print] = ACTIONS(2763), + [anon_sym_assert] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_del] = ACTIONS(2763), + [anon_sym_raise] = ACTIONS(2763), + [anon_sym_pass] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_async] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [anon_sym_except_STAR] = ACTIONS(2765), + [anon_sym_finally] = ACTIONS(2763), + [anon_sym_with] = ACTIONS(2763), + [anon_sym_def] = ACTIONS(2763), + [anon_sym_global] = ACTIONS(2763), + [anon_sym_nonlocal] = ACTIONS(2763), + [anon_sym_exec] = ACTIONS(2763), + [anon_sym_type] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2763), + [anon_sym_yield] = ACTIONS(2763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), + [anon_sym_None] = ACTIONS(2763), + [anon_sym_0x] = ACTIONS(2765), + [anon_sym_0X] = ACTIONS(2765), + [anon_sym_0o] = ACTIONS(2765), + [anon_sym_0O] = ACTIONS(2765), + [anon_sym_0b] = ACTIONS(2765), + [anon_sym_0B] = ACTIONS(2765), + [aux_sym_integer_token4] = ACTIONS(2763), + [sym_float] = ACTIONS(2765), + [anon_sym_await] = ACTIONS(2763), + [anon_sym_api] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2763), + [anon_sym_include] = ACTIONS(2763), + [anon_sym_DEF] = ACTIONS(2763), + [anon_sym_IF] = ACTIONS(2763), + [anon_sym_cdef] = ACTIONS(2763), + [anon_sym_cpdef] = ACTIONS(2763), + [anon_sym_new] = ACTIONS(2763), + [anon_sym_ctypedef] = ACTIONS(2763), + [anon_sym_public] = ACTIONS(2763), + [anon_sym_packed] = ACTIONS(2763), + [anon_sym_inline] = ACTIONS(2763), + [anon_sym_readonly] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2763), + [sym_string_start] = ACTIONS(2765), }, - [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), + [1013] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_except] = ACTIONS(2601), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym_string_start] = ACTIONS(2599), }, - [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), + [1014] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym__expression_within_for_in_clause] = STATE(5721), + [sym_expression] = STATE(5164), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_lambda_within_for_in_clause] = STATE(5721), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1015] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_except] = ACTIONS(2607), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_string_start] = ACTIONS(2605), }, - [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), + [1016] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_with_item] = STATE(6767), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5530), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1017] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_except] = ACTIONS(2650), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym_string_start] = ACTIONS(2652), }, - [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), + [1018] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5182), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6525), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1019] = { + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_except_STAR] = ACTIONS(2599), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym__dedent] = ACTIONS(2599), + [sym_string_start] = ACTIONS(2599), }, - [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), + [1020] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5560), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(2658), + [1021] = { + [ts_builtin_sym_end] = ACTIONS(2654), [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_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), [anon_sym_print] = ACTIONS(2656), [anon_sym_assert] = ACTIONS(2656), [anon_sym_return] = ACTIONS(2656), @@ -129171,11 +135493,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -129184,27 +135508,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2656), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), [anon_sym_lambda] = ACTIONS(2656), [anon_sym_yield] = ACTIONS(2656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), [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), + [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(2656), - [sym_float] = ACTIONS(2658), + [sym_float] = ACTIONS(2654), [anon_sym_await] = ACTIONS(2656), [anon_sym_api] = ACTIONS(2656), [sym_true] = ACTIONS(2656), @@ -129215,8 +135539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -129226,3832 +135548,3914 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2656), [anon_sym_readonly] = ACTIONS(2656), [anon_sym_sizeof] = ACTIONS(2656), - [sym_string_start] = ACTIONS(2658), + [sym_string_start] = ACTIONS(2654), }, - [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), + [1022] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5125), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6419), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1023] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5560), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_RBRACK] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1024] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5187), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6042), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1025] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_except] = ACTIONS(2688), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym_string_start] = ACTIONS(2686), }, - [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), + [1026] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5231), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6037), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1027] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1028] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5106), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6083), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1029] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5119), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6129), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1030] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [sym_type_conversion] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1031] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5127), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6163), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1032] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5134), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6186), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1033] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5139), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6208), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1034] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5143), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6230), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1035] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5152), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_slice] = STATE(6249), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1036] = { + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_except_STAR] = ACTIONS(2686), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym__dedent] = ACTIONS(2686), + [sym_string_start] = ACTIONS(2686), }, - [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), + [1037] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_clause] = STATE(6965), + [sym_with_item] = STATE(6597), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [943] = { + [1038] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_clause] = STATE(7019), + [sym_with_item] = STATE(6597), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_except_STAR] = ACTIONS(2599), + [anon_sym_finally] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym_string_start] = ACTIONS(2599), + }, + [1040] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_except_STAR] = ACTIONS(2605), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym__dedent] = ACTIONS(2605), + [sym_string_start] = ACTIONS(2605), + }, + [1041] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_except_STAR] = ACTIONS(2605), + [anon_sym_finally] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_string_start] = ACTIONS(2605), + }, + [1042] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_clause] = STATE(7260), + [sym_with_item] = STATE(6597), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1043] = { + [sym_identifier] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_cimport] = ACTIONS(2801), + [anon_sym_from] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_print] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_del] = ACTIONS(2801), + [anon_sym_raise] = ACTIONS(2801), + [anon_sym_pass] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_except] = ACTIONS(2801), + [anon_sym_finally] = ACTIONS(2801), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_def] = ACTIONS(2801), + [anon_sym_global] = ACTIONS(2801), + [anon_sym_nonlocal] = ACTIONS(2801), + [anon_sym_exec] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_lambda] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_None] = ACTIONS(2801), + [anon_sym_0x] = ACTIONS(2799), + [anon_sym_0X] = ACTIONS(2799), + [anon_sym_0o] = ACTIONS(2799), + [anon_sym_0O] = ACTIONS(2799), + [anon_sym_0b] = ACTIONS(2799), + [anon_sym_0B] = ACTIONS(2799), + [aux_sym_integer_token4] = ACTIONS(2801), + [sym_float] = ACTIONS(2799), + [anon_sym_await] = ACTIONS(2801), + [anon_sym_api] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2801), + [anon_sym_include] = ACTIONS(2801), + [anon_sym_DEF] = ACTIONS(2801), + [anon_sym_IF] = ACTIONS(2801), + [anon_sym_cdef] = ACTIONS(2801), + [anon_sym_cpdef] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_ctypedef] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_packed] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_readonly] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2801), + [sym__dedent] = ACTIONS(2799), + [sym_string_start] = ACTIONS(2799), + }, + [1044] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5581), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_except_STAR] = ACTIONS(2652), + [anon_sym_finally] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym_string_start] = ACTIONS(2652), + }, + [1046] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym__expression_within_for_in_clause] = STATE(5442), + [sym_expression] = STATE(5114), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_lambda_within_for_in_clause] = STATE(5442), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1047] = { [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), + [sym_identifier] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_cimport] = ACTIONS(2656), + [anon_sym_from] = ACTIONS(2656), [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_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(2654), + [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(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_not] = ACTIONS(2656), [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_lambda] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), - [anon_sym_None] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2656), [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), + [aux_sym_integer_token4] = ACTIONS(2656), [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), + [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(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), + [1048] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_item] = STATE(6838), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_except_STAR] = ACTIONS(2686), + [anon_sym_finally] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym_string_start] = ACTIONS(2686), }, - [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), + [1050] = { + [sym_identifier] = ACTIONS(2747), + [anon_sym_import] = ACTIONS(2747), + [anon_sym_cimport] = ACTIONS(2747), + [anon_sym_from] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_print] = ACTIONS(2747), + [anon_sym_assert] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_del] = ACTIONS(2747), + [anon_sym_raise] = ACTIONS(2747), + [anon_sym_pass] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_match] = ACTIONS(2747), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_except] = ACTIONS(2747), + [anon_sym_finally] = ACTIONS(2747), + [anon_sym_with] = ACTIONS(2747), + [anon_sym_def] = ACTIONS(2747), + [anon_sym_global] = ACTIONS(2747), + [anon_sym_nonlocal] = ACTIONS(2747), + [anon_sym_exec] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_lambda] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2745), + [anon_sym_None] = ACTIONS(2747), + [anon_sym_0x] = ACTIONS(2745), + [anon_sym_0X] = ACTIONS(2745), + [anon_sym_0o] = ACTIONS(2745), + [anon_sym_0O] = ACTIONS(2745), + [anon_sym_0b] = ACTIONS(2745), + [anon_sym_0B] = ACTIONS(2745), + [aux_sym_integer_token4] = ACTIONS(2747), + [sym_float] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2747), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2747), + [anon_sym_include] = ACTIONS(2747), + [anon_sym_DEF] = ACTIONS(2747), + [anon_sym_IF] = ACTIONS(2747), + [anon_sym_cdef] = ACTIONS(2747), + [anon_sym_cpdef] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_ctypedef] = ACTIONS(2747), + [anon_sym_public] = ACTIONS(2747), + [anon_sym_packed] = ACTIONS(2747), + [anon_sym_inline] = ACTIONS(2747), + [anon_sym_readonly] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2747), + [sym__dedent] = ACTIONS(2745), + [sym_string_start] = ACTIONS(2745), }, - [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), + [1051] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_expression_list] = STATE(5897), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5020), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1052] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1053] = { + [sym_finally_clause] = STATE(2211), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_cimport] = ACTIONS(2811), + [anon_sym_from] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_print] = ACTIONS(2811), + [anon_sym_assert] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_del] = ACTIONS(2811), + [anon_sym_raise] = ACTIONS(2811), + [anon_sym_pass] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_finally] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_def] = ACTIONS(2811), + [anon_sym_global] = ACTIONS(2811), + [anon_sym_nonlocal] = ACTIONS(2811), + [anon_sym_exec] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_lambda] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), + [anon_sym_None] = ACTIONS(2811), + [anon_sym_0x] = ACTIONS(2809), + [anon_sym_0X] = ACTIONS(2809), + [anon_sym_0o] = ACTIONS(2809), + [anon_sym_0O] = ACTIONS(2809), + [anon_sym_0b] = ACTIONS(2809), + [anon_sym_0B] = ACTIONS(2809), + [aux_sym_integer_token4] = ACTIONS(2811), + [sym_float] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2811), + [anon_sym_include] = ACTIONS(2811), + [anon_sym_DEF] = ACTIONS(2811), + [anon_sym_IF] = ACTIONS(2811), + [anon_sym_cdef] = ACTIONS(2811), + [anon_sym_cpdef] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_ctypedef] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_packed] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_string_start] = ACTIONS(2809), }, - [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), + [1054] = { + [sym_else_clause] = STATE(2079), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_import] = ACTIONS(2815), + [anon_sym_cimport] = ACTIONS(2815), + [anon_sym_from] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_print] = ACTIONS(2815), + [anon_sym_assert] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_del] = ACTIONS(2815), + [anon_sym_raise] = ACTIONS(2815), + [anon_sym_pass] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_def] = ACTIONS(2815), + [anon_sym_global] = ACTIONS(2815), + [anon_sym_nonlocal] = ACTIONS(2815), + [anon_sym_exec] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_lambda] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2813), + [anon_sym_None] = ACTIONS(2815), + [anon_sym_0x] = ACTIONS(2813), + [anon_sym_0X] = ACTIONS(2813), + [anon_sym_0o] = ACTIONS(2813), + [anon_sym_0O] = ACTIONS(2813), + [anon_sym_0b] = ACTIONS(2813), + [anon_sym_0B] = ACTIONS(2813), + [aux_sym_integer_token4] = ACTIONS(2815), + [sym_float] = ACTIONS(2813), + [anon_sym_await] = ACTIONS(2815), + [anon_sym_api] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2815), + [anon_sym_include] = ACTIONS(2815), + [anon_sym_DEF] = ACTIONS(2815), + [anon_sym_IF] = ACTIONS(2815), + [anon_sym_cdef] = ACTIONS(2815), + [anon_sym_cpdef] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_ctypedef] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_packed] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2815), + [sym_string_start] = ACTIONS(2813), }, - [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), + [1055] = { + [sym_else_clause] = STATE(2153), + [sym_identifier] = ACTIONS(2817), + [anon_sym_import] = ACTIONS(2817), + [anon_sym_cimport] = ACTIONS(2817), + [anon_sym_from] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_print] = ACTIONS(2817), + [anon_sym_assert] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_del] = ACTIONS(2817), + [anon_sym_raise] = ACTIONS(2817), + [anon_sym_pass] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_async] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_with] = ACTIONS(2817), + [anon_sym_def] = ACTIONS(2817), + [anon_sym_global] = ACTIONS(2817), + [anon_sym_nonlocal] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(2817), + [anon_sym_type] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_AT] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_lambda] = ACTIONS(2817), + [anon_sym_yield] = ACTIONS(2817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), + [anon_sym_None] = ACTIONS(2817), + [anon_sym_0x] = ACTIONS(2819), + [anon_sym_0X] = ACTIONS(2819), + [anon_sym_0o] = ACTIONS(2819), + [anon_sym_0O] = ACTIONS(2819), + [anon_sym_0b] = ACTIONS(2819), + [anon_sym_0B] = ACTIONS(2819), + [aux_sym_integer_token4] = ACTIONS(2817), + [sym_float] = ACTIONS(2819), + [anon_sym_await] = ACTIONS(2817), + [anon_sym_api] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2817), + [anon_sym_include] = ACTIONS(2817), + [anon_sym_DEF] = ACTIONS(2817), + [anon_sym_IF] = ACTIONS(2817), + [anon_sym_cdef] = ACTIONS(2817), + [anon_sym_cpdef] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_ctypedef] = ACTIONS(2817), + [anon_sym_public] = ACTIONS(2817), + [anon_sym_packed] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2817), + [sym__dedent] = ACTIONS(2819), + [sym_string_start] = ACTIONS(2819), }, - [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), + [1056] = { + [sym_else_clause] = STATE(2154), + [sym_identifier] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_cimport] = ACTIONS(2821), + [anon_sym_from] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_print] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_del] = ACTIONS(2821), + [anon_sym_raise] = ACTIONS(2821), + [anon_sym_pass] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_async] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_def] = ACTIONS(2821), + [anon_sym_global] = ACTIONS(2821), + [anon_sym_nonlocal] = ACTIONS(2821), + [anon_sym_exec] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_AT] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_lambda] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), + [anon_sym_None] = ACTIONS(2821), + [anon_sym_0x] = ACTIONS(2823), + [anon_sym_0X] = ACTIONS(2823), + [anon_sym_0o] = ACTIONS(2823), + [anon_sym_0O] = ACTIONS(2823), + [anon_sym_0b] = ACTIONS(2823), + [anon_sym_0B] = ACTIONS(2823), + [aux_sym_integer_token4] = ACTIONS(2821), + [sym_float] = ACTIONS(2823), + [anon_sym_await] = ACTIONS(2821), + [anon_sym_api] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2821), + [anon_sym_include] = ACTIONS(2821), + [anon_sym_DEF] = ACTIONS(2821), + [anon_sym_IF] = ACTIONS(2821), + [anon_sym_cdef] = ACTIONS(2821), + [anon_sym_cpdef] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_ctypedef] = ACTIONS(2821), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_packed] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_readonly] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2821), + [sym__dedent] = ACTIONS(2823), + [sym_string_start] = ACTIONS(2823), }, - [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), + [1057] = { + [sym_identifier] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_cimport] = ACTIONS(2825), + [anon_sym_from] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_print] = ACTIONS(2825), + [anon_sym_assert] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_del] = ACTIONS(2825), + [anon_sym_raise] = ACTIONS(2825), + [anon_sym_pass] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_match] = ACTIONS(2825), + [anon_sym_async] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_with] = ACTIONS(2825), + [anon_sym_def] = ACTIONS(2825), + [anon_sym_global] = ACTIONS(2825), + [anon_sym_nonlocal] = ACTIONS(2825), + [anon_sym_exec] = ACTIONS(2825), + [anon_sym_type] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2827), + [anon_sym_lambda] = ACTIONS(2825), + [anon_sym_yield] = ACTIONS(2825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2827), + [anon_sym_None] = ACTIONS(2825), + [anon_sym_0x] = ACTIONS(2827), + [anon_sym_0X] = ACTIONS(2827), + [anon_sym_0o] = ACTIONS(2827), + [anon_sym_0O] = ACTIONS(2827), + [anon_sym_0b] = ACTIONS(2827), + [anon_sym_0B] = ACTIONS(2827), + [aux_sym_integer_token4] = ACTIONS(2825), + [sym_float] = ACTIONS(2827), + [anon_sym_await] = ACTIONS(2825), + [anon_sym_api] = ACTIONS(2825), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2825), + [anon_sym_include] = ACTIONS(2825), + [anon_sym_DEF] = ACTIONS(2825), + [anon_sym_IF] = ACTIONS(2825), + [anon_sym_ELIF] = ACTIONS(2825), + [anon_sym_ELSE] = ACTIONS(2825), + [anon_sym_cdef] = ACTIONS(2825), + [anon_sym_cpdef] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_ctypedef] = ACTIONS(2825), + [anon_sym_public] = ACTIONS(2825), + [anon_sym_packed] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_readonly] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2825), + [sym__dedent] = ACTIONS(2827), + [sym_string_start] = ACTIONS(2827), }, - [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), + [1058] = { + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2831), + [anon_sym_cimport] = ACTIONS(2831), + [anon_sym_from] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_print] = ACTIONS(2831), + [anon_sym_assert] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_del] = ACTIONS(2831), + [anon_sym_raise] = ACTIONS(2831), + [anon_sym_pass] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_with] = ACTIONS(2831), + [anon_sym_def] = ACTIONS(2831), + [anon_sym_global] = ACTIONS(2831), + [anon_sym_nonlocal] = ACTIONS(2831), + [anon_sym_exec] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_lambda] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2829), + [anon_sym_None] = ACTIONS(2831), + [anon_sym_0x] = ACTIONS(2829), + [anon_sym_0X] = ACTIONS(2829), + [anon_sym_0o] = ACTIONS(2829), + [anon_sym_0O] = ACTIONS(2829), + [anon_sym_0b] = ACTIONS(2829), + [anon_sym_0B] = ACTIONS(2829), + [aux_sym_integer_token4] = ACTIONS(2831), + [sym_float] = ACTIONS(2829), + [anon_sym_await] = ACTIONS(2831), + [anon_sym_api] = ACTIONS(2831), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2831), + [anon_sym_include] = ACTIONS(2831), + [anon_sym_DEF] = ACTIONS(2831), + [anon_sym_IF] = ACTIONS(2831), + [anon_sym_cdef] = ACTIONS(2831), + [anon_sym_cpdef] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_ctypedef] = ACTIONS(2831), + [anon_sym_public] = ACTIONS(2831), + [anon_sym_packed] = ACTIONS(2831), + [anon_sym_inline] = ACTIONS(2831), + [anon_sym_readonly] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2831), + [sym_string_start] = ACTIONS(2829), }, - [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), + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_elif] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym_string_start] = ACTIONS(2599), }, - [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), + [1060] = { + [sym_identifier] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2831), + [anon_sym_cimport] = ACTIONS(2831), + [anon_sym_from] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_print] = ACTIONS(2831), + [anon_sym_assert] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_del] = ACTIONS(2831), + [anon_sym_raise] = ACTIONS(2831), + [anon_sym_pass] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_with] = ACTIONS(2831), + [anon_sym_def] = ACTIONS(2831), + [anon_sym_global] = ACTIONS(2831), + [anon_sym_nonlocal] = ACTIONS(2831), + [anon_sym_exec] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_lambda] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2829), + [anon_sym_None] = ACTIONS(2831), + [anon_sym_0x] = ACTIONS(2829), + [anon_sym_0X] = ACTIONS(2829), + [anon_sym_0o] = ACTIONS(2829), + [anon_sym_0O] = ACTIONS(2829), + [anon_sym_0b] = ACTIONS(2829), + [anon_sym_0B] = ACTIONS(2829), + [aux_sym_integer_token4] = ACTIONS(2831), + [sym_float] = ACTIONS(2829), + [anon_sym_await] = ACTIONS(2831), + [anon_sym_api] = ACTIONS(2831), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2831), + [anon_sym_include] = ACTIONS(2831), + [anon_sym_DEF] = ACTIONS(2831), + [anon_sym_IF] = ACTIONS(2831), + [anon_sym_cdef] = ACTIONS(2831), + [anon_sym_cpdef] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_ctypedef] = ACTIONS(2831), + [anon_sym_public] = ACTIONS(2831), + [anon_sym_packed] = ACTIONS(2831), + [anon_sym_inline] = ACTIONS(2831), + [anon_sym_readonly] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2831), + [sym__dedent] = ACTIONS(2829), + [sym_string_start] = ACTIONS(2829), }, - [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), + [1061] = { + [sym_identifier] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_cimport] = ACTIONS(2837), + [anon_sym_from] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2839), + [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_elif] = 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_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(2839), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(2839), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_lambda] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2839), + [anon_sym_None] = ACTIONS(2837), + [anon_sym_0x] = ACTIONS(2839), + [anon_sym_0X] = ACTIONS(2839), + [anon_sym_0o] = ACTIONS(2839), + [anon_sym_0O] = ACTIONS(2839), + [anon_sym_0b] = ACTIONS(2839), + [anon_sym_0B] = ACTIONS(2839), + [aux_sym_integer_token4] = ACTIONS(2837), + [sym_float] = ACTIONS(2839), + [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(2839), + [sym_string_start] = ACTIONS(2839), }, - [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), + [1062] = { + [sym_identifier] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_cimport] = ACTIONS(2841), + [anon_sym_from] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(2841), + [anon_sym_assert] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_del] = ACTIONS(2841), + [anon_sym_raise] = ACTIONS(2841), + [anon_sym_pass] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_def] = ACTIONS(2841), + [anon_sym_global] = ACTIONS(2841), + [anon_sym_nonlocal] = ACTIONS(2841), + [anon_sym_exec] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_AT] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_lambda] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), + [anon_sym_None] = ACTIONS(2841), + [anon_sym_0x] = ACTIONS(2843), + [anon_sym_0X] = ACTIONS(2843), + [anon_sym_0o] = ACTIONS(2843), + [anon_sym_0O] = ACTIONS(2843), + [anon_sym_0b] = ACTIONS(2843), + [anon_sym_0B] = ACTIONS(2843), + [aux_sym_integer_token4] = ACTIONS(2841), + [sym_float] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_api] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2841), + [anon_sym_include] = ACTIONS(2841), + [anon_sym_DEF] = ACTIONS(2841), + [anon_sym_IF] = ACTIONS(2841), + [anon_sym_cdef] = ACTIONS(2841), + [anon_sym_cpdef] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_ctypedef] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_packed] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_sizeof] = ACTIONS(2841), + [sym__dedent] = ACTIONS(2843), + [sym_string_start] = ACTIONS(2843), }, - [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), + [1063] = { + [sym_identifier] = ACTIONS(2847), + [anon_sym_import] = ACTIONS(2847), + [anon_sym_cimport] = ACTIONS(2847), + [anon_sym_from] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_print] = ACTIONS(2847), + [anon_sym_assert] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_del] = ACTIONS(2847), + [anon_sym_raise] = ACTIONS(2847), + [anon_sym_pass] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_elif] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_async] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_with] = ACTIONS(2847), + [anon_sym_def] = ACTIONS(2847), + [anon_sym_global] = ACTIONS(2847), + [anon_sym_nonlocal] = ACTIONS(2847), + [anon_sym_exec] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_class] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_lambda] = ACTIONS(2847), + [anon_sym_yield] = ACTIONS(2847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2849), + [anon_sym_None] = ACTIONS(2847), + [anon_sym_0x] = ACTIONS(2849), + [anon_sym_0X] = ACTIONS(2849), + [anon_sym_0o] = ACTIONS(2849), + [anon_sym_0O] = ACTIONS(2849), + [anon_sym_0b] = ACTIONS(2849), + [anon_sym_0B] = ACTIONS(2849), + [aux_sym_integer_token4] = ACTIONS(2847), + [sym_float] = ACTIONS(2849), + [anon_sym_await] = ACTIONS(2847), + [anon_sym_api] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2847), + [anon_sym_include] = ACTIONS(2847), + [anon_sym_DEF] = ACTIONS(2847), + [anon_sym_IF] = ACTIONS(2847), + [anon_sym_cdef] = ACTIONS(2847), + [anon_sym_cpdef] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(2847), + [anon_sym_ctypedef] = ACTIONS(2847), + [anon_sym_public] = ACTIONS(2847), + [anon_sym_packed] = ACTIONS(2847), + [anon_sym_inline] = ACTIONS(2847), + [anon_sym_readonly] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2847), + [sym__dedent] = ACTIONS(2849), + [sym_string_start] = ACTIONS(2849), }, - [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), + [1064] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_cimport] = ACTIONS(2853), + [anon_sym_from] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_print] = ACTIONS(2853), + [anon_sym_assert] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_del] = ACTIONS(2853), + [anon_sym_raise] = ACTIONS(2853), + [anon_sym_pass] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_with] = ACTIONS(2853), + [anon_sym_def] = ACTIONS(2853), + [anon_sym_global] = ACTIONS(2853), + [anon_sym_nonlocal] = ACTIONS(2853), + [anon_sym_exec] = ACTIONS(2853), + [anon_sym_type] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [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(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_lambda] = ACTIONS(2853), + [anon_sym_yield] = ACTIONS(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_None] = ACTIONS(2853), + [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(2853), + [sym_float] = ACTIONS(2851), + [anon_sym_await] = ACTIONS(2853), + [anon_sym_api] = ACTIONS(2853), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2853), + [anon_sym_include] = ACTIONS(2853), + [anon_sym_DEF] = ACTIONS(2853), + [anon_sym_IF] = ACTIONS(2853), + [anon_sym_cdef] = ACTIONS(2853), + [anon_sym_cpdef] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_ctypedef] = ACTIONS(2853), + [anon_sym_public] = ACTIONS(2853), + [anon_sym_packed] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_readonly] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2853), + [sym_string_start] = ACTIONS(2851), }, - [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), + [1065] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1066] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_or] = ACTIONS(2857), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1067] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_expression_list] = STATE(5866), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5075), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1068] = { + [sym_else_clause] = STATE(2113), + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_cimport] = ACTIONS(2861), + [anon_sym_from] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [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_else] = ACTIONS(2259), + [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(2859), + [anon_sym_AT] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_lambda] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), + [anon_sym_None] = ACTIONS(2861), + [anon_sym_0x] = ACTIONS(2859), + [anon_sym_0X] = ACTIONS(2859), + [anon_sym_0o] = ACTIONS(2859), + [anon_sym_0O] = ACTIONS(2859), + [anon_sym_0b] = ACTIONS(2859), + [anon_sym_0B] = ACTIONS(2859), + [aux_sym_integer_token4] = ACTIONS(2861), + [sym_float] = ACTIONS(2859), + [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_new] = ACTIONS(109), - [anon_sym_sizeof] = ACTIONS(115), - [sym__newline] = ACTIONS(2771), - [sym_string_start] = ACTIONS(117), + [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(2859), }, - [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), + [1069] = { + [sym_else_clause] = STATE(2170), + [sym_identifier] = ACTIONS(2863), + [anon_sym_import] = ACTIONS(2863), + [anon_sym_cimport] = ACTIONS(2863), + [anon_sym_from] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_print] = ACTIONS(2863), + [anon_sym_assert] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_del] = ACTIONS(2863), + [anon_sym_raise] = ACTIONS(2863), + [anon_sym_pass] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_with] = ACTIONS(2863), + [anon_sym_def] = ACTIONS(2863), + [anon_sym_global] = ACTIONS(2863), + [anon_sym_nonlocal] = ACTIONS(2863), + [anon_sym_exec] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_lambda] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2865), + [anon_sym_None] = ACTIONS(2863), + [anon_sym_0x] = ACTIONS(2865), + [anon_sym_0X] = ACTIONS(2865), + [anon_sym_0o] = ACTIONS(2865), + [anon_sym_0O] = ACTIONS(2865), + [anon_sym_0b] = ACTIONS(2865), + [anon_sym_0B] = ACTIONS(2865), + [aux_sym_integer_token4] = ACTIONS(2863), + [sym_float] = ACTIONS(2865), + [anon_sym_await] = ACTIONS(2863), + [anon_sym_api] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2863), + [anon_sym_include] = ACTIONS(2863), + [anon_sym_DEF] = ACTIONS(2863), + [anon_sym_IF] = ACTIONS(2863), + [anon_sym_cdef] = ACTIONS(2863), + [anon_sym_cpdef] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_ctypedef] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_packed] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2863), + [sym__dedent] = ACTIONS(2865), + [sym_string_start] = ACTIONS(2865), }, - [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), + [1070] = { + [sym_else_clause] = STATE(2173), + [sym_identifier] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_cimport] = ACTIONS(2861), + [anon_sym_from] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [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_else] = ACTIONS(2307), + [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(2859), + [anon_sym_AT] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_lambda] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), + [anon_sym_None] = ACTIONS(2861), + [anon_sym_0x] = ACTIONS(2859), + [anon_sym_0X] = ACTIONS(2859), + [anon_sym_0o] = ACTIONS(2859), + [anon_sym_0O] = ACTIONS(2859), + [anon_sym_0b] = ACTIONS(2859), + [anon_sym_0B] = ACTIONS(2859), + [aux_sym_integer_token4] = ACTIONS(2861), + [sym_float] = ACTIONS(2859), + [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(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), + [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(2859), + [sym_string_start] = ACTIONS(2859), }, - [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), + [1071] = { + [sym_else_clause] = STATE(2174), + [sym_identifier] = ACTIONS(2867), + [anon_sym_import] = ACTIONS(2867), + [anon_sym_cimport] = ACTIONS(2867), + [anon_sym_from] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_print] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_del] = ACTIONS(2867), + [anon_sym_raise] = ACTIONS(2867), + [anon_sym_pass] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_with] = ACTIONS(2867), + [anon_sym_def] = ACTIONS(2867), + [anon_sym_global] = ACTIONS(2867), + [anon_sym_nonlocal] = ACTIONS(2867), + [anon_sym_exec] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_lambda] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), + [anon_sym_None] = ACTIONS(2867), + [anon_sym_0x] = ACTIONS(2869), + [anon_sym_0X] = ACTIONS(2869), + [anon_sym_0o] = ACTIONS(2869), + [anon_sym_0O] = ACTIONS(2869), + [anon_sym_0b] = ACTIONS(2869), + [anon_sym_0B] = ACTIONS(2869), + [aux_sym_integer_token4] = ACTIONS(2867), + [sym_float] = ACTIONS(2869), + [anon_sym_await] = ACTIONS(2867), + [anon_sym_api] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2867), + [anon_sym_include] = ACTIONS(2867), + [anon_sym_DEF] = ACTIONS(2867), + [anon_sym_IF] = ACTIONS(2867), + [anon_sym_cdef] = ACTIONS(2867), + [anon_sym_cpdef] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_ctypedef] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_packed] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym_readonly] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2867), + [sym__dedent] = ACTIONS(2869), + [sym_string_start] = ACTIONS(2869), }, - [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), + [1072] = { + [sym_finally_clause] = STATE(2176), + [sym_identifier] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_cimport] = ACTIONS(2811), + [anon_sym_from] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_print] = ACTIONS(2811), + [anon_sym_assert] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_del] = ACTIONS(2811), + [anon_sym_raise] = ACTIONS(2811), + [anon_sym_pass] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_finally] = ACTIONS(2311), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_def] = ACTIONS(2811), + [anon_sym_global] = ACTIONS(2811), + [anon_sym_nonlocal] = ACTIONS(2811), + [anon_sym_exec] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_lambda] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), + [anon_sym_None] = ACTIONS(2811), + [anon_sym_0x] = ACTIONS(2809), + [anon_sym_0X] = ACTIONS(2809), + [anon_sym_0o] = ACTIONS(2809), + [anon_sym_0O] = ACTIONS(2809), + [anon_sym_0b] = ACTIONS(2809), + [anon_sym_0B] = ACTIONS(2809), + [aux_sym_integer_token4] = ACTIONS(2811), + [sym_float] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2811), + [anon_sym_include] = ACTIONS(2811), + [anon_sym_DEF] = ACTIONS(2811), + [anon_sym_IF] = ACTIONS(2811), + [anon_sym_cdef] = ACTIONS(2811), + [anon_sym_cpdef] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_ctypedef] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_packed] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2811), + [sym__dedent] = ACTIONS(2809), + [sym_string_start] = ACTIONS(2809), }, - [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), + [1073] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_expression_list] = STATE(7117), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5381), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1074] = { + [sym_else_clause] = STATE(2119), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [anon_sym_import] = ACTIONS(2867), + [anon_sym_cimport] = ACTIONS(2867), + [anon_sym_from] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_print] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_del] = ACTIONS(2867), + [anon_sym_raise] = ACTIONS(2867), + [anon_sym_pass] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_with] = ACTIONS(2867), + [anon_sym_def] = ACTIONS(2867), + [anon_sym_global] = ACTIONS(2867), + [anon_sym_nonlocal] = ACTIONS(2867), + [anon_sym_exec] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_lambda] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), + [anon_sym_None] = ACTIONS(2867), + [anon_sym_0x] = ACTIONS(2869), + [anon_sym_0X] = ACTIONS(2869), + [anon_sym_0o] = ACTIONS(2869), + [anon_sym_0O] = ACTIONS(2869), + [anon_sym_0b] = ACTIONS(2869), + [anon_sym_0B] = ACTIONS(2869), + [aux_sym_integer_token4] = ACTIONS(2867), + [sym_float] = ACTIONS(2869), + [anon_sym_await] = ACTIONS(2867), + [anon_sym_api] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2867), + [anon_sym_include] = ACTIONS(2867), + [anon_sym_DEF] = ACTIONS(2867), + [anon_sym_IF] = ACTIONS(2867), + [anon_sym_cdef] = ACTIONS(2867), + [anon_sym_cpdef] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_ctypedef] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_packed] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym_readonly] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2867), + [sym_string_start] = ACTIONS(2869), }, - [975] = { + [1075] = { [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_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), [anon_sym_print] = ACTIONS(2656), [anon_sym_assert] = ACTIONS(2656), [anon_sym_return] = ACTIONS(2656), @@ -133061,14 +139465,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_except] = ACTIONS(2656), - [anon_sym_finally] = ACTIONS(2656), [anon_sym_with] = ACTIONS(2656), [anon_sym_def] = ACTIONS(2656), [anon_sym_global] = ACTIONS(2656), @@ -133076,27 +139479,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2656), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), [anon_sym_lambda] = ACTIONS(2656), [anon_sym_yield] = ACTIONS(2656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), [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), + [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(2656), - [sym_float] = ACTIONS(2658), + [sym_float] = ACTIONS(2654), [anon_sym_await] = ACTIONS(2656), [anon_sym_api] = ACTIONS(2656), [sym_true] = ACTIONS(2656), @@ -133116,3050 +139519,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(2654), }, - [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), + [1076] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(1554), + [anon_sym_or] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1077] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_expression_list] = STATE(5938), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5045), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1078] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_cimport] = ACTIONS(2873), + [anon_sym_from] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [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_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(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(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_lambda] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_None] = ACTIONS(2873), + [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(2873), + [sym_float] = ACTIONS(2871), + [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_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), + [anon_sym_property] = ACTIONS(2873), + [anon_sym_include] = ACTIONS(2873), + [anon_sym_DEF] = ACTIONS(2873), + [anon_sym_IF] = ACTIONS(2873), + [anon_sym_ELIF] = ACTIONS(2873), + [anon_sym_ELSE] = 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(2871), }, - [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), + [1079] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1080] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1081] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_with_item] = STATE(6767), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5530), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1082] = { + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2875), + [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_COLON] = ACTIONS(2879), + [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(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(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_None] = ACTIONS(2877), + [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(2877), + [sym_float] = ACTIONS(2875), + [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_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), + [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(2875), }, - [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), + [1083] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_string_start] = ACTIONS(2605), }, - [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), + [1084] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1085] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_with_item] = STATE(6838), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5570), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2658), + [1086] = { [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_LPAREN] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), [anon_sym_print] = ACTIONS(2656), [anon_sym_assert] = ACTIONS(2656), [anon_sym_return] = ACTIONS(2656), @@ -136169,14 +140267,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_except_STAR] = ACTIONS(2658), - [anon_sym_finally] = ACTIONS(2656), [anon_sym_with] = ACTIONS(2656), [anon_sym_def] = ACTIONS(2656), [anon_sym_global] = ACTIONS(2656), @@ -136184,27 +140281,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2656), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), [anon_sym_lambda] = ACTIONS(2656), [anon_sym_yield] = ACTIONS(2656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2654), [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), + [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(2656), - [sym_float] = ACTIONS(2658), + [sym_float] = ACTIONS(2654), [anon_sym_await] = ACTIONS(2656), [anon_sym_api] = ACTIONS(2656), [sym_true] = ACTIONS(2656), @@ -136224,163 +140321,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2656), [anon_sym_readonly] = ACTIONS(2656), [anon_sym_sizeof] = ACTIONS(2656), - [sym_string_start] = ACTIONS(2658), + [sym__dedent] = ACTIONS(2654), + [sym_string_start] = ACTIONS(2654), }, - [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), + [1087] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1088] = { + [sym_identifier] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_cimport] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2875), + [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_COLON] = ACTIONS(2883), + [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(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(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_lambda] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_None] = ACTIONS(2877), + [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(2877), + [sym_float] = ACTIONS(2875), + [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(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), + [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(2875), + [sym_string_start] = ACTIONS(2875), }, - [1023] = { + [1089] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1090] = { + [sym_identifier] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_cimport] = ACTIONS(2887), + [anon_sym_from] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [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_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(2889), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_lambda] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), + [anon_sym_None] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2889), + [anon_sym_0X] = ACTIONS(2889), + [anon_sym_0o] = ACTIONS(2889), + [anon_sym_0O] = ACTIONS(2889), + [anon_sym_0b] = ACTIONS(2889), + [anon_sym_0B] = ACTIONS(2889), + [aux_sym_integer_token4] = ACTIONS(2887), + [sym_float] = ACTIONS(2889), + [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_ELIF] = ACTIONS(2887), + [anon_sym_ELSE] = 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(2889), + [sym_string_start] = ACTIONS(2889), + }, + [1091] = { + [sym_list_splat_pattern] = STATE(3059), + [sym_primary_expression] = STATE(4186), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(2897), + [anon_sym_0X] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1949), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1951), + }, + [1092] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1093] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5535), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1094] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_expression_list] = STATE(7343), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5325), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1095] = { + [ts_builtin_sym_end] = ACTIONS(2839), [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_LPAREN] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2839), [anon_sym_print] = ACTIONS(2837), [anon_sym_assert] = ACTIONS(2837), [anon_sym_return] = ACTIONS(2837), @@ -136390,14 +140925,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2837), [anon_sym_continue] = ACTIONS(2837), [anon_sym_if] = ACTIONS(2837), + [anon_sym_elif] = 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), @@ -136405,27 +140939,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(2839), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(2839), [anon_sym_not] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2839), [anon_sym_lambda] = ACTIONS(2837), [anon_sym_yield] = ACTIONS(2837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2839), [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), + [anon_sym_0x] = ACTIONS(2839), + [anon_sym_0X] = ACTIONS(2839), + [anon_sym_0o] = ACTIONS(2839), + [anon_sym_0O] = ACTIONS(2839), + [anon_sym_0b] = ACTIONS(2839), + [anon_sym_0B] = ACTIONS(2839), [aux_sym_integer_token4] = ACTIONS(2837), - [sym_float] = ACTIONS(2835), + [sym_float] = ACTIONS(2839), [anon_sym_await] = ACTIONS(2837), [anon_sym_api] = ACTIONS(2837), [sym_true] = ACTIONS(2837), @@ -136445,4879 +140979,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2837), [anon_sym_readonly] = ACTIONS(2837), [anon_sym_sizeof] = ACTIONS(2837), - [sym__dedent] = ACTIONS(2835), - [sym_string_start] = ACTIONS(2835), + [sym_string_start] = ACTIONS(2839), }, - [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), + [1096] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_expression_list] = STATE(5879), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5062), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1097] = { + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_cimport] = ACTIONS(2841), + [anon_sym_from] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), [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), + [anon_sym_print] = ACTIONS(2841), + [anon_sym_assert] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_del] = ACTIONS(2841), + [anon_sym_raise] = ACTIONS(2841), + [anon_sym_pass] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_def] = ACTIONS(2841), + [anon_sym_global] = ACTIONS(2841), + [anon_sym_nonlocal] = ACTIONS(2841), + [anon_sym_exec] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_AT] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_lambda] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), + [anon_sym_None] = ACTIONS(2841), + [anon_sym_0x] = ACTIONS(2843), + [anon_sym_0X] = ACTIONS(2843), + [anon_sym_0o] = ACTIONS(2843), + [anon_sym_0O] = ACTIONS(2843), + [anon_sym_0b] = ACTIONS(2843), + [anon_sym_0B] = ACTIONS(2843), + [aux_sym_integer_token4] = ACTIONS(2841), + [sym_float] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_api] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2841), + [anon_sym_include] = ACTIONS(2841), + [anon_sym_DEF] = ACTIONS(2841), + [anon_sym_IF] = ACTIONS(2841), + [anon_sym_cdef] = ACTIONS(2841), + [anon_sym_cpdef] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_ctypedef] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_packed] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_string_start] = ACTIONS(2843), }, - [1090] = { - [sym_else_clause] = STATE(2113), + [1098] = { + [ts_builtin_sym_end] = ACTIONS(2907), [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_LPAREN] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), [anon_sym_print] = ACTIONS(2909), [anon_sym_assert] = ACTIONS(2909), [anon_sym_return] = ACTIONS(2909), @@ -141327,7 +141144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2909), [anon_sym_continue] = ACTIONS(2909), [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2339), + [anon_sym_elif] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), [anon_sym_match] = ACTIONS(2909), [anon_sym_async] = ACTIONS(2909), [anon_sym_for] = ACTIONS(2909), @@ -141340,27 +141158,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2909), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), [anon_sym_lambda] = ACTIONS(2909), [anon_sym_yield] = ACTIONS(2909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), [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), + [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(2909), - [sym_float] = ACTIONS(2911), + [sym_float] = ACTIONS(2907), [anon_sym_await] = ACTIONS(2909), [anon_sym_api] = ACTIONS(2909), [sym_true] = ACTIONS(2909), @@ -141380,163 +141198,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(2907), }, - [1093] = { + [1099] = { + [ts_builtin_sym_end] = ACTIONS(2911), [sym_identifier] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2911), [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_LPAREN] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), [anon_sym_print] = ACTIONS(2913), [anon_sym_assert] = ACTIONS(2913), [anon_sym_return] = ACTIONS(2913), @@ -141546,7 +141218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2913), [anon_sym_continue] = ACTIONS(2913), [anon_sym_if] = ACTIONS(2913), - [anon_sym_COLON] = ACTIONS(2917), + [anon_sym_COLON] = ACTIONS(2911), [anon_sym_match] = ACTIONS(2913), [anon_sym_async] = ACTIONS(2913), [anon_sym_for] = ACTIONS(2913), @@ -141559,27 +141231,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2913), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), [anon_sym_lambda] = ACTIONS(2913), [anon_sym_yield] = ACTIONS(2913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), [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), + [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(2913), - [sym_float] = ACTIONS(2915), + [sym_float] = ACTIONS(2911), [anon_sym_await] = ACTIONS(2913), [anon_sym_api] = ACTIONS(2913), [sym_true] = ACTIONS(2913), @@ -141599,236 +141271,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2913), [anon_sym_readonly] = ACTIONS(2913), [anon_sym_sizeof] = ACTIONS(2913), - [sym__dedent] = ACTIONS(2915), - [sym_string_start] = ACTIONS(2915), + [sym_string_start] = ACTIONS(2911), }, - [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), + [1100] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_expression_list] = STATE(5840), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5081), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1101] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5108), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(2917), [anon_sym_not] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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(2927), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1102] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_elif] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym_string_start] = ACTIONS(2686), }, - [1097] = { - [sym_else_clause] = STATE(2130), + [1103] = { + [ts_builtin_sym_end] = ACTIONS(2929), [sym_identifier] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2929), [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_LPAREN] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), [anon_sym_print] = ACTIONS(2931), [anon_sym_assert] = ACTIONS(2931), [anon_sym_return] = ACTIONS(2931), @@ -141838,7 +141510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2931), [anon_sym_continue] = ACTIONS(2931), [anon_sym_if] = ACTIONS(2931), - [anon_sym_else] = ACTIONS(2339), + [anon_sym_COLON] = ACTIONS(2933), [anon_sym_match] = ACTIONS(2931), [anon_sym_async] = ACTIONS(2931), [anon_sym_for] = ACTIONS(2931), @@ -141851,27 +141523,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2931), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), [anon_sym_lambda] = ACTIONS(2931), [anon_sym_yield] = ACTIONS(2931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), [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), + [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(2931), - [sym_float] = ACTIONS(2933), + [sym_float] = ACTIONS(2929), [anon_sym_await] = ACTIONS(2931), [anon_sym_api] = ACTIONS(2931), [sym_true] = ACTIONS(2931), @@ -141891,12 +141563,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2931), [anon_sym_readonly] = ACTIONS(2931), [anon_sym_sizeof] = ACTIONS(2931), - [sym__dedent] = ACTIONS(2933), - [sym_string_start] = ACTIONS(2933), + [sym_string_start] = ACTIONS(2929), }, - [1098] = { - [sym_else_clause] = STATE(2131), + [1104] = { [sym_identifier] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), [anon_sym_import] = ACTIONS(2935), [anon_sym_cimport] = ACTIONS(2935), [anon_sym_from] = ACTIONS(2935), @@ -141911,7 +141582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2935), [anon_sym_continue] = ACTIONS(2935), [anon_sym_if] = ACTIONS(2935), - [anon_sym_else] = ACTIONS(2339), + [anon_sym_COLON] = ACTIONS(2939), [anon_sym_match] = ACTIONS(2935), [anon_sym_async] = ACTIONS(2935), [anon_sym_for] = ACTIONS(2935), @@ -141967,1109 +141638,1693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1105] = { + [sym_identifier] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_cimport] = ACTIONS(2913), + [anon_sym_from] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [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(2911), + [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(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(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_lambda] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_None] = ACTIONS(2913), + [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(2913), + [sym_float] = ACTIONS(2911), + [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(2911), + [sym_string_start] = ACTIONS(2911), }, - [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), + [1106] = { + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2847), + [anon_sym_import] = ACTIONS(2847), + [anon_sym_cimport] = ACTIONS(2847), + [anon_sym_from] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_print] = ACTIONS(2847), + [anon_sym_assert] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_del] = ACTIONS(2847), + [anon_sym_raise] = ACTIONS(2847), + [anon_sym_pass] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_elif] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_async] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_with] = ACTIONS(2847), + [anon_sym_def] = ACTIONS(2847), + [anon_sym_global] = ACTIONS(2847), + [anon_sym_nonlocal] = ACTIONS(2847), + [anon_sym_exec] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_class] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_lambda] = ACTIONS(2847), + [anon_sym_yield] = ACTIONS(2847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2849), + [anon_sym_None] = ACTIONS(2847), + [anon_sym_0x] = ACTIONS(2849), + [anon_sym_0X] = ACTIONS(2849), + [anon_sym_0o] = ACTIONS(2849), + [anon_sym_0O] = ACTIONS(2849), + [anon_sym_0b] = ACTIONS(2849), + [anon_sym_0B] = ACTIONS(2849), + [aux_sym_integer_token4] = ACTIONS(2847), + [sym_float] = ACTIONS(2849), + [anon_sym_await] = ACTIONS(2847), + [anon_sym_api] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2847), + [anon_sym_include] = ACTIONS(2847), + [anon_sym_DEF] = ACTIONS(2847), + [anon_sym_IF] = ACTIONS(2847), + [anon_sym_cdef] = ACTIONS(2847), + [anon_sym_cpdef] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(2847), + [anon_sym_ctypedef] = ACTIONS(2847), + [anon_sym_public] = ACTIONS(2847), + [anon_sym_packed] = ACTIONS(2847), + [anon_sym_inline] = ACTIONS(2847), + [anon_sym_readonly] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2847), + [sym_string_start] = ACTIONS(2849), }, - [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), + [1107] = { + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2937), + [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_COLON] = ACTIONS(2941), + [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), }, - [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), + [1108] = { + [sym_list_splat_pattern] = STATE(2958), + [sym_primary_expression] = STATE(4201), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), [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), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2951), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1859), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1109] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_expression_list] = STATE(6819), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5161), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [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), + [1110] = { + [sym_identifier] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_cimport] = ACTIONS(2909), + [anon_sym_from] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [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_elif] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [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(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(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_lambda] = ACTIONS(2909), + [anon_sym_yield] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_None] = ACTIONS(2909), + [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(2909), + [sym_float] = ACTIONS(2907), + [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(2907), + [sym_string_start] = ACTIONS(2907), }, - [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), + [1111] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5480), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1112] = { + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_cimport] = ACTIONS(2957), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2955), + [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_COLON] = ACTIONS(2959), + [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(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(2957), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_lambda] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_None] = ACTIONS(2957), + [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(2957), + [sym_float] = ACTIONS(2955), + [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_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(2955), + }, + [1113] = { + [sym_identifier] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_cimport] = ACTIONS(2961), + [anon_sym_from] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_print] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_del] = ACTIONS(2961), + [anon_sym_raise] = ACTIONS(2961), + [anon_sym_pass] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_def] = ACTIONS(2961), + [anon_sym_global] = ACTIONS(2961), + [anon_sym_nonlocal] = ACTIONS(2961), + [anon_sym_exec] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_AT] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2963), + [anon_sym_lambda] = ACTIONS(2961), + [anon_sym_yield] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), + [anon_sym_None] = ACTIONS(2961), + [anon_sym_0x] = ACTIONS(2963), + [anon_sym_0X] = ACTIONS(2963), + [anon_sym_0o] = ACTIONS(2963), + [anon_sym_0O] = ACTIONS(2963), + [anon_sym_0b] = ACTIONS(2963), + [anon_sym_0B] = ACTIONS(2963), + [aux_sym_integer_token4] = ACTIONS(2961), + [sym_float] = ACTIONS(2963), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2961), + [anon_sym_include] = ACTIONS(2961), + [anon_sym_DEF] = ACTIONS(2961), + [anon_sym_IF] = ACTIONS(2961), + [anon_sym_cdef] = ACTIONS(2961), + [anon_sym_cpdef] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_ctypedef] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_packed] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym_readonly] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2961), + [sym__dedent] = ACTIONS(2963), + [sym_string_start] = ACTIONS(2963), + }, + [1114] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_expression_list] = STATE(5884), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5007), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1115] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5585), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1116] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5585), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_COLON] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1117] = { + [sym_identifier] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_cimport] = ACTIONS(2853), + [anon_sym_from] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_print] = ACTIONS(2853), + [anon_sym_assert] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_del] = ACTIONS(2853), + [anon_sym_raise] = ACTIONS(2853), + [anon_sym_pass] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_with] = ACTIONS(2853), + [anon_sym_def] = ACTIONS(2853), + [anon_sym_global] = ACTIONS(2853), + [anon_sym_nonlocal] = ACTIONS(2853), + [anon_sym_exec] = ACTIONS(2853), + [anon_sym_type] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [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(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_lambda] = ACTIONS(2853), + [anon_sym_yield] = ACTIONS(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_None] = ACTIONS(2853), + [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(2853), + [sym_float] = ACTIONS(2851), + [anon_sym_await] = ACTIONS(2853), + [anon_sym_api] = ACTIONS(2853), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2853), + [anon_sym_include] = ACTIONS(2853), + [anon_sym_DEF] = ACTIONS(2853), + [anon_sym_IF] = ACTIONS(2853), + [anon_sym_cdef] = ACTIONS(2853), + [anon_sym_cpdef] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_ctypedef] = ACTIONS(2853), + [anon_sym_public] = ACTIONS(2853), + [anon_sym_packed] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_readonly] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2853), + [sym__dedent] = ACTIONS(2851), + [sym_string_start] = ACTIONS(2851), + }, + [1118] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_cimport] = ACTIONS(2825), + [anon_sym_from] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_print] = ACTIONS(2825), + [anon_sym_assert] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_del] = ACTIONS(2825), + [anon_sym_raise] = ACTIONS(2825), + [anon_sym_pass] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_match] = ACTIONS(2825), + [anon_sym_async] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_with] = ACTIONS(2825), + [anon_sym_def] = ACTIONS(2825), + [anon_sym_global] = ACTIONS(2825), + [anon_sym_nonlocal] = ACTIONS(2825), + [anon_sym_exec] = ACTIONS(2825), + [anon_sym_type] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2827), + [anon_sym_lambda] = ACTIONS(2825), + [anon_sym_yield] = ACTIONS(2825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2827), + [anon_sym_None] = ACTIONS(2825), + [anon_sym_0x] = ACTIONS(2827), + [anon_sym_0X] = ACTIONS(2827), + [anon_sym_0o] = ACTIONS(2827), + [anon_sym_0O] = ACTIONS(2827), + [anon_sym_0b] = ACTIONS(2827), + [anon_sym_0B] = ACTIONS(2827), + [aux_sym_integer_token4] = ACTIONS(2825), + [sym_float] = ACTIONS(2827), + [anon_sym_await] = ACTIONS(2825), + [anon_sym_api] = ACTIONS(2825), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2825), + [anon_sym_include] = ACTIONS(2825), + [anon_sym_DEF] = ACTIONS(2825), + [anon_sym_IF] = ACTIONS(2825), + [anon_sym_ELIF] = ACTIONS(2825), + [anon_sym_ELSE] = ACTIONS(2825), + [anon_sym_cdef] = ACTIONS(2825), + [anon_sym_cpdef] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_ctypedef] = ACTIONS(2825), + [anon_sym_public] = ACTIONS(2825), + [anon_sym_packed] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_readonly] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_string_start] = ACTIONS(2827), + }, + [1119] = { + [sym_list_splat_pattern] = STATE(3264), + [sym_primary_expression] = STATE(4185), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1057), [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1584), [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), [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_LT] = ACTIONS(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), [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_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), [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), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1624), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1120] = { + [sym_else_clause] = STATE(2128), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2817), + [anon_sym_import] = ACTIONS(2817), + [anon_sym_cimport] = ACTIONS(2817), + [anon_sym_from] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_print] = ACTIONS(2817), + [anon_sym_assert] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_del] = ACTIONS(2817), + [anon_sym_raise] = ACTIONS(2817), + [anon_sym_pass] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_async] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_with] = ACTIONS(2817), + [anon_sym_def] = ACTIONS(2817), + [anon_sym_global] = ACTIONS(2817), + [anon_sym_nonlocal] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(2817), + [anon_sym_type] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_AT] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_lambda] = ACTIONS(2817), + [anon_sym_yield] = ACTIONS(2817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), + [anon_sym_None] = ACTIONS(2817), + [anon_sym_0x] = ACTIONS(2819), + [anon_sym_0X] = ACTIONS(2819), + [anon_sym_0o] = ACTIONS(2819), + [anon_sym_0O] = ACTIONS(2819), + [anon_sym_0b] = ACTIONS(2819), + [anon_sym_0B] = ACTIONS(2819), + [aux_sym_integer_token4] = ACTIONS(2817), + [sym_float] = ACTIONS(2819), + [anon_sym_await] = ACTIONS(2817), + [anon_sym_api] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2817), + [anon_sym_include] = ACTIONS(2817), + [anon_sym_DEF] = ACTIONS(2817), + [anon_sym_IF] = ACTIONS(2817), + [anon_sym_cdef] = ACTIONS(2817), + [anon_sym_cpdef] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_ctypedef] = ACTIONS(2817), + [anon_sym_public] = ACTIONS(2817), + [anon_sym_packed] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_readonly] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_string_start] = ACTIONS(2819), }, - [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), + [1121] = { + [sym_identifier] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_cimport] = ACTIONS(2957), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2955), + [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_COLON] = ACTIONS(2977), + [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(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(2957), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_lambda] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_None] = ACTIONS(2957), + [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(2957), + [sym_float] = ACTIONS(2955), + [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_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(2955), + [sym_string_start] = ACTIONS(2955), }, - [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), + [1122] = { + [sym_else_clause] = STATE(2131), + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_cimport] = ACTIONS(2821), + [anon_sym_from] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_print] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_del] = ACTIONS(2821), + [anon_sym_raise] = ACTIONS(2821), + [anon_sym_pass] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_async] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_def] = ACTIONS(2821), + [anon_sym_global] = ACTIONS(2821), + [anon_sym_nonlocal] = ACTIONS(2821), + [anon_sym_exec] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_AT] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_lambda] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), + [anon_sym_None] = ACTIONS(2821), + [anon_sym_0x] = ACTIONS(2823), + [anon_sym_0X] = ACTIONS(2823), + [anon_sym_0o] = ACTIONS(2823), + [anon_sym_0O] = ACTIONS(2823), + [anon_sym_0b] = ACTIONS(2823), + [anon_sym_0B] = ACTIONS(2823), + [aux_sym_integer_token4] = ACTIONS(2821), + [sym_float] = ACTIONS(2823), + [anon_sym_await] = ACTIONS(2821), + [anon_sym_api] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2821), + [anon_sym_include] = ACTIONS(2821), + [anon_sym_DEF] = ACTIONS(2821), + [anon_sym_IF] = ACTIONS(2821), + [anon_sym_cdef] = ACTIONS(2821), + [anon_sym_cpdef] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_ctypedef] = ACTIONS(2821), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_packed] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_readonly] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_string_start] = ACTIONS(2823), }, - [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), + [1123] = { + [sym_else_clause] = STATE(2193), + [sym_identifier] = ACTIONS(2815), + [anon_sym_import] = ACTIONS(2815), + [anon_sym_cimport] = ACTIONS(2815), + [anon_sym_from] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_print] = ACTIONS(2815), + [anon_sym_assert] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_del] = ACTIONS(2815), + [anon_sym_raise] = ACTIONS(2815), + [anon_sym_pass] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_def] = ACTIONS(2815), + [anon_sym_global] = ACTIONS(2815), + [anon_sym_nonlocal] = ACTIONS(2815), + [anon_sym_exec] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_lambda] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2813), + [anon_sym_None] = ACTIONS(2815), + [anon_sym_0x] = ACTIONS(2813), + [anon_sym_0X] = ACTIONS(2813), + [anon_sym_0o] = ACTIONS(2813), + [anon_sym_0O] = ACTIONS(2813), + [anon_sym_0b] = ACTIONS(2813), + [anon_sym_0B] = ACTIONS(2813), + [aux_sym_integer_token4] = ACTIONS(2815), + [sym_float] = ACTIONS(2813), + [anon_sym_await] = ACTIONS(2815), + [anon_sym_api] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2815), + [anon_sym_include] = ACTIONS(2815), + [anon_sym_DEF] = ACTIONS(2815), + [anon_sym_IF] = ACTIONS(2815), + [anon_sym_cdef] = ACTIONS(2815), + [anon_sym_cpdef] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_ctypedef] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_packed] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2815), + [sym__dedent] = ACTIONS(2813), + [sym_string_start] = ACTIONS(2813), }, - [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), + [1124] = { + [sym_else_clause] = STATE(2108), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2863), + [anon_sym_import] = ACTIONS(2863), + [anon_sym_cimport] = ACTIONS(2863), + [anon_sym_from] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_print] = ACTIONS(2863), + [anon_sym_assert] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_del] = ACTIONS(2863), + [anon_sym_raise] = ACTIONS(2863), + [anon_sym_pass] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_with] = ACTIONS(2863), + [anon_sym_def] = ACTIONS(2863), + [anon_sym_global] = ACTIONS(2863), + [anon_sym_nonlocal] = ACTIONS(2863), + [anon_sym_exec] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_lambda] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2865), + [anon_sym_None] = ACTIONS(2863), + [anon_sym_0x] = ACTIONS(2865), + [anon_sym_0X] = ACTIONS(2865), + [anon_sym_0o] = ACTIONS(2865), + [anon_sym_0O] = ACTIONS(2865), + [anon_sym_0b] = ACTIONS(2865), + [anon_sym_0B] = ACTIONS(2865), + [aux_sym_integer_token4] = ACTIONS(2863), + [sym_float] = ACTIONS(2865), + [anon_sym_await] = ACTIONS(2863), + [anon_sym_api] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2863), + [anon_sym_include] = ACTIONS(2863), + [anon_sym_DEF] = ACTIONS(2863), + [anon_sym_IF] = ACTIONS(2863), + [anon_sym_cdef] = ACTIONS(2863), + [anon_sym_cpdef] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_ctypedef] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_packed] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2863), + [sym_string_start] = ACTIONS(2865), }, - [1114] = { - [ts_builtin_sym_end] = ACTIONS(2983), + [1125] = { + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_cimport] = ACTIONS(2961), + [anon_sym_from] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_print] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_del] = ACTIONS(2961), + [anon_sym_raise] = ACTIONS(2961), + [anon_sym_pass] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_def] = ACTIONS(2961), + [anon_sym_global] = ACTIONS(2961), + [anon_sym_nonlocal] = ACTIONS(2961), + [anon_sym_exec] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_AT] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2963), + [anon_sym_lambda] = ACTIONS(2961), + [anon_sym_yield] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), + [anon_sym_None] = ACTIONS(2961), + [anon_sym_0x] = ACTIONS(2963), + [anon_sym_0X] = ACTIONS(2963), + [anon_sym_0o] = ACTIONS(2963), + [anon_sym_0O] = ACTIONS(2963), + [anon_sym_0b] = ACTIONS(2963), + [anon_sym_0B] = ACTIONS(2963), + [aux_sym_integer_token4] = ACTIONS(2961), + [sym_float] = ACTIONS(2963), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2961), + [anon_sym_include] = ACTIONS(2961), + [anon_sym_DEF] = ACTIONS(2961), + [anon_sym_IF] = ACTIONS(2961), + [anon_sym_cdef] = ACTIONS(2961), + [anon_sym_cpdef] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_ctypedef] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_packed] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym_readonly] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2961), + [sym_string_start] = ACTIONS(2963), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_elif] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym_string_start] = ACTIONS(2652), + }, + [1127] = { + [sym_finally_clause] = STATE(2202), + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_finally] = ACTIONS(2311), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2981), + [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(2981), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_IF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2983), + }, + [1128] = { [sym_identifier] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), [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_LPAREN] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), [anon_sym_print] = ACTIONS(2985), [anon_sym_assert] = ACTIONS(2985), [anon_sym_return] = ACTIONS(2985), @@ -143079,6 +143334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2985), [anon_sym_continue] = ACTIONS(2985), [anon_sym_if] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2989), [anon_sym_match] = ACTIONS(2985), [anon_sym_async] = ACTIONS(2985), [anon_sym_for] = ACTIONS(2985), @@ -143091,27 +143347,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(2985), [anon_sym_type] = ACTIONS(2985), [anon_sym_class] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_AT] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_lambda] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), + [anon_sym_None] = ACTIONS(2985), + [anon_sym_0x] = ACTIONS(2987), + [anon_sym_0X] = ACTIONS(2987), + [anon_sym_0o] = ACTIONS(2987), + [anon_sym_0O] = ACTIONS(2987), + [anon_sym_0b] = ACTIONS(2987), + [anon_sym_0B] = ACTIONS(2987), + [aux_sym_integer_token4] = ACTIONS(2985), + [sym_float] = ACTIONS(2987), + [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_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(2987), + [sym_string_start] = ACTIONS(2987), + }, + [1129] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_cimport] = ACTIONS(2887), + [anon_sym_from] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [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_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(2889), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_lambda] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), + [anon_sym_None] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2889), + [anon_sym_0X] = ACTIONS(2889), + [anon_sym_0o] = ACTIONS(2889), + [anon_sym_0O] = ACTIONS(2889), + [anon_sym_0b] = ACTIONS(2889), + [anon_sym_0B] = ACTIONS(2889), + [aux_sym_integer_token4] = ACTIONS(2887), + [sym_float] = ACTIONS(2889), + [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_ELIF] = ACTIONS(2887), + [anon_sym_ELSE] = 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(2889), + }, + [1130] = { + [sym_identifier] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_cimport] = ACTIONS(2688), + [anon_sym_from] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_print] = ACTIONS(2688), + [anon_sym_assert] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_del] = ACTIONS(2688), + [anon_sym_raise] = ACTIONS(2688), + [anon_sym_pass] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_elif] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_def] = ACTIONS(2688), + [anon_sym_global] = ACTIONS(2688), + [anon_sym_nonlocal] = ACTIONS(2688), + [anon_sym_exec] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_lambda] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_None] = ACTIONS(2688), + [anon_sym_0x] = ACTIONS(2686), + [anon_sym_0X] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0O] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0B] = ACTIONS(2686), + [aux_sym_integer_token4] = ACTIONS(2688), + [sym_float] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_api] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2688), + [anon_sym_include] = ACTIONS(2688), + [anon_sym_DEF] = ACTIONS(2688), + [anon_sym_IF] = ACTIONS(2688), + [anon_sym_cdef] = ACTIONS(2688), + [anon_sym_cpdef] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_ctypedef] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_packed] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_sizeof] = ACTIONS(2688), + [sym__dedent] = ACTIONS(2686), + [sym_string_start] = ACTIONS(2686), + }, + [1131] = { + [sym_identifier] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2931), + [anon_sym_cimport] = ACTIONS(2931), + [anon_sym_from] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [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_COLON] = ACTIONS(2991), + [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(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(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_lambda] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), + [anon_sym_None] = ACTIONS(2931), + [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(2931), + [sym_float] = ACTIONS(2929), + [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(2929), + [sym_string_start] = ACTIONS(2929), + }, + [1132] = { + [sym_identifier] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_cimport] = ACTIONS(2650), + [anon_sym_from] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_print] = ACTIONS(2650), + [anon_sym_assert] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_del] = ACTIONS(2650), + [anon_sym_raise] = ACTIONS(2650), + [anon_sym_pass] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_elif] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_global] = ACTIONS(2650), + [anon_sym_nonlocal] = ACTIONS(2650), + [anon_sym_exec] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_lambda] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_None] = ACTIONS(2650), + [anon_sym_0x] = ACTIONS(2652), + [anon_sym_0X] = ACTIONS(2652), + [anon_sym_0o] = ACTIONS(2652), + [anon_sym_0O] = ACTIONS(2652), + [anon_sym_0b] = ACTIONS(2652), + [anon_sym_0B] = ACTIONS(2652), + [aux_sym_integer_token4] = ACTIONS(2650), + [sym_float] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_api] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2650), + [anon_sym_include] = ACTIONS(2650), + [anon_sym_DEF] = ACTIONS(2650), + [anon_sym_IF] = ACTIONS(2650), + [anon_sym_cdef] = ACTIONS(2650), + [anon_sym_cpdef] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_ctypedef] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_packed] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_sizeof] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2652), + [sym_string_start] = ACTIONS(2652), + }, + [1133] = { + [sym_identifier] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_cimport] = ACTIONS(2873), + [anon_sym_from] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [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_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(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(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_lambda] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_None] = ACTIONS(2873), + [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(2873), + [sym_float] = ACTIONS(2871), + [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_ELIF] = ACTIONS(2873), + [anon_sym_ELSE] = 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(2871), + [sym_string_start] = ACTIONS(2871), + }, + [1134] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_or] = ACTIONS(2857), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1135] = { + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_cimport] = ACTIONS(2601), + [anon_sym_from] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_assert] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_del] = ACTIONS(2601), + [anon_sym_raise] = ACTIONS(2601), + [anon_sym_pass] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_elif] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_global] = ACTIONS(2601), + [anon_sym_nonlocal] = ACTIONS(2601), + [anon_sym_exec] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_lambda] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2599), + [anon_sym_None] = ACTIONS(2601), + [anon_sym_0x] = ACTIONS(2599), + [anon_sym_0X] = ACTIONS(2599), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0O] = ACTIONS(2599), + [anon_sym_0b] = ACTIONS(2599), + [anon_sym_0B] = ACTIONS(2599), + [aux_sym_integer_token4] = ACTIONS(2601), + [sym_float] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_api] = ACTIONS(2601), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_DEF] = ACTIONS(2601), + [anon_sym_IF] = ACTIONS(2601), + [anon_sym_cdef] = ACTIONS(2601), + [anon_sym_cpdef] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_ctypedef] = ACTIONS(2601), + [anon_sym_public] = ACTIONS(2601), + [anon_sym_packed] = ACTIONS(2601), + [anon_sym_inline] = ACTIONS(2601), + [anon_sym_readonly] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2601), + [sym__dedent] = ACTIONS(2599), + [sym_string_start] = ACTIONS(2599), + }, + [1136] = { + [sym_finally_clause] = STATE(2087), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_finally] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), [anon_sym_LBRACK] = ACTIONS(2983), [anon_sym_AT] = ACTIONS(2983), [anon_sym_DASH] = ACTIONS(2983), [anon_sym_LBRACE] = ACTIONS(2983), [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_not] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2981), [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_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_None] = ACTIONS(2985), + [anon_sym_None] = ACTIONS(2981), [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), + [aux_sym_integer_token4] = ACTIONS(2981), [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_IF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym_string_start] = ACTIONS(2983), + }, + [1137] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_cimport] = ACTIONS(2607), + [anon_sym_from] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2607), + [anon_sym_assert] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_del] = ACTIONS(2607), + [anon_sym_raise] = ACTIONS(2607), + [anon_sym_pass] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_elif] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2607), + [anon_sym_global] = ACTIONS(2607), + [anon_sym_nonlocal] = ACTIONS(2607), + [anon_sym_exec] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_lambda] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2605), + [anon_sym_None] = ACTIONS(2607), + [anon_sym_0x] = ACTIONS(2605), + [anon_sym_0X] = ACTIONS(2605), + [anon_sym_0o] = ACTIONS(2605), + [anon_sym_0O] = ACTIONS(2605), + [anon_sym_0b] = ACTIONS(2605), + [anon_sym_0B] = ACTIONS(2605), + [aux_sym_integer_token4] = ACTIONS(2607), + [sym_float] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2607), + [anon_sym_include] = ACTIONS(2607), + [anon_sym_DEF] = ACTIONS(2607), + [anon_sym_IF] = ACTIONS(2607), + [anon_sym_cdef] = ACTIONS(2607), + [anon_sym_cpdef] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_ctypedef] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_packed] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(2607), + [sym__dedent] = ACTIONS(2605), + [sym_string_start] = ACTIONS(2605), + }, + [1138] = { + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_cimport] = ACTIONS(2985), + [anon_sym_from] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), + [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_COLON] = ACTIONS(2993), + [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(2987), + [anon_sym_AT] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_lambda] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), + [anon_sym_None] = ACTIONS(2985), + [anon_sym_0x] = ACTIONS(2987), + [anon_sym_0X] = ACTIONS(2987), + [anon_sym_0o] = ACTIONS(2987), + [anon_sym_0O] = ACTIONS(2987), + [anon_sym_0b] = ACTIONS(2987), + [anon_sym_0B] = ACTIONS(2987), + [aux_sym_integer_token4] = ACTIONS(2985), + [sym_float] = ACTIONS(2987), [anon_sym_await] = ACTIONS(2985), [anon_sym_api] = ACTIONS(2985), [sym_true] = ACTIONS(2985), @@ -143122,8 +144109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -143133,90 +144118,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2985), [anon_sym_readonly] = ACTIONS(2985), [anon_sym_sizeof] = ACTIONS(2985), - [sym_string_start] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2987), }, - [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), + [1139] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5432), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [1116] = { - [sym_else_clause] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(2993), + [1140] = { [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), [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_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), [anon_sym_print] = ACTIONS(2995), [anon_sym_assert] = ACTIONS(2995), [anon_sym_return] = ACTIONS(2995), @@ -143226,7 +144209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -143239,27 +144221,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), [anon_sym_not] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), [anon_sym_lambda] = ACTIONS(2995), [anon_sym_yield] = ACTIONS(2995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), [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), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), [aux_sym_integer_token4] = ACTIONS(2995), - [sym_float] = ACTIONS(2993), + [sym_float] = ACTIONS(2997), [anon_sym_await] = ACTIONS(2995), [anon_sym_api] = ACTIONS(2995), [sym_true] = ACTIONS(2995), @@ -143279,377 +144261,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(2997), + [sym_string_start] = ACTIONS(2997), }, - [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), + [1141] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_cimport] = ACTIONS(2999), + [anon_sym_from] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_print] = ACTIONS(2999), + [anon_sym_assert] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_del] = ACTIONS(2999), + [anon_sym_raise] = ACTIONS(2999), + [anon_sym_pass] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_def] = ACTIONS(2999), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_nonlocal] = ACTIONS(2999), + [anon_sym_exec] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_lambda] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), + [anon_sym_None] = ACTIONS(2999), + [anon_sym_0x] = ACTIONS(3001), + [anon_sym_0X] = ACTIONS(3001), + [anon_sym_0o] = ACTIONS(3001), + [anon_sym_0O] = ACTIONS(3001), + [anon_sym_0b] = ACTIONS(3001), + [anon_sym_0B] = ACTIONS(3001), + [aux_sym_integer_token4] = ACTIONS(2999), + [sym_float] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_api] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2999), + [anon_sym_include] = ACTIONS(2999), + [anon_sym_DEF] = ACTIONS(2999), + [anon_sym_IF] = ACTIONS(2999), + [anon_sym_cdef] = ACTIONS(2999), + [anon_sym_cpdef] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_ctypedef] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_packed] = ACTIONS(2999), + [anon_sym_inline] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2999), + [sym__dedent] = ACTIONS(3001), + [sym_string_start] = ACTIONS(3001), }, - [1122] = { - [sym_else_clause] = STATE(2181), + [1142] = { [ts_builtin_sym_end] = ACTIONS(3003), [sym_identifier] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3003), [anon_sym_import] = ACTIONS(3005), [anon_sym_cimport] = ACTIONS(3005), [anon_sym_from] = ACTIONS(3005), @@ -143664,7 +144354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -143719,4390 +144408,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1143] = { + [sym_identifier] = ACTIONS(3007), + [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3007), + [anon_sym_cimport] = ACTIONS(3007), + [anon_sym_from] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_print] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_del] = ACTIONS(3007), + [anon_sym_raise] = ACTIONS(3007), + [anon_sym_pass] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_async] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_try] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3007), + [anon_sym_def] = ACTIONS(3007), + [anon_sym_global] = ACTIONS(3007), + [anon_sym_nonlocal] = ACTIONS(3007), + [anon_sym_exec] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_class] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_AT] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_lambda] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3009), + [anon_sym_None] = ACTIONS(3007), + [anon_sym_0x] = ACTIONS(3009), + [anon_sym_0X] = ACTIONS(3009), + [anon_sym_0o] = ACTIONS(3009), + [anon_sym_0O] = ACTIONS(3009), + [anon_sym_0b] = ACTIONS(3009), + [anon_sym_0B] = ACTIONS(3009), + [aux_sym_integer_token4] = ACTIONS(3007), + [sym_float] = ACTIONS(3009), + [anon_sym_await] = ACTIONS(3007), + [anon_sym_api] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3007), + [anon_sym_include] = ACTIONS(3007), + [anon_sym_DEF] = ACTIONS(3007), + [anon_sym_IF] = ACTIONS(3007), + [anon_sym_cdef] = ACTIONS(3007), + [anon_sym_cpdef] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_ctypedef] = ACTIONS(3007), + [anon_sym_public] = ACTIONS(3007), + [anon_sym_packed] = ACTIONS(3007), + [anon_sym_inline] = ACTIONS(3007), + [anon_sym_readonly] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3007), + [sym__dedent] = ACTIONS(3009), + [sym_string_start] = ACTIONS(3009), }, - [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), + [1144] = { + [sym_identifier] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_cimport] = ACTIONS(3011), + [anon_sym_from] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_print] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_del] = ACTIONS(3011), + [anon_sym_raise] = ACTIONS(3011), + [anon_sym_pass] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_def] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_nonlocal] = ACTIONS(3011), + [anon_sym_exec] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_lambda] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_None] = ACTIONS(3011), + [anon_sym_0x] = ACTIONS(3013), + [anon_sym_0X] = ACTIONS(3013), + [anon_sym_0o] = ACTIONS(3013), + [anon_sym_0O] = ACTIONS(3013), + [anon_sym_0b] = ACTIONS(3013), + [anon_sym_0B] = ACTIONS(3013), + [aux_sym_integer_token4] = ACTIONS(3011), + [sym_float] = ACTIONS(3013), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_api] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3011), + [anon_sym_include] = ACTIONS(3011), + [anon_sym_DEF] = ACTIONS(3011), + [anon_sym_IF] = ACTIONS(3011), + [anon_sym_cdef] = ACTIONS(3011), + [anon_sym_cpdef] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_ctypedef] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_packed] = ACTIONS(3011), + [anon_sym_inline] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3011), + [sym__dedent] = ACTIONS(3013), + [sym_string_start] = ACTIONS(3013), }, - [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), + [1145] = { + [sym_identifier] = ACTIONS(3015), + [anon_sym_SEMI] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3015), + [anon_sym_cimport] = ACTIONS(3015), + [anon_sym_from] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_del] = ACTIONS(3015), + [anon_sym_raise] = ACTIONS(3015), + [anon_sym_pass] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_async] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_while] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3015), + [anon_sym_with] = ACTIONS(3015), + [anon_sym_def] = ACTIONS(3015), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_nonlocal] = ACTIONS(3015), + [anon_sym_exec] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_None] = ACTIONS(3015), + [anon_sym_0x] = ACTIONS(3017), + [anon_sym_0X] = ACTIONS(3017), + [anon_sym_0o] = ACTIONS(3017), + [anon_sym_0O] = ACTIONS(3017), + [anon_sym_0b] = ACTIONS(3017), + [anon_sym_0B] = ACTIONS(3017), + [aux_sym_integer_token4] = ACTIONS(3015), + [sym_float] = ACTIONS(3017), + [anon_sym_await] = ACTIONS(3015), + [anon_sym_api] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3015), + [anon_sym_include] = ACTIONS(3015), + [anon_sym_DEF] = ACTIONS(3015), + [anon_sym_IF] = ACTIONS(3015), + [anon_sym_cdef] = ACTIONS(3015), + [anon_sym_cpdef] = ACTIONS(3015), + [anon_sym_new] = ACTIONS(3015), + [anon_sym_ctypedef] = ACTIONS(3015), + [anon_sym_public] = ACTIONS(3015), + [anon_sym_packed] = ACTIONS(3015), + [anon_sym_inline] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3015), + [sym__dedent] = ACTIONS(3017), + [sym_string_start] = ACTIONS(3017), }, - [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), + [1146] = { + [sym_identifier] = ACTIONS(3019), + [anon_sym_SEMI] = ACTIONS(3021), + [anon_sym_import] = ACTIONS(3019), + [anon_sym_cimport] = ACTIONS(3019), + [anon_sym_from] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_print] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_del] = ACTIONS(3019), + [anon_sym_raise] = ACTIONS(3019), + [anon_sym_pass] = ACTIONS(3019), + [anon_sym_break] = ACTIONS(3019), + [anon_sym_continue] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_while] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3019), + [anon_sym_with] = ACTIONS(3019), + [anon_sym_def] = ACTIONS(3019), + [anon_sym_global] = ACTIONS(3019), + [anon_sym_nonlocal] = ACTIONS(3019), + [anon_sym_exec] = ACTIONS(3019), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_class] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_lambda] = ACTIONS(3019), + [anon_sym_yield] = ACTIONS(3019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), + [anon_sym_None] = ACTIONS(3019), + [anon_sym_0x] = ACTIONS(3021), + [anon_sym_0X] = ACTIONS(3021), + [anon_sym_0o] = ACTIONS(3021), + [anon_sym_0O] = ACTIONS(3021), + [anon_sym_0b] = ACTIONS(3021), + [anon_sym_0B] = ACTIONS(3021), + [aux_sym_integer_token4] = ACTIONS(3019), + [sym_float] = ACTIONS(3021), + [anon_sym_await] = ACTIONS(3019), + [anon_sym_api] = ACTIONS(3019), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3019), + [anon_sym_include] = ACTIONS(3019), + [anon_sym_DEF] = ACTIONS(3019), + [anon_sym_IF] = ACTIONS(3019), + [anon_sym_cdef] = ACTIONS(3019), + [anon_sym_cpdef] = ACTIONS(3019), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_ctypedef] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_packed] = ACTIONS(3019), + [anon_sym_inline] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3019), + [sym__dedent] = ACTIONS(3021), + [sym_string_start] = ACTIONS(3021), }, - [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), + [1147] = { + [sym_identifier] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(3025), + [anon_sym_import] = ACTIONS(3023), + [anon_sym_cimport] = ACTIONS(3023), + [anon_sym_from] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_print] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_del] = ACTIONS(3023), + [anon_sym_raise] = ACTIONS(3023), + [anon_sym_pass] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_def] = ACTIONS(3023), + [anon_sym_global] = ACTIONS(3023), + [anon_sym_nonlocal] = ACTIONS(3023), + [anon_sym_exec] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_not] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_lambda] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), + [anon_sym_None] = ACTIONS(3023), + [anon_sym_0x] = ACTIONS(3025), + [anon_sym_0X] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3025), + [anon_sym_0O] = ACTIONS(3025), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0B] = ACTIONS(3025), + [aux_sym_integer_token4] = ACTIONS(3023), + [sym_float] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3023), + [anon_sym_api] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3023), + [anon_sym_include] = ACTIONS(3023), + [anon_sym_DEF] = ACTIONS(3023), + [anon_sym_IF] = ACTIONS(3023), + [anon_sym_cdef] = ACTIONS(3023), + [anon_sym_cpdef] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_ctypedef] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_packed] = ACTIONS(3023), + [anon_sym_inline] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3023), + [sym__dedent] = ACTIONS(3025), + [sym_string_start] = ACTIONS(3025), }, - [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), + [1148] = { + [sym_identifier] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_import] = ACTIONS(3027), + [anon_sym_cimport] = ACTIONS(3027), + [anon_sym_from] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_print] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_del] = ACTIONS(3027), + [anon_sym_raise] = ACTIONS(3027), + [anon_sym_pass] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_def] = ACTIONS(3027), + [anon_sym_global] = ACTIONS(3027), + [anon_sym_nonlocal] = ACTIONS(3027), + [anon_sym_exec] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_lambda] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_None] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3029), + [anon_sym_0X] = ACTIONS(3029), + [anon_sym_0o] = ACTIONS(3029), + [anon_sym_0O] = ACTIONS(3029), + [anon_sym_0b] = ACTIONS(3029), + [anon_sym_0B] = ACTIONS(3029), + [aux_sym_integer_token4] = ACTIONS(3027), + [sym_float] = ACTIONS(3029), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3027), + [anon_sym_include] = ACTIONS(3027), + [anon_sym_DEF] = ACTIONS(3027), + [anon_sym_IF] = ACTIONS(3027), + [anon_sym_cdef] = ACTIONS(3027), + [anon_sym_cpdef] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_ctypedef] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_packed] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3027), + [sym__dedent] = ACTIONS(3029), + [sym_string_start] = ACTIONS(3029), }, - [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), + [1149] = { + [ts_builtin_sym_end] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3033), + [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_import] = ACTIONS(3033), + [anon_sym_cimport] = ACTIONS(3033), + [anon_sym_from] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_print] = ACTIONS(3033), + [anon_sym_assert] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3033), + [anon_sym_del] = ACTIONS(3033), + [anon_sym_raise] = ACTIONS(3033), + [anon_sym_pass] = ACTIONS(3033), + [anon_sym_break] = ACTIONS(3033), + [anon_sym_continue] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_match] = ACTIONS(3033), + [anon_sym_async] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3033), + [anon_sym_while] = ACTIONS(3033), + [anon_sym_try] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3033), + [anon_sym_def] = ACTIONS(3033), + [anon_sym_global] = ACTIONS(3033), + [anon_sym_nonlocal] = ACTIONS(3033), + [anon_sym_exec] = ACTIONS(3033), + [anon_sym_type] = ACTIONS(3033), + [anon_sym_class] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_AT] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_lambda] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), + [anon_sym_None] = ACTIONS(3033), + [anon_sym_0x] = ACTIONS(3031), + [anon_sym_0X] = ACTIONS(3031), + [anon_sym_0o] = ACTIONS(3031), + [anon_sym_0O] = ACTIONS(3031), + [anon_sym_0b] = ACTIONS(3031), + [anon_sym_0B] = ACTIONS(3031), + [aux_sym_integer_token4] = ACTIONS(3033), + [sym_float] = ACTIONS(3031), + [anon_sym_await] = ACTIONS(3033), + [anon_sym_api] = ACTIONS(3033), + [sym_true] = ACTIONS(3033), + [sym_false] = ACTIONS(3033), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3033), + [anon_sym_include] = ACTIONS(3033), + [anon_sym_DEF] = ACTIONS(3033), + [anon_sym_IF] = ACTIONS(3033), + [anon_sym_cdef] = ACTIONS(3033), + [anon_sym_cpdef] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_ctypedef] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_packed] = ACTIONS(3033), + [anon_sym_inline] = ACTIONS(3033), + [anon_sym_readonly] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3033), + [sym_string_start] = ACTIONS(3031), }, - [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), + [1150] = { + [ts_builtin_sym_end] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3037), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_cimport] = ACTIONS(3037), + [anon_sym_from] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_print] = ACTIONS(3037), + [anon_sym_assert] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_del] = ACTIONS(3037), + [anon_sym_raise] = ACTIONS(3037), + [anon_sym_pass] = ACTIONS(3037), + [anon_sym_break] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3037), + [anon_sym_async] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3037), + [anon_sym_def] = ACTIONS(3037), + [anon_sym_global] = ACTIONS(3037), + [anon_sym_nonlocal] = ACTIONS(3037), + [anon_sym_exec] = ACTIONS(3037), + [anon_sym_type] = ACTIONS(3037), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_AT] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_lambda] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_None] = ACTIONS(3037), + [anon_sym_0x] = ACTIONS(3035), + [anon_sym_0X] = ACTIONS(3035), + [anon_sym_0o] = ACTIONS(3035), + [anon_sym_0O] = ACTIONS(3035), + [anon_sym_0b] = ACTIONS(3035), + [anon_sym_0B] = ACTIONS(3035), + [aux_sym_integer_token4] = ACTIONS(3037), + [sym_float] = ACTIONS(3035), + [anon_sym_await] = ACTIONS(3037), + [anon_sym_api] = ACTIONS(3037), + [sym_true] = ACTIONS(3037), + [sym_false] = ACTIONS(3037), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3037), + [anon_sym_include] = ACTIONS(3037), + [anon_sym_DEF] = ACTIONS(3037), + [anon_sym_IF] = ACTIONS(3037), + [anon_sym_cdef] = ACTIONS(3037), + [anon_sym_cpdef] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3037), + [anon_sym_ctypedef] = ACTIONS(3037), + [anon_sym_public] = ACTIONS(3037), + [anon_sym_packed] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3037), + [anon_sym_readonly] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3037), + [sym_string_start] = ACTIONS(3035), }, - [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), + [1151] = { + [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_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(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), + [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), }, - [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), + [1152] = { + [sym_identifier] = ACTIONS(3043), + [anon_sym_import] = ACTIONS(3043), + [anon_sym_cimport] = ACTIONS(3043), + [anon_sym_from] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_print] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_del] = ACTIONS(3043), + [anon_sym_raise] = ACTIONS(3043), + [anon_sym_pass] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_async] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_finally] = ACTIONS(3043), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_def] = ACTIONS(3043), + [anon_sym_global] = ACTIONS(3043), + [anon_sym_nonlocal] = ACTIONS(3043), + [anon_sym_exec] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_AT] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), + [anon_sym_None] = ACTIONS(3043), + [anon_sym_0x] = ACTIONS(3045), + [anon_sym_0X] = ACTIONS(3045), + [anon_sym_0o] = ACTIONS(3045), + [anon_sym_0O] = ACTIONS(3045), + [anon_sym_0b] = ACTIONS(3045), + [anon_sym_0B] = ACTIONS(3045), + [aux_sym_integer_token4] = ACTIONS(3043), + [sym_float] = ACTIONS(3045), + [anon_sym_await] = ACTIONS(3043), + [anon_sym_api] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3043), + [anon_sym_include] = ACTIONS(3043), + [anon_sym_DEF] = ACTIONS(3043), + [anon_sym_IF] = ACTIONS(3043), + [anon_sym_cdef] = ACTIONS(3043), + [anon_sym_cpdef] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_ctypedef] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_packed] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_readonly] = ACTIONS(3043), + [anon_sym_sizeof] = ACTIONS(3043), + [sym__dedent] = ACTIONS(3045), + [sym_string_start] = ACTIONS(3045), }, - [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), + [1153] = { + [sym_identifier] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_import] = ACTIONS(3047), + [anon_sym_cimport] = ACTIONS(3047), + [anon_sym_from] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_print] = ACTIONS(3047), + [anon_sym_assert] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_del] = ACTIONS(3047), + [anon_sym_raise] = ACTIONS(3047), + [anon_sym_pass] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_def] = ACTIONS(3047), + [anon_sym_global] = ACTIONS(3047), + [anon_sym_nonlocal] = ACTIONS(3047), + [anon_sym_exec] = ACTIONS(3047), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_AT] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3049), + [anon_sym_None] = ACTIONS(3047), + [anon_sym_0x] = ACTIONS(3049), + [anon_sym_0X] = ACTIONS(3049), + [anon_sym_0o] = ACTIONS(3049), + [anon_sym_0O] = ACTIONS(3049), + [anon_sym_0b] = ACTIONS(3049), + [anon_sym_0B] = ACTIONS(3049), + [aux_sym_integer_token4] = ACTIONS(3047), + [sym_float] = ACTIONS(3049), + [anon_sym_await] = ACTIONS(3047), + [anon_sym_api] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3047), + [anon_sym_include] = ACTIONS(3047), + [anon_sym_DEF] = ACTIONS(3047), + [anon_sym_IF] = ACTIONS(3047), + [anon_sym_cdef] = ACTIONS(3047), + [anon_sym_cpdef] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_ctypedef] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_packed] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_readonly] = ACTIONS(3047), + [anon_sym_sizeof] = ACTIONS(3047), + [sym__dedent] = ACTIONS(3049), + [sym_string_start] = ACTIONS(3049), }, - [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), + [1154] = { + [sym_identifier] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(3051), + [anon_sym_cimport] = ACTIONS(3051), + [anon_sym_from] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_print] = ACTIONS(3051), + [anon_sym_assert] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_del] = ACTIONS(3051), + [anon_sym_raise] = ACTIONS(3051), + [anon_sym_pass] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3051), + [anon_sym_async] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_with] = ACTIONS(3051), + [anon_sym_def] = ACTIONS(3051), + [anon_sym_global] = ACTIONS(3051), + [anon_sym_nonlocal] = ACTIONS(3051), + [anon_sym_exec] = ACTIONS(3051), + [anon_sym_type] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_AT] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_lambda] = ACTIONS(3051), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), + [anon_sym_None] = ACTIONS(3051), + [anon_sym_0x] = ACTIONS(3053), + [anon_sym_0X] = ACTIONS(3053), + [anon_sym_0o] = ACTIONS(3053), + [anon_sym_0O] = ACTIONS(3053), + [anon_sym_0b] = ACTIONS(3053), + [anon_sym_0B] = ACTIONS(3053), + [aux_sym_integer_token4] = ACTIONS(3051), + [sym_float] = ACTIONS(3053), + [anon_sym_await] = ACTIONS(3051), + [anon_sym_api] = ACTIONS(3051), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3051), + [anon_sym_include] = ACTIONS(3051), + [anon_sym_DEF] = ACTIONS(3051), + [anon_sym_IF] = ACTIONS(3051), + [anon_sym_cdef] = ACTIONS(3051), + [anon_sym_cpdef] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_ctypedef] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_packed] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym_readonly] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3051), + [sym__dedent] = ACTIONS(3053), + [sym_string_start] = ACTIONS(3053), }, - [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), + [1155] = { + [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_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), + [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), }, - [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), + [1156] = { + [sym_identifier] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3059), + [anon_sym_cimport] = ACTIONS(3059), + [anon_sym_from] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_print] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_del] = ACTIONS(3059), + [anon_sym_raise] = ACTIONS(3059), + [anon_sym_pass] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_async] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_with] = ACTIONS(3059), + [anon_sym_def] = ACTIONS(3059), + [anon_sym_global] = ACTIONS(3059), + [anon_sym_nonlocal] = ACTIONS(3059), + [anon_sym_exec] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_lambda] = ACTIONS(3059), + [anon_sym_yield] = ACTIONS(3059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_None] = ACTIONS(3059), + [anon_sym_0x] = ACTIONS(3061), + [anon_sym_0X] = ACTIONS(3061), + [anon_sym_0o] = ACTIONS(3061), + [anon_sym_0O] = ACTIONS(3061), + [anon_sym_0b] = ACTIONS(3061), + [anon_sym_0B] = ACTIONS(3061), + [aux_sym_integer_token4] = ACTIONS(3059), + [sym_float] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3059), + [anon_sym_include] = ACTIONS(3059), + [anon_sym_DEF] = ACTIONS(3059), + [anon_sym_IF] = ACTIONS(3059), + [anon_sym_cdef] = ACTIONS(3059), + [anon_sym_cpdef] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_ctypedef] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_packed] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_readonly] = ACTIONS(3059), + [anon_sym_sizeof] = ACTIONS(3059), + [sym__dedent] = ACTIONS(3061), + [sym_string_start] = ACTIONS(3061), }, - [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), + [1157] = { + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_import] = ACTIONS(3063), + [anon_sym_cimport] = ACTIONS(3063), + [anon_sym_from] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_print] = ACTIONS(3063), + [anon_sym_assert] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_del] = ACTIONS(3063), + [anon_sym_raise] = ACTIONS(3063), + [anon_sym_pass] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_match] = ACTIONS(3063), + [anon_sym_async] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_with] = ACTIONS(3063), + [anon_sym_def] = ACTIONS(3063), + [anon_sym_global] = ACTIONS(3063), + [anon_sym_nonlocal] = ACTIONS(3063), + [anon_sym_exec] = ACTIONS(3063), + [anon_sym_type] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_lambda] = ACTIONS(3063), + [anon_sym_yield] = ACTIONS(3063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), + [anon_sym_None] = ACTIONS(3063), + [anon_sym_0x] = ACTIONS(3065), + [anon_sym_0X] = ACTIONS(3065), + [anon_sym_0o] = ACTIONS(3065), + [anon_sym_0O] = ACTIONS(3065), + [anon_sym_0b] = ACTIONS(3065), + [anon_sym_0B] = ACTIONS(3065), + [aux_sym_integer_token4] = ACTIONS(3063), + [sym_float] = ACTIONS(3065), + [anon_sym_await] = ACTIONS(3063), + [anon_sym_api] = ACTIONS(3063), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3063), + [anon_sym_include] = ACTIONS(3063), + [anon_sym_DEF] = ACTIONS(3063), + [anon_sym_IF] = ACTIONS(3063), + [anon_sym_cdef] = ACTIONS(3063), + [anon_sym_cpdef] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_ctypedef] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_packed] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_readonly] = ACTIONS(3063), + [anon_sym_sizeof] = ACTIONS(3063), + [sym__dedent] = ACTIONS(3065), + [sym_string_start] = ACTIONS(3065), }, - [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), + [1158] = { + [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(3067), + [anon_sym_cimport] = ACTIONS(3067), + [anon_sym_from] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_print] = ACTIONS(3067), + [anon_sym_assert] = ACTIONS(3067), + [anon_sym_return] = ACTIONS(3067), + [anon_sym_del] = ACTIONS(3067), + [anon_sym_raise] = ACTIONS(3067), + [anon_sym_pass] = ACTIONS(3067), + [anon_sym_break] = ACTIONS(3067), + [anon_sym_continue] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3067), + [anon_sym_match] = ACTIONS(3067), + [anon_sym_async] = ACTIONS(3067), + [anon_sym_for] = ACTIONS(3067), + [anon_sym_while] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3067), + [anon_sym_with] = ACTIONS(3067), + [anon_sym_def] = ACTIONS(3067), + [anon_sym_global] = ACTIONS(3067), + [anon_sym_nonlocal] = ACTIONS(3067), + [anon_sym_exec] = ACTIONS(3067), + [anon_sym_type] = ACTIONS(3067), + [anon_sym_class] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_AT] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(3067), + [anon_sym_yield] = ACTIONS(3067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3069), + [anon_sym_None] = ACTIONS(3067), + [anon_sym_0x] = ACTIONS(3069), + [anon_sym_0X] = ACTIONS(3069), + [anon_sym_0o] = ACTIONS(3069), + [anon_sym_0O] = ACTIONS(3069), + [anon_sym_0b] = ACTIONS(3069), + [anon_sym_0B] = ACTIONS(3069), + [aux_sym_integer_token4] = ACTIONS(3067), + [sym_float] = ACTIONS(3069), + [anon_sym_await] = ACTIONS(3067), + [anon_sym_api] = ACTIONS(3067), + [sym_true] = ACTIONS(3067), + [sym_false] = ACTIONS(3067), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3067), + [anon_sym_include] = ACTIONS(3067), + [anon_sym_DEF] = ACTIONS(3067), + [anon_sym_IF] = ACTIONS(3067), + [anon_sym_cdef] = ACTIONS(3067), + [anon_sym_cpdef] = ACTIONS(3067), + [anon_sym_new] = ACTIONS(3067), + [anon_sym_ctypedef] = ACTIONS(3067), + [anon_sym_public] = ACTIONS(3067), + [anon_sym_packed] = ACTIONS(3067), + [anon_sym_inline] = ACTIONS(3067), + [anon_sym_readonly] = ACTIONS(3067), + [anon_sym_sizeof] = ACTIONS(3067), + [sym__dedent] = ACTIONS(3069), + [sym_string_start] = ACTIONS(3069), }, - [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), + [1159] = { + [sym_identifier] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3071), + [anon_sym_cimport] = ACTIONS(3071), + [anon_sym_from] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3071), + [anon_sym_assert] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_del] = ACTIONS(3071), + [anon_sym_raise] = ACTIONS(3071), + [anon_sym_pass] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3071), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3071), + [anon_sym_def] = ACTIONS(3071), + [anon_sym_global] = ACTIONS(3071), + [anon_sym_nonlocal] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(3071), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [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(3071), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3071), + [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(3071), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3071), + [anon_sym_api] = ACTIONS(3071), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3071), + [anon_sym_include] = ACTIONS(3071), + [anon_sym_DEF] = ACTIONS(3071), + [anon_sym_IF] = ACTIONS(3071), + [anon_sym_cdef] = ACTIONS(3071), + [anon_sym_cpdef] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_ctypedef] = ACTIONS(3071), + [anon_sym_public] = ACTIONS(3071), + [anon_sym_packed] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_readonly] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(3071), + [sym__dedent] = ACTIONS(3073), + [sym_string_start] = ACTIONS(3073), }, [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_SEMI] = ACTIONS(3077), [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_LPAREN] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), [anon_sym_print] = ACTIONS(3075), [anon_sym_assert] = ACTIONS(3075), [anon_sym_return] = ACTIONS(3075), @@ -148124,27 +145661,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3077), [anon_sym_lambda] = ACTIONS(3075), [anon_sym_yield] = ACTIONS(3075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), [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), + [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(3075), - [sym_float] = ACTIONS(3073), + [sym_float] = ACTIONS(3077), [anon_sym_await] = ACTIONS(3075), [anon_sym_api] = ACTIONS(3075), [sym_true] = ACTIONS(3075), @@ -148164,17 +145701,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3075), [anon_sym_readonly] = ACTIONS(3075), [anon_sym_sizeof] = ACTIONS(3075), - [sym_string_start] = ACTIONS(3073), + [sym__dedent] = ACTIONS(3077), + [sym_string_start] = ACTIONS(3077), }, - [1184] = { - [ts_builtin_sym_end] = ACTIONS(3077), + [1161] = { [sym_identifier] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3081), [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_LPAREN] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), [anon_sym_print] = ACTIONS(3079), [anon_sym_assert] = ACTIONS(3079), [anon_sym_return] = ACTIONS(3079), @@ -148196,27 +145733,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), [anon_sym_not] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), [anon_sym_lambda] = ACTIONS(3079), [anon_sym_yield] = ACTIONS(3079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), [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), + [anon_sym_0x] = ACTIONS(3081), + [anon_sym_0X] = ACTIONS(3081), + [anon_sym_0o] = ACTIONS(3081), + [anon_sym_0O] = ACTIONS(3081), + [anon_sym_0b] = ACTIONS(3081), + [anon_sym_0B] = ACTIONS(3081), [aux_sym_integer_token4] = ACTIONS(3079), - [sym_float] = ACTIONS(3077), + [sym_float] = ACTIONS(3081), [anon_sym_await] = ACTIONS(3079), [anon_sym_api] = ACTIONS(3079), [sym_true] = ACTIONS(3079), @@ -148236,89 +145773,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3079), [anon_sym_readonly] = ACTIONS(3079), [anon_sym_sizeof] = ACTIONS(3079), - [sym_string_start] = ACTIONS(3077), + [sym__dedent] = ACTIONS(3081), + [sym_string_start] = ACTIONS(3081), }, - [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), + [1162] = { + [sym_identifier] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3083), + [anon_sym_cimport] = ACTIONS(3083), + [anon_sym_from] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_print] = ACTIONS(3083), + [anon_sym_assert] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_del] = ACTIONS(3083), + [anon_sym_raise] = ACTIONS(3083), + [anon_sym_pass] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_async] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3083), + [anon_sym_def] = ACTIONS(3083), + [anon_sym_global] = ACTIONS(3083), + [anon_sym_nonlocal] = ACTIONS(3083), + [anon_sym_exec] = ACTIONS(3083), + [anon_sym_type] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [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(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_lambda] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_None] = ACTIONS(3083), + [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(3083), + [sym_float] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3083), + [anon_sym_api] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3083), + [anon_sym_include] = ACTIONS(3083), + [anon_sym_DEF] = ACTIONS(3083), + [anon_sym_IF] = ACTIONS(3083), + [anon_sym_cdef] = ACTIONS(3083), + [anon_sym_cpdef] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_ctypedef] = ACTIONS(3083), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_packed] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym_readonly] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(3083), + [sym__dedent] = ACTIONS(3085), + [sym_string_start] = ACTIONS(3085), }, - [1186] = { - [ts_builtin_sym_end] = ACTIONS(3085), + [1163] = { [sym_identifier] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3089), [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_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), [anon_sym_print] = ACTIONS(3087), [anon_sym_assert] = ACTIONS(3087), [anon_sym_return] = ACTIONS(3087), @@ -148340,27 +145877,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3087), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), [anon_sym_lambda] = ACTIONS(3087), [anon_sym_yield] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), [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), + [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(3087), - [sym_float] = ACTIONS(3085), + [sym_float] = ACTIONS(3089), [anon_sym_await] = ACTIONS(3087), [anon_sym_api] = ACTIONS(3087), [sym_true] = ACTIONS(3087), @@ -148380,89 +145917,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3089), + [sym_string_start] = ACTIONS(3089), }, - [1188] = { - [ts_builtin_sym_end] = ACTIONS(3089), + [1164] = { [sym_identifier] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3093), [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_LPAREN] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), [anon_sym_print] = ACTIONS(3091), [anon_sym_assert] = ACTIONS(3091), [anon_sym_return] = ACTIONS(3091), @@ -148484,27 +145949,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), [anon_sym_not] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), [anon_sym_lambda] = ACTIONS(3091), [anon_sym_yield] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), [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), + [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(3091), - [sym_float] = ACTIONS(3089), + [sym_float] = ACTIONS(3093), [anon_sym_await] = ACTIONS(3091), [anon_sym_api] = ACTIONS(3091), [sym_true] = ACTIONS(3091), @@ -148524,17 +145989,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3091), [anon_sym_readonly] = ACTIONS(3091), [anon_sym_sizeof] = ACTIONS(3091), - [sym_string_start] = ACTIONS(3089), + [sym__dedent] = ACTIONS(3093), + [sym_string_start] = ACTIONS(3093), }, - [1189] = { - [ts_builtin_sym_end] = ACTIONS(3093), + [1165] = { [sym_identifier] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3097), [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_LPAREN] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), [anon_sym_print] = ACTIONS(3095), [anon_sym_assert] = ACTIONS(3095), [anon_sym_return] = ACTIONS(3095), @@ -148556,27 +146021,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3095), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3097), [anon_sym_lambda] = ACTIONS(3095), [anon_sym_yield] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), [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), + [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(3095), - [sym_float] = ACTIONS(3093), + [sym_float] = ACTIONS(3097), [anon_sym_await] = ACTIONS(3095), [anon_sym_api] = ACTIONS(3095), [sym_true] = ACTIONS(3095), @@ -148596,17 +146061,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3095), [anon_sym_readonly] = ACTIONS(3095), [anon_sym_sizeof] = ACTIONS(3095), - [sym_string_start] = ACTIONS(3093), + [sym__dedent] = ACTIONS(3097), + [sym_string_start] = ACTIONS(3097), }, - [1190] = { - [ts_builtin_sym_end] = ACTIONS(3097), + [1166] = { [sym_identifier] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3101), [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_LPAREN] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), [anon_sym_print] = ACTIONS(3099), [anon_sym_assert] = ACTIONS(3099), [anon_sym_return] = ACTIONS(3099), @@ -148628,27 +146093,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3099), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), [anon_sym_lambda] = ACTIONS(3099), [anon_sym_yield] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), [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), + [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(3099), - [sym_float] = ACTIONS(3097), + [sym_float] = ACTIONS(3101), [anon_sym_await] = ACTIONS(3099), [anon_sym_api] = ACTIONS(3099), [sym_true] = ACTIONS(3099), @@ -148668,17 +146133,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3099), [anon_sym_readonly] = ACTIONS(3099), [anon_sym_sizeof] = ACTIONS(3099), - [sym_string_start] = ACTIONS(3097), + [sym__dedent] = ACTIONS(3101), + [sym_string_start] = ACTIONS(3101), }, - [1191] = { - [ts_builtin_sym_end] = ACTIONS(3101), + [1167] = { + [sym_identifier] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3071), + [anon_sym_cimport] = ACTIONS(3071), + [anon_sym_from] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3071), + [anon_sym_assert] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_del] = ACTIONS(3071), + [anon_sym_raise] = ACTIONS(3071), + [anon_sym_pass] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3071), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3071), + [anon_sym_def] = ACTIONS(3071), + [anon_sym_global] = ACTIONS(3071), + [anon_sym_nonlocal] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(3071), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [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(3071), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3071), + [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(3071), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3071), + [anon_sym_api] = ACTIONS(3071), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3071), + [anon_sym_include] = ACTIONS(3071), + [anon_sym_DEF] = ACTIONS(3071), + [anon_sym_IF] = ACTIONS(3071), + [anon_sym_cdef] = ACTIONS(3071), + [anon_sym_cpdef] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_ctypedef] = ACTIONS(3071), + [anon_sym_public] = ACTIONS(3071), + [anon_sym_packed] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_readonly] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(3071), + [sym__dedent] = ACTIONS(3073), + [sym_string_start] = ACTIONS(3073), + }, + [1168] = { [sym_identifier] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3105), [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_LPAREN] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), [anon_sym_print] = ACTIONS(3103), [anon_sym_assert] = ACTIONS(3103), [anon_sym_return] = ACTIONS(3103), @@ -148700,27 +146237,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), [anon_sym_not] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), [anon_sym_lambda] = ACTIONS(3103), [anon_sym_yield] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), [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), + [anon_sym_0x] = ACTIONS(3105), + [anon_sym_0X] = ACTIONS(3105), + [anon_sym_0o] = ACTIONS(3105), + [anon_sym_0O] = ACTIONS(3105), + [anon_sym_0b] = ACTIONS(3105), + [anon_sym_0B] = ACTIONS(3105), [aux_sym_integer_token4] = ACTIONS(3103), - [sym_float] = ACTIONS(3101), + [sym_float] = ACTIONS(3105), [anon_sym_await] = ACTIONS(3103), [anon_sym_api] = ACTIONS(3103), [sym_true] = ACTIONS(3103), @@ -148740,297 +146277,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3103), [anon_sym_readonly] = ACTIONS(3103), [anon_sym_sizeof] = ACTIONS(3103), - [sym_string_start] = ACTIONS(3101), + [sym__dedent] = ACTIONS(3105), + [sym_string_start] = ACTIONS(3105), }, - [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), + [1169] = { + [sym_identifier] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_cimport] = ACTIONS(3107), + [anon_sym_from] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_print] = ACTIONS(3107), + [anon_sym_assert] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_del] = ACTIONS(3107), + [anon_sym_raise] = ACTIONS(3107), + [anon_sym_pass] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_match] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_def] = ACTIONS(3107), + [anon_sym_global] = ACTIONS(3107), + [anon_sym_nonlocal] = ACTIONS(3107), + [anon_sym_exec] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_AT] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [anon_sym_None] = ACTIONS(3107), + [anon_sym_0x] = ACTIONS(3109), + [anon_sym_0X] = ACTIONS(3109), + [anon_sym_0o] = ACTIONS(3109), + [anon_sym_0O] = ACTIONS(3109), + [anon_sym_0b] = ACTIONS(3109), + [anon_sym_0B] = ACTIONS(3109), + [aux_sym_integer_token4] = ACTIONS(3107), + [sym_float] = ACTIONS(3109), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_api] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3107), + [anon_sym_include] = ACTIONS(3107), + [anon_sym_DEF] = ACTIONS(3107), + [anon_sym_IF] = ACTIONS(3107), + [anon_sym_cdef] = ACTIONS(3107), + [anon_sym_cpdef] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_ctypedef] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_packed] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3107), + [sym__dedent] = ACTIONS(3109), + [sym_string_start] = ACTIONS(3109), }, - [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), + [1170] = { + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_cimport] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [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(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_lambda] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_None] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3081), + [anon_sym_0X] = ACTIONS(3081), + [anon_sym_0o] = ACTIONS(3081), + [anon_sym_0O] = ACTIONS(3081), + [anon_sym_0b] = ACTIONS(3081), + [anon_sym_0B] = ACTIONS(3081), + [aux_sym_integer_token4] = ACTIONS(3079), + [sym_float] = ACTIONS(3081), + [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(3081), + [sym_string_start] = ACTIONS(3081), }, - [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), + [1171] = { + [sym_identifier] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_cimport] = ACTIONS(3111), + [anon_sym_from] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3111), + [anon_sym_assert] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_del] = ACTIONS(3111), + [anon_sym_raise] = ACTIONS(3111), + [anon_sym_pass] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_match] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_def] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_nonlocal] = ACTIONS(3111), + [anon_sym_exec] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_lambda] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_None] = ACTIONS(3111), + [anon_sym_0x] = ACTIONS(3113), + [anon_sym_0X] = ACTIONS(3113), + [anon_sym_0o] = ACTIONS(3113), + [anon_sym_0O] = ACTIONS(3113), + [anon_sym_0b] = ACTIONS(3113), + [anon_sym_0B] = ACTIONS(3113), + [aux_sym_integer_token4] = ACTIONS(3111), + [sym_float] = ACTIONS(3113), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_api] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3111), + [anon_sym_include] = ACTIONS(3111), + [anon_sym_DEF] = ACTIONS(3111), + [anon_sym_IF] = ACTIONS(3111), + [anon_sym_cdef] = ACTIONS(3111), + [anon_sym_cpdef] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_ctypedef] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_packed] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3111), + [sym__dedent] = ACTIONS(3113), + [sym_string_start] = ACTIONS(3113), }, - [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), + [1172] = { + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_cimport] = ACTIONS(3087), + [anon_sym_from] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [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(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(3087), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_lambda] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_None] = ACTIONS(3087), + [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(3087), + [sym_float] = ACTIONS(3089), + [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(3089), + [sym_string_start] = ACTIONS(3089), }, - [1196] = { + [1173] = { + [sym_identifier] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_import] = ACTIONS(3115), + [anon_sym_cimport] = ACTIONS(3115), + [anon_sym_from] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_del] = ACTIONS(3115), + [anon_sym_raise] = ACTIONS(3115), + [anon_sym_pass] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_def] = ACTIONS(3115), + [anon_sym_global] = ACTIONS(3115), + [anon_sym_nonlocal] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_AT] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_lambda] = ACTIONS(3115), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [anon_sym_None] = ACTIONS(3115), + [anon_sym_0x] = ACTIONS(3117), + [anon_sym_0X] = ACTIONS(3117), + [anon_sym_0o] = ACTIONS(3117), + [anon_sym_0O] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3117), + [anon_sym_0B] = ACTIONS(3117), + [aux_sym_integer_token4] = ACTIONS(3115), + [sym_float] = ACTIONS(3117), + [anon_sym_await] = ACTIONS(3115), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3115), + [anon_sym_include] = ACTIONS(3115), + [anon_sym_DEF] = ACTIONS(3115), + [anon_sym_IF] = ACTIONS(3115), + [anon_sym_cdef] = ACTIONS(3115), + [anon_sym_cpdef] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_ctypedef] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_packed] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3115), + [sym__dedent] = ACTIONS(3117), + [sym_string_start] = ACTIONS(3117), + }, + [1174] = { [sym_identifier] = ACTIONS(3119), [anon_sym_SEMI] = ACTIONS(3121), [anon_sym_import] = ACTIONS(3119), @@ -149102,266 +146712,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1175] = { + [sym_identifier] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_cimport] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_print] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_del] = ACTIONS(3123), + [anon_sym_raise] = ACTIONS(3123), + [anon_sym_pass] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_def] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_nonlocal] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_lambda] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [anon_sym_None] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3125), + [anon_sym_0X] = ACTIONS(3125), + [anon_sym_0o] = ACTIONS(3125), + [anon_sym_0O] = ACTIONS(3125), + [anon_sym_0b] = ACTIONS(3125), + [anon_sym_0B] = ACTIONS(3125), + [aux_sym_integer_token4] = ACTIONS(3123), + [sym_float] = ACTIONS(3125), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_api] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3123), + [anon_sym_include] = ACTIONS(3123), + [anon_sym_DEF] = ACTIONS(3123), + [anon_sym_IF] = ACTIONS(3123), + [anon_sym_cdef] = ACTIONS(3123), + [anon_sym_cpdef] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_ctypedef] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_packed] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3123), + [sym__dedent] = ACTIONS(3125), + [sym_string_start] = ACTIONS(3125), }, - [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), + [1176] = { + [sym_identifier] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3127), + [anon_sym_cimport] = ACTIONS(3127), + [anon_sym_from] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_print] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_del] = ACTIONS(3127), + [anon_sym_raise] = ACTIONS(3127), + [anon_sym_pass] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_def] = ACTIONS(3127), + [anon_sym_global] = ACTIONS(3127), + [anon_sym_nonlocal] = ACTIONS(3127), + [anon_sym_exec] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_lambda] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [anon_sym_None] = ACTIONS(3127), + [anon_sym_0x] = ACTIONS(3129), + [anon_sym_0X] = ACTIONS(3129), + [anon_sym_0o] = ACTIONS(3129), + [anon_sym_0O] = ACTIONS(3129), + [anon_sym_0b] = ACTIONS(3129), + [anon_sym_0B] = ACTIONS(3129), + [aux_sym_integer_token4] = ACTIONS(3127), + [sym_float] = ACTIONS(3129), + [anon_sym_await] = ACTIONS(3127), + [anon_sym_api] = ACTIONS(3127), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3127), + [anon_sym_include] = ACTIONS(3127), + [anon_sym_DEF] = ACTIONS(3127), + [anon_sym_IF] = ACTIONS(3127), + [anon_sym_cdef] = ACTIONS(3127), + [anon_sym_cpdef] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_ctypedef] = ACTIONS(3127), + [anon_sym_public] = ACTIONS(3127), + [anon_sym_packed] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3127), + [sym__dedent] = ACTIONS(3129), + [sym_string_start] = ACTIONS(3129), }, - [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), + [1177] = { + [sym_identifier] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_import] = ACTIONS(3131), + [anon_sym_cimport] = ACTIONS(3131), + [anon_sym_from] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_print] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_del] = ACTIONS(3131), + [anon_sym_raise] = ACTIONS(3131), + [anon_sym_pass] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_async] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_def] = ACTIONS(3131), + [anon_sym_global] = ACTIONS(3131), + [anon_sym_nonlocal] = ACTIONS(3131), + [anon_sym_exec] = ACTIONS(3131), + [anon_sym_type] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_lambda] = ACTIONS(3131), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_None] = ACTIONS(3131), + [anon_sym_0x] = ACTIONS(3133), + [anon_sym_0X] = ACTIONS(3133), + [anon_sym_0o] = ACTIONS(3133), + [anon_sym_0O] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3133), + [anon_sym_0B] = ACTIONS(3133), + [aux_sym_integer_token4] = ACTIONS(3131), + [sym_float] = ACTIONS(3133), + [anon_sym_await] = ACTIONS(3131), + [anon_sym_api] = ACTIONS(3131), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3131), + [anon_sym_include] = ACTIONS(3131), + [anon_sym_DEF] = ACTIONS(3131), + [anon_sym_IF] = ACTIONS(3131), + [anon_sym_cdef] = ACTIONS(3131), + [anon_sym_cpdef] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_ctypedef] = ACTIONS(3131), + [anon_sym_public] = ACTIONS(3131), + [anon_sym_packed] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym_readonly] = ACTIONS(3131), + [anon_sym_sizeof] = ACTIONS(3131), + [sym__dedent] = ACTIONS(3133), + [sym_string_start] = ACTIONS(3133), }, - [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), + [1178] = { + [sym_identifier] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_cimport] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_print] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_del] = ACTIONS(3135), + [anon_sym_raise] = ACTIONS(3135), + [anon_sym_pass] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_def] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_nonlocal] = ACTIONS(3135), + [anon_sym_exec] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_lambda] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), + [anon_sym_None] = ACTIONS(3135), + [anon_sym_0x] = ACTIONS(3137), + [anon_sym_0X] = ACTIONS(3137), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0O] = ACTIONS(3137), + [anon_sym_0b] = ACTIONS(3137), + [anon_sym_0B] = ACTIONS(3137), + [aux_sym_integer_token4] = ACTIONS(3135), + [sym_float] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_api] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3135), + [anon_sym_include] = ACTIONS(3135), + [anon_sym_DEF] = ACTIONS(3135), + [anon_sym_IF] = ACTIONS(3135), + [anon_sym_cdef] = ACTIONS(3135), + [anon_sym_cpdef] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_ctypedef] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_packed] = ACTIONS(3135), + [anon_sym_inline] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_sizeof] = ACTIONS(3135), + [sym__dedent] = ACTIONS(3137), + [sym_string_start] = ACTIONS(3137), + }, + [1179] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5580), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1180] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5440), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -149380,8 +147134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -149390,303 +147144,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1181] = { + [ts_builtin_sym_end] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_cimport] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_del] = ACTIONS(3143), + [anon_sym_raise] = ACTIONS(3143), + [anon_sym_pass] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_def] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_nonlocal] = ACTIONS(3143), + [anon_sym_exec] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_lambda] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), + [anon_sym_None] = ACTIONS(3143), + [anon_sym_0x] = ACTIONS(3141), + [anon_sym_0X] = ACTIONS(3141), + [anon_sym_0o] = ACTIONS(3141), + [anon_sym_0O] = ACTIONS(3141), + [anon_sym_0b] = ACTIONS(3141), + [anon_sym_0B] = ACTIONS(3141), + [aux_sym_integer_token4] = ACTIONS(3143), + [sym_float] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_api] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3143), + [anon_sym_include] = ACTIONS(3143), + [anon_sym_DEF] = ACTIONS(3143), + [anon_sym_IF] = ACTIONS(3143), + [anon_sym_cdef] = ACTIONS(3143), + [anon_sym_cpdef] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_ctypedef] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_packed] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_sizeof] = ACTIONS(3143), + [sym_string_start] = ACTIONS(3141), }, - [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), + [1182] = { + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_cimport] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_print] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_del] = ACTIONS(3147), + [anon_sym_raise] = ACTIONS(3147), + [anon_sym_pass] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_def] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_nonlocal] = ACTIONS(3147), + [anon_sym_exec] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_lambda] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_None] = ACTIONS(3147), + [anon_sym_0x] = ACTIONS(3145), + [anon_sym_0X] = ACTIONS(3145), + [anon_sym_0o] = ACTIONS(3145), + [anon_sym_0O] = ACTIONS(3145), + [anon_sym_0b] = ACTIONS(3145), + [anon_sym_0B] = ACTIONS(3145), + [aux_sym_integer_token4] = ACTIONS(3147), + [sym_float] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_api] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3147), + [anon_sym_include] = ACTIONS(3147), + [anon_sym_DEF] = ACTIONS(3147), + [anon_sym_IF] = ACTIONS(3147), + [anon_sym_cdef] = ACTIONS(3147), + [anon_sym_cpdef] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_ctypedef] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_packed] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3147), + [sym_string_start] = ACTIONS(3145), }, - [1205] = { - [ts_builtin_sym_end] = ACTIONS(3147), + [1183] = { [sym_identifier] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3151), [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_LPAREN] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), [anon_sym_print] = ACTIONS(3149), [anon_sym_assert] = ACTIONS(3149), [anon_sym_return] = ACTIONS(3149), @@ -149708,27 +147317,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), [anon_sym_lambda] = ACTIONS(3149), [anon_sym_yield] = ACTIONS(3149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), [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), + [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(3149), - [sym_float] = ACTIONS(3147), + [sym_float] = ACTIONS(3151), [anon_sym_await] = ACTIONS(3149), [anon_sym_api] = ACTIONS(3149), [sym_true] = ACTIONS(3149), @@ -149748,161 +147357,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3151), + [sym_string_start] = ACTIONS(3151), }, - [1208] = { - [ts_builtin_sym_end] = ACTIONS(3151), + [1184] = { [sym_identifier] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3155), [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_LPAREN] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), [anon_sym_print] = ACTIONS(3153), [anon_sym_assert] = ACTIONS(3153), [anon_sym_return] = ACTIONS(3153), @@ -149924,27 +147389,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), [anon_sym_lambda] = ACTIONS(3153), [anon_sym_yield] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), [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), + [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(3153), - [sym_float] = ACTIONS(3151), + [sym_float] = ACTIONS(3155), [anon_sym_await] = ACTIONS(3153), [anon_sym_api] = ACTIONS(3153), [sym_true] = ACTIONS(3153), @@ -149964,89 +147429,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3155), + [sym_string_start] = ACTIONS(3155), }, - [1210] = { - [ts_builtin_sym_end] = ACTIONS(3155), + [1185] = { [sym_identifier] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3159), [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_LPAREN] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3159), [anon_sym_print] = ACTIONS(3157), [anon_sym_assert] = ACTIONS(3157), [anon_sym_return] = ACTIONS(3157), @@ -150068,27 +147461,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), [anon_sym_not] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), [anon_sym_lambda] = ACTIONS(3157), [anon_sym_yield] = ACTIONS(3157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), [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), + [anon_sym_0x] = ACTIONS(3159), + [anon_sym_0X] = ACTIONS(3159), + [anon_sym_0o] = ACTIONS(3159), + [anon_sym_0O] = ACTIONS(3159), + [anon_sym_0b] = ACTIONS(3159), + [anon_sym_0B] = ACTIONS(3159), [aux_sym_integer_token4] = ACTIONS(3157), - [sym_float] = ACTIONS(3155), + [sym_float] = ACTIONS(3159), [anon_sym_await] = ACTIONS(3157), [anon_sym_api] = ACTIONS(3157), [sym_true] = ACTIONS(3157), @@ -150108,377 +147501,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3159), + [sym_string_start] = ACTIONS(3159), }, - [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), + [1186] = { + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_cimport] = ACTIONS(3161), + [anon_sym_from] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_print] = ACTIONS(3161), + [anon_sym_assert] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_del] = ACTIONS(3161), + [anon_sym_raise] = ACTIONS(3161), + [anon_sym_pass] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_match] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_def] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_nonlocal] = ACTIONS(3161), + [anon_sym_exec] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), [anon_sym_lambda] = ACTIONS(3161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [anon_sym_0x] = ACTIONS(81), - [anon_sym_0X] = ACTIONS(81), - [anon_sym_0o] = ACTIONS(83), - [anon_sym_0O] = ACTIONS(83), - [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), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_None] = ACTIONS(3161), + [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(3161), + [sym_float] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_api] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3161), + [anon_sym_include] = ACTIONS(3161), + [anon_sym_DEF] = ACTIONS(3161), + [anon_sym_IF] = ACTIONS(3161), + [anon_sym_cdef] = ACTIONS(3161), + [anon_sym_cpdef] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_ctypedef] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_packed] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3161), + [sym__dedent] = ACTIONS(3163), + [sym_string_start] = ACTIONS(3163), }, - [1216] = { - [ts_builtin_sym_end] = ACTIONS(3163), + [1187] = { [sym_identifier] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3167), [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_LPAREN] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), [anon_sym_print] = ACTIONS(3165), [anon_sym_assert] = ACTIONS(3165), [anon_sym_return] = ACTIONS(3165), @@ -150500,27 +147605,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3165), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), [anon_sym_lambda] = ACTIONS(3165), [anon_sym_yield] = ACTIONS(3165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), [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), + [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(3165), - [sym_float] = ACTIONS(3163), + [sym_float] = ACTIONS(3167), [anon_sym_await] = ACTIONS(3165), [anon_sym_api] = ACTIONS(3165), [sym_true] = ACTIONS(3165), @@ -150540,305 +147645,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3167), + [sym_string_start] = ACTIONS(3167), }, - [1221] = { - [ts_builtin_sym_end] = ACTIONS(3167), + [1188] = { [sym_identifier] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3171), [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_LPAREN] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), [anon_sym_print] = ACTIONS(3169), [anon_sym_assert] = ACTIONS(3169), [anon_sym_return] = ACTIONS(3169), @@ -150860,27 +147677,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), [anon_sym_not] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), [anon_sym_lambda] = ACTIONS(3169), [anon_sym_yield] = ACTIONS(3169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), [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), + [anon_sym_0x] = ACTIONS(3171), + [anon_sym_0X] = ACTIONS(3171), + [anon_sym_0o] = ACTIONS(3171), + [anon_sym_0O] = ACTIONS(3171), + [anon_sym_0b] = ACTIONS(3171), + [anon_sym_0B] = ACTIONS(3171), [aux_sym_integer_token4] = ACTIONS(3169), - [sym_float] = ACTIONS(3167), + [sym_float] = ACTIONS(3171), [anon_sym_await] = ACTIONS(3169), [anon_sym_api] = ACTIONS(3169), [sym_true] = ACTIONS(3169), @@ -150900,161 +147717,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3169), [anon_sym_readonly] = ACTIONS(3169), [anon_sym_sizeof] = ACTIONS(3169), - [sym_string_start] = ACTIONS(3167), + [sym__dedent] = ACTIONS(3171), + [sym_string_start] = ACTIONS(3171), }, - [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), + [1189] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), [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), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1190] = { + [sym_identifier] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_cimport] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_print] = ACTIONS(3179), + [anon_sym_assert] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_del] = ACTIONS(3179), + [anon_sym_raise] = ACTIONS(3179), + [anon_sym_pass] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_def] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_nonlocal] = ACTIONS(3179), + [anon_sym_exec] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [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(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_lambda] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_None] = ACTIONS(3179), + [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(3179), + [sym_float] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3179), + [anon_sym_include] = ACTIONS(3179), + [anon_sym_DEF] = ACTIONS(3179), + [anon_sym_IF] = ACTIONS(3179), + [anon_sym_cdef] = ACTIONS(3179), + [anon_sym_cpdef] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_ctypedef] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_packed] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_sizeof] = ACTIONS(3179), + [sym__dedent] = ACTIONS(3181), + [sym_string_start] = ACTIONS(3181), }, - [1224] = { - [ts_builtin_sym_end] = ACTIONS(3181), + [1191] = { [sym_identifier] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3185), [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_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_print] = ACTIONS(3183), [anon_sym_assert] = ACTIONS(3183), [anon_sym_return] = ACTIONS(3183), @@ -151076,27 +147893,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3183), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), [anon_sym_lambda] = ACTIONS(3183), [anon_sym_yield] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), [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), + [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(3183), - [sym_float] = ACTIONS(3181), + [sym_float] = ACTIONS(3185), [anon_sym_await] = ACTIONS(3183), [anon_sym_api] = ACTIONS(3183), [sym_true] = ACTIONS(3183), @@ -151116,17 +147933,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3183), [anon_sym_readonly] = ACTIONS(3183), [anon_sym_sizeof] = ACTIONS(3183), - [sym_string_start] = ACTIONS(3181), + [sym__dedent] = ACTIONS(3185), + [sym_string_start] = ACTIONS(3185), }, - [1225] = { - [ts_builtin_sym_end] = ACTIONS(3185), + [1192] = { [sym_identifier] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3189), [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_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), [anon_sym_print] = ACTIONS(3187), [anon_sym_assert] = ACTIONS(3187), [anon_sym_return] = ACTIONS(3187), @@ -151148,27 +147965,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3187), [anon_sym_type] = ACTIONS(3187), [anon_sym_class] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), [anon_sym_not] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_lambda] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), [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), + [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(3187), - [sym_float] = ACTIONS(3185), + [sym_float] = ACTIONS(3189), [anon_sym_await] = ACTIONS(3187), [anon_sym_api] = ACTIONS(3187), [sym_true] = ACTIONS(3187), @@ -151188,89 +148005,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3187), [anon_sym_readonly] = ACTIONS(3187), [anon_sym_sizeof] = ACTIONS(3187), - [sym_string_start] = ACTIONS(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), + [sym__dedent] = ACTIONS(3189), + [sym_string_start] = ACTIONS(3189), }, - [1227] = { - [ts_builtin_sym_end] = ACTIONS(3189), + [1193] = { [sym_identifier] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3193), [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_LPAREN] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), [anon_sym_print] = ACTIONS(3191), [anon_sym_assert] = ACTIONS(3191), [anon_sym_return] = ACTIONS(3191), @@ -151292,27 +148037,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3191), [anon_sym_type] = ACTIONS(3191), [anon_sym_class] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), [anon_sym_not] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), [anon_sym_lambda] = ACTIONS(3191), [anon_sym_yield] = ACTIONS(3191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), [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), + [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(3191), - [sym_float] = ACTIONS(3189), + [sym_float] = ACTIONS(3193), [anon_sym_await] = ACTIONS(3191), [anon_sym_api] = ACTIONS(3191), [sym_true] = ACTIONS(3191), @@ -151332,17 +148077,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3191), [anon_sym_readonly] = ACTIONS(3191), [anon_sym_sizeof] = ACTIONS(3191), - [sym_string_start] = ACTIONS(3189), + [sym__dedent] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3193), }, - [1228] = { - [ts_builtin_sym_end] = ACTIONS(3193), + [1194] = { [sym_identifier] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3197), [anon_sym_import] = ACTIONS(3195), [anon_sym_cimport] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -151364,27 +148109,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), [anon_sym_None] = ACTIONS(3195), - [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), + [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(3195), - [sym_float] = ACTIONS(3193), + [sym_float] = ACTIONS(3197), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -151404,17 +148149,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym_string_start] = ACTIONS(3193), - }, - [1229] = { - [ts_builtin_sym_end] = ACTIONS(3197), + [sym__dedent] = ACTIONS(3197), + [sym_string_start] = ACTIONS(3197), + }, + [1195] = { [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3201), [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_LPAREN] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), [anon_sym_print] = ACTIONS(3199), [anon_sym_assert] = ACTIONS(3199), [anon_sym_return] = ACTIONS(3199), @@ -151436,27 +148181,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), [anon_sym_lambda] = ACTIONS(3199), [anon_sym_yield] = ACTIONS(3199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), [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), + [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(3199), - [sym_float] = ACTIONS(3197), + [sym_float] = ACTIONS(3201), [anon_sym_await] = ACTIONS(3199), [anon_sym_api] = ACTIONS(3199), [sym_true] = ACTIONS(3199), @@ -151476,17 +148221,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3199), [anon_sym_readonly] = ACTIONS(3199), [anon_sym_sizeof] = ACTIONS(3199), - [sym_string_start] = ACTIONS(3197), + [sym__dedent] = ACTIONS(3201), + [sym_string_start] = ACTIONS(3201), }, - [1230] = { - [ts_builtin_sym_end] = ACTIONS(3201), + [1196] = { [sym_identifier] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3205), [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_LPAREN] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), [anon_sym_print] = ACTIONS(3203), [anon_sym_assert] = ACTIONS(3203), [anon_sym_return] = ACTIONS(3203), @@ -151508,27 +148253,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), [anon_sym_lambda] = ACTIONS(3203), [anon_sym_yield] = ACTIONS(3203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), [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), + [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(3203), - [sym_float] = ACTIONS(3201), + [sym_float] = ACTIONS(3205), [anon_sym_await] = ACTIONS(3203), [anon_sym_api] = ACTIONS(3203), [sym_true] = ACTIONS(3203), @@ -151548,89 +148293,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3205), + [sym_string_start] = ACTIONS(3205), }, - [1232] = { - [ts_builtin_sym_end] = ACTIONS(3205), + [1197] = { [sym_identifier] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3209), [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_LPAREN] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), [anon_sym_print] = ACTIONS(3207), [anon_sym_assert] = ACTIONS(3207), [anon_sym_return] = ACTIONS(3207), @@ -151652,27 +148325,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3207), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), [anon_sym_lambda] = ACTIONS(3207), [anon_sym_yield] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), [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), + [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(3207), - [sym_float] = ACTIONS(3205), + [sym_float] = ACTIONS(3209), [anon_sym_await] = ACTIONS(3207), [anon_sym_api] = ACTIONS(3207), [sym_true] = ACTIONS(3207), @@ -151692,17 +148365,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3207), [anon_sym_readonly] = ACTIONS(3207), [anon_sym_sizeof] = ACTIONS(3207), - [sym_string_start] = ACTIONS(3205), + [sym__dedent] = ACTIONS(3209), + [sym_string_start] = ACTIONS(3209), }, - [1233] = { - [ts_builtin_sym_end] = ACTIONS(3209), + [1198] = { [sym_identifier] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3213), [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_LPAREN] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), [anon_sym_print] = ACTIONS(3211), [anon_sym_assert] = ACTIONS(3211), [anon_sym_return] = ACTIONS(3211), @@ -151724,27 +148397,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), [anon_sym_not] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), [anon_sym_lambda] = ACTIONS(3211), [anon_sym_yield] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), [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), + [anon_sym_0x] = ACTIONS(3213), + [anon_sym_0X] = ACTIONS(3213), + [anon_sym_0o] = ACTIONS(3213), + [anon_sym_0O] = ACTIONS(3213), + [anon_sym_0b] = ACTIONS(3213), + [anon_sym_0B] = ACTIONS(3213), [aux_sym_integer_token4] = ACTIONS(3211), - [sym_float] = ACTIONS(3209), + [sym_float] = ACTIONS(3213), [anon_sym_await] = ACTIONS(3211), [anon_sym_api] = ACTIONS(3211), [sym_true] = ACTIONS(3211), @@ -151764,376 +148437,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3213), + [sym_string_start] = ACTIONS(3213), }, - [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), + [1199] = { + [sym_identifier] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_cimport] = ACTIONS(3215), + [anon_sym_from] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_print] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_del] = ACTIONS(3215), + [anon_sym_raise] = ACTIONS(3215), + [anon_sym_pass] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_def] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_nonlocal] = ACTIONS(3215), + [anon_sym_exec] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [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(3215), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_lambda] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_None] = ACTIONS(3215), + [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(3215), + [sym_float] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_api] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3215), + [anon_sym_include] = ACTIONS(3215), + [anon_sym_DEF] = ACTIONS(3215), + [anon_sym_IF] = ACTIONS(3215), + [anon_sym_cdef] = ACTIONS(3215), + [anon_sym_cpdef] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_ctypedef] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_packed] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3215), + [sym__dedent] = ACTIONS(3217), + [sym_string_start] = ACTIONS(3217), }, - [1239] = { - [ts_builtin_sym_end] = ACTIONS(3217), + [1200] = { [sym_identifier] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), [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_LPAREN] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), [anon_sym_print] = ACTIONS(3219), [anon_sym_assert] = ACTIONS(3219), [anon_sym_return] = ACTIONS(3219), @@ -152148,7 +148534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -152156,27 +148541,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), [anon_sym_not] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), [anon_sym_lambda] = ACTIONS(3219), [anon_sym_yield] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), [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), + [anon_sym_0x] = ACTIONS(3221), + [anon_sym_0X] = ACTIONS(3221), + [anon_sym_0o] = ACTIONS(3221), + [anon_sym_0O] = ACTIONS(3221), + [anon_sym_0b] = ACTIONS(3221), + [anon_sym_0B] = ACTIONS(3221), [aux_sym_integer_token4] = ACTIONS(3219), - [sym_float] = ACTIONS(3217), + [sym_float] = ACTIONS(3221), [anon_sym_await] = ACTIONS(3219), [anon_sym_api] = ACTIONS(3219), [sym_true] = ACTIONS(3219), @@ -152196,801 +148581,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3221), + [sym_string_start] = ACTIONS(3221), }, - [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), + [1201] = { + [sym_identifier] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_cimport] = ACTIONS(3223), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_print] = ACTIONS(3223), + [anon_sym_assert] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_del] = ACTIONS(3223), + [anon_sym_raise] = ACTIONS(3223), + [anon_sym_pass] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_def] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_nonlocal] = ACTIONS(3223), + [anon_sym_exec] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_lambda] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [anon_sym_None] = ACTIONS(3223), + [anon_sym_0x] = ACTIONS(3225), + [anon_sym_0X] = ACTIONS(3225), + [anon_sym_0o] = ACTIONS(3225), + [anon_sym_0O] = ACTIONS(3225), + [anon_sym_0b] = ACTIONS(3225), + [anon_sym_0B] = ACTIONS(3225), + [aux_sym_integer_token4] = ACTIONS(3223), + [sym_float] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_api] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3223), + [anon_sym_include] = ACTIONS(3223), + [anon_sym_DEF] = ACTIONS(3223), + [anon_sym_IF] = ACTIONS(3223), + [anon_sym_cdef] = ACTIONS(3223), + [anon_sym_cpdef] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_ctypedef] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_packed] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [sym__dedent] = ACTIONS(3225), + [sym_string_start] = ACTIONS(3225), }, - [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), + [1202] = { + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_cimport] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [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(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(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_lambda] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), + [anon_sym_None] = ACTIONS(3183), + [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(3183), + [sym_float] = ACTIONS(3185), + [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(3185), + [sym_string_start] = ACTIONS(3185), }, - [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), + [1203] = { + [sym_identifier] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_cimport] = ACTIONS(3227), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_print] = ACTIONS(3227), + [anon_sym_assert] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_del] = ACTIONS(3227), + [anon_sym_raise] = ACTIONS(3227), + [anon_sym_pass] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_def] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_nonlocal] = ACTIONS(3227), + [anon_sym_exec] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_not] = ACTIONS(3227), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_lambda] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_None] = ACTIONS(3227), + [anon_sym_0x] = ACTIONS(3229), + [anon_sym_0X] = ACTIONS(3229), + [anon_sym_0o] = ACTIONS(3229), + [anon_sym_0O] = ACTIONS(3229), + [anon_sym_0b] = ACTIONS(3229), + [anon_sym_0B] = ACTIONS(3229), + [aux_sym_integer_token4] = ACTIONS(3227), + [sym_float] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_api] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3227), + [anon_sym_include] = ACTIONS(3227), + [anon_sym_DEF] = ACTIONS(3227), + [anon_sym_IF] = ACTIONS(3227), + [anon_sym_cdef] = ACTIONS(3227), + [anon_sym_cpdef] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_ctypedef] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_packed] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_sizeof] = ACTIONS(3227), + [sym__dedent] = ACTIONS(3229), + [sym_string_start] = ACTIONS(3229), }, - [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), + [1204] = { + [sym_identifier] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_cimport] = ACTIONS(3231), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_del] = ACTIONS(3231), + [anon_sym_raise] = ACTIONS(3231), + [anon_sym_pass] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_def] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_nonlocal] = ACTIONS(3231), + [anon_sym_exec] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_not] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), [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), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_None] = ACTIONS(3231), + [anon_sym_0x] = ACTIONS(3233), + [anon_sym_0X] = ACTIONS(3233), + [anon_sym_0o] = ACTIONS(3233), + [anon_sym_0O] = ACTIONS(3233), + [anon_sym_0b] = ACTIONS(3233), + [anon_sym_0B] = ACTIONS(3233), + [aux_sym_integer_token4] = ACTIONS(3231), + [sym_float] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_api] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3231), + [anon_sym_include] = ACTIONS(3231), + [anon_sym_DEF] = ACTIONS(3231), + [anon_sym_IF] = ACTIONS(3231), + [anon_sym_cdef] = ACTIONS(3231), + [anon_sym_cpdef] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_ctypedef] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_packed] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_sizeof] = ACTIONS(3231), + [sym__dedent] = ACTIONS(3233), + [sym_string_start] = ACTIONS(3233), }, - [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] = { + [1205] = { [sym_identifier] = ACTIONS(3235), [anon_sym_SEMI] = ACTIONS(3237), [anon_sym_import] = ACTIONS(3235), @@ -153062,7 +148944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3237), [sym_string_start] = ACTIONS(3237), }, - [1252] = { + [1206] = { [sym_identifier] = ACTIONS(3239), [anon_sym_SEMI] = ACTIONS(3241), [anon_sym_import] = ACTIONS(3239), @@ -153134,79 +149016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [1207] = { [sym_identifier] = ACTIONS(3243), [anon_sym_SEMI] = ACTIONS(3245), [anon_sym_import] = ACTIONS(3243), @@ -153278,7 +149088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3245), [sym_string_start] = ACTIONS(3245), }, - [1255] = { + [1208] = { [ts_builtin_sym_end] = ACTIONS(3247), [sym_identifier] = ACTIONS(3249), [anon_sym_SEMI] = ACTIONS(3247), @@ -153350,231 +149160,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1209] = { + [sym_identifier] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_cimport] = ACTIONS(3251), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_print] = ACTIONS(3251), + [anon_sym_assert] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_del] = ACTIONS(3251), + [anon_sym_raise] = ACTIONS(3251), + [anon_sym_pass] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_def] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_nonlocal] = ACTIONS(3251), + [anon_sym_exec] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_not] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_lambda] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_None] = ACTIONS(3251), + [anon_sym_0x] = ACTIONS(3253), + [anon_sym_0X] = ACTIONS(3253), + [anon_sym_0o] = ACTIONS(3253), + [anon_sym_0O] = ACTIONS(3253), + [anon_sym_0b] = ACTIONS(3253), + [anon_sym_0B] = ACTIONS(3253), + [aux_sym_integer_token4] = ACTIONS(3251), + [sym_float] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_api] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_DEF] = ACTIONS(3251), + [anon_sym_IF] = ACTIONS(3251), + [anon_sym_cdef] = ACTIONS(3251), + [anon_sym_cpdef] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_ctypedef] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_packed] = ACTIONS(3251), + [anon_sym_inline] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3251), + [sym__dedent] = ACTIONS(3253), + [sym_string_start] = ACTIONS(3253), }, - [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), + [1210] = { + [sym_identifier] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_cimport] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_print] = ACTIONS(3255), + [anon_sym_assert] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_del] = ACTIONS(3255), + [anon_sym_raise] = ACTIONS(3255), + [anon_sym_pass] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_def] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_nonlocal] = ACTIONS(3255), + [anon_sym_exec] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [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(3255), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_lambda] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_None] = ACTIONS(3255), + [anon_sym_0x] = ACTIONS(3257), + [anon_sym_0X] = ACTIONS(3257), + [anon_sym_0o] = ACTIONS(3257), + [anon_sym_0O] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(3257), + [anon_sym_0B] = ACTIONS(3257), + [aux_sym_integer_token4] = ACTIONS(3255), + [sym_float] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_api] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3255), + [anon_sym_include] = ACTIONS(3255), + [anon_sym_DEF] = ACTIONS(3255), + [anon_sym_IF] = ACTIONS(3255), + [anon_sym_cdef] = ACTIONS(3255), + [anon_sym_cpdef] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_ctypedef] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_packed] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_sizeof] = ACTIONS(3255), + [sym__dedent] = ACTIONS(3257), + [sym_string_start] = ACTIONS(3257), }, - [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), + [1211] = { + [sym_identifier] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_cimport] = ACTIONS(3259), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [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_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(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(3259), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_lambda] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_None] = ACTIONS(3259), + [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(3259), + [sym_float] = ACTIONS(3261), + [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(3261), + [sym_string_start] = ACTIONS(3261), }, - [1259] = { - [ts_builtin_sym_end] = ACTIONS(3261), + [1212] = { [sym_identifier] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_SEMI] = ACTIONS(3265), [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_LPAREN] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), [anon_sym_print] = ACTIONS(3263), [anon_sym_assert] = ACTIONS(3263), [anon_sym_return] = ACTIONS(3263), @@ -153596,27 +149405,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), [anon_sym_lambda] = ACTIONS(3263), [anon_sym_yield] = ACTIONS(3263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), [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), + [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(3263), - [sym_float] = ACTIONS(3261), + [sym_float] = ACTIONS(3265), [anon_sym_await] = ACTIONS(3263), [anon_sym_api] = ACTIONS(3263), [sym_true] = ACTIONS(3263), @@ -153636,89 +149445,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3265), + [sym_string_start] = ACTIONS(3265), }, - [1261] = { - [ts_builtin_sym_end] = ACTIONS(3265), + [1213] = { [sym_identifier] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3269), [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_LPAREN] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), [anon_sym_print] = ACTIONS(3267), [anon_sym_assert] = ACTIONS(3267), [anon_sym_return] = ACTIONS(3267), @@ -153740,27 +149477,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), [anon_sym_lambda] = ACTIONS(3267), [anon_sym_yield] = ACTIONS(3267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), [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), + [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(3267), - [sym_float] = ACTIONS(3265), + [sym_float] = ACTIONS(3269), [anon_sym_await] = ACTIONS(3267), [anon_sym_api] = ACTIONS(3267), [sym_true] = ACTIONS(3267), @@ -153780,17 +149517,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3267), [anon_sym_readonly] = ACTIONS(3267), [anon_sym_sizeof] = ACTIONS(3267), - [sym_string_start] = ACTIONS(3265), + [sym__dedent] = ACTIONS(3269), + [sym_string_start] = ACTIONS(3269), }, - [1262] = { - [ts_builtin_sym_end] = ACTIONS(3269), + [1214] = { [sym_identifier] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3273), [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_LPAREN] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), [anon_sym_print] = ACTIONS(3271), [anon_sym_assert] = ACTIONS(3271), [anon_sym_return] = ACTIONS(3271), @@ -153812,27 +149549,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3271), - [anon_sym_AMP] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), [anon_sym_lambda] = ACTIONS(3271), [anon_sym_yield] = ACTIONS(3271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3273), [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), + [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(3271), - [sym_float] = ACTIONS(3269), + [sym_float] = ACTIONS(3273), [anon_sym_await] = ACTIONS(3271), [anon_sym_api] = ACTIONS(3271), [sym_true] = ACTIONS(3271), @@ -153852,17 +149589,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3271), [anon_sym_readonly] = ACTIONS(3271), [anon_sym_sizeof] = ACTIONS(3271), - [sym_string_start] = ACTIONS(3269), + [sym__dedent] = ACTIONS(3273), + [sym_string_start] = ACTIONS(3273), }, - [1263] = { - [ts_builtin_sym_end] = ACTIONS(3273), + [1215] = { [sym_identifier] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3277), [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_LPAREN] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), [anon_sym_print] = ACTIONS(3275), [anon_sym_assert] = ACTIONS(3275), [anon_sym_return] = ACTIONS(3275), @@ -153884,27 +149621,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3275), - [anon_sym_AMP] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), [anon_sym_lambda] = ACTIONS(3275), [anon_sym_yield] = ACTIONS(3275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), [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), + [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(3275), - [sym_float] = ACTIONS(3273), + [sym_float] = ACTIONS(3277), [anon_sym_await] = ACTIONS(3275), [anon_sym_api] = ACTIONS(3275), [sym_true] = ACTIONS(3275), @@ -153924,89 +149661,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3277), + [sym_string_start] = ACTIONS(3277), }, - [1265] = { - [ts_builtin_sym_end] = ACTIONS(3277), + [1216] = { [sym_identifier] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3281), [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_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), [anon_sym_print] = ACTIONS(3279), [anon_sym_assert] = ACTIONS(3279), [anon_sym_return] = ACTIONS(3279), @@ -154028,27 +149693,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), + [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(3277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), [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), + [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(3279), - [sym_float] = ACTIONS(3277), + [sym_float] = ACTIONS(3281), [anon_sym_await] = ACTIONS(3279), [anon_sym_api] = ACTIONS(3279), [sym_true] = ACTIONS(3279), @@ -154068,17 +149733,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3279), [anon_sym_readonly] = ACTIONS(3279), [anon_sym_sizeof] = ACTIONS(3279), - [sym_string_start] = ACTIONS(3277), + [sym__dedent] = ACTIONS(3281), + [sym_string_start] = ACTIONS(3281), }, - [1266] = { - [ts_builtin_sym_end] = ACTIONS(3281), + [1217] = { [sym_identifier] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3285), [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_LPAREN] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), [anon_sym_print] = ACTIONS(3283), [anon_sym_assert] = ACTIONS(3283), [anon_sym_return] = ACTIONS(3283), @@ -154100,27 +149765,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3283), - [anon_sym_AMP] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), [anon_sym_lambda] = ACTIONS(3283), [anon_sym_yield] = ACTIONS(3283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), [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), + [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(3283), - [sym_float] = ACTIONS(3281), + [sym_float] = ACTIONS(3285), [anon_sym_await] = ACTIONS(3283), [anon_sym_api] = ACTIONS(3283), [sym_true] = ACTIONS(3283), @@ -154140,89 +149805,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3285), + [sym_string_start] = ACTIONS(3285), }, - [1268] = { - [ts_builtin_sym_end] = ACTIONS(3285), + [1218] = { [sym_identifier] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3289), [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_LPAREN] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), [anon_sym_print] = ACTIONS(3287), [anon_sym_assert] = ACTIONS(3287), [anon_sym_return] = ACTIONS(3287), @@ -154244,27 +149837,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), + [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(3285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), [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), + [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(3287), - [sym_float] = ACTIONS(3285), + [sym_float] = ACTIONS(3289), [anon_sym_await] = ACTIONS(3287), [anon_sym_api] = ACTIONS(3287), [sym_true] = ACTIONS(3287), @@ -154284,17 +149877,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3287), [anon_sym_readonly] = ACTIONS(3287), [anon_sym_sizeof] = ACTIONS(3287), - [sym_string_start] = ACTIONS(3285), + [sym__dedent] = ACTIONS(3289), + [sym_string_start] = ACTIONS(3289), }, - [1269] = { - [ts_builtin_sym_end] = ACTIONS(3289), + [1219] = { [sym_identifier] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3293), [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_LPAREN] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), [anon_sym_print] = ACTIONS(3291), [anon_sym_assert] = ACTIONS(3291), [anon_sym_return] = ACTIONS(3291), @@ -154316,27 +149909,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3291), - [anon_sym_AMP] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), [anon_sym_lambda] = ACTIONS(3291), [anon_sym_yield] = ACTIONS(3291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), [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), + [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(3291), - [sym_float] = ACTIONS(3289), + [sym_float] = ACTIONS(3293), [anon_sym_await] = ACTIONS(3291), [anon_sym_api] = ACTIONS(3291), [sym_true] = ACTIONS(3291), @@ -154356,17 +149949,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3291), [anon_sym_readonly] = ACTIONS(3291), [anon_sym_sizeof] = ACTIONS(3291), - [sym_string_start] = ACTIONS(3289), + [sym__dedent] = ACTIONS(3293), + [sym_string_start] = ACTIONS(3293), }, - [1270] = { - [ts_builtin_sym_end] = ACTIONS(3293), + [1220] = { [sym_identifier] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3297), [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_LPAREN] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), [anon_sym_print] = ACTIONS(3295), [anon_sym_assert] = ACTIONS(3295), [anon_sym_return] = ACTIONS(3295), @@ -154388,27 +149981,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3295), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), [anon_sym_lambda] = ACTIONS(3295), [anon_sym_yield] = ACTIONS(3295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), [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), + [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(3295), - [sym_float] = ACTIONS(3293), + [sym_float] = ACTIONS(3297), [anon_sym_await] = ACTIONS(3295), [anon_sym_api] = ACTIONS(3295), [sym_true] = ACTIONS(3295), @@ -154428,17 +150021,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3295), [anon_sym_readonly] = ACTIONS(3295), [anon_sym_sizeof] = ACTIONS(3295), - [sym_string_start] = ACTIONS(3293), + [sym__dedent] = ACTIONS(3297), + [sym_string_start] = ACTIONS(3297), }, - [1271] = { - [ts_builtin_sym_end] = ACTIONS(3297), + [1221] = { [sym_identifier] = ACTIONS(3299), - [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3301), [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_LPAREN] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), [anon_sym_print] = ACTIONS(3299), [anon_sym_assert] = ACTIONS(3299), [anon_sym_return] = ACTIONS(3299), @@ -154460,27 +150053,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3299), - [anon_sym_AMP] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), [anon_sym_lambda] = ACTIONS(3299), [anon_sym_yield] = ACTIONS(3299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), [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), + [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(3299), - [sym_float] = ACTIONS(3297), + [sym_float] = ACTIONS(3301), [anon_sym_await] = ACTIONS(3299), [anon_sym_api] = ACTIONS(3299), [sym_true] = ACTIONS(3299), @@ -154500,89 +150093,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3301), + [sym_string_start] = ACTIONS(3301), }, - [1273] = { - [ts_builtin_sym_end] = ACTIONS(3301), + [1222] = { [sym_identifier] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3305), [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_LPAREN] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), [anon_sym_print] = ACTIONS(3303), [anon_sym_assert] = ACTIONS(3303), [anon_sym_return] = ACTIONS(3303), @@ -154604,27 +150125,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3303), - [anon_sym_AMP] = ACTIONS(3301), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), [anon_sym_lambda] = ACTIONS(3303), [anon_sym_yield] = ACTIONS(3303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), [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), + [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(3303), - [sym_float] = ACTIONS(3301), + [sym_float] = ACTIONS(3305), [anon_sym_await] = ACTIONS(3303), [anon_sym_api] = ACTIONS(3303), [sym_true] = ACTIONS(3303), @@ -154644,17 +150165,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3303), [anon_sym_readonly] = ACTIONS(3303), [anon_sym_sizeof] = ACTIONS(3303), - [sym_string_start] = ACTIONS(3301), + [sym__dedent] = ACTIONS(3305), + [sym_string_start] = ACTIONS(3305), }, - [1274] = { - [ts_builtin_sym_end] = ACTIONS(3305), + [1223] = { [sym_identifier] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3309), [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_LPAREN] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), [anon_sym_print] = ACTIONS(3307), [anon_sym_assert] = ACTIONS(3307), [anon_sym_return] = ACTIONS(3307), @@ -154676,27 +150197,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3307), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), [anon_sym_lambda] = ACTIONS(3307), [anon_sym_yield] = ACTIONS(3307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), [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), + [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(3307), - [sym_float] = ACTIONS(3305), + [sym_float] = ACTIONS(3309), [anon_sym_await] = ACTIONS(3307), [anon_sym_api] = ACTIONS(3307), [sym_true] = ACTIONS(3307), @@ -154716,17 +150237,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3307), [anon_sym_readonly] = ACTIONS(3307), [anon_sym_sizeof] = ACTIONS(3307), - [sym_string_start] = ACTIONS(3305), + [sym__dedent] = ACTIONS(3309), + [sym_string_start] = ACTIONS(3309), }, - [1275] = { - [ts_builtin_sym_end] = ACTIONS(3309), + [1224] = { [sym_identifier] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3313), [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_LPAREN] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), [anon_sym_print] = ACTIONS(3311), [anon_sym_assert] = ACTIONS(3311), [anon_sym_return] = ACTIONS(3311), @@ -154748,27 +150269,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3311), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), [anon_sym_lambda] = ACTIONS(3311), [anon_sym_yield] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), [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), + [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(3311), - [sym_float] = ACTIONS(3309), + [sym_float] = ACTIONS(3313), [anon_sym_await] = ACTIONS(3311), [anon_sym_api] = ACTIONS(3311), [sym_true] = ACTIONS(3311), @@ -154788,161 +150309,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3313), + [sym_string_start] = ACTIONS(3313), }, - [1278] = { - [ts_builtin_sym_end] = ACTIONS(3313), + [1225] = { [sym_identifier] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_SEMI] = ACTIONS(3317), [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_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), [anon_sym_print] = ACTIONS(3315), [anon_sym_assert] = ACTIONS(3315), [anon_sym_return] = ACTIONS(3315), @@ -154964,27 +150341,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3315), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), [anon_sym_lambda] = ACTIONS(3315), [anon_sym_yield] = ACTIONS(3315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), [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), + [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(3315), - [sym_float] = ACTIONS(3313), + [sym_float] = ACTIONS(3317), [anon_sym_await] = ACTIONS(3315), [anon_sym_api] = ACTIONS(3315), [sym_true] = ACTIONS(3315), @@ -155004,17 +150381,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3315), [anon_sym_readonly] = ACTIONS(3315), [anon_sym_sizeof] = ACTIONS(3315), - [sym_string_start] = ACTIONS(3313), + [sym__dedent] = ACTIONS(3317), + [sym_string_start] = ACTIONS(3317), }, - [1279] = { - [ts_builtin_sym_end] = ACTIONS(3317), + [1226] = { [sym_identifier] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3321), [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_LPAREN] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), [anon_sym_print] = ACTIONS(3319), [anon_sym_assert] = ACTIONS(3319), [anon_sym_return] = ACTIONS(3319), @@ -155036,27 +150413,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3319), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), [anon_sym_lambda] = ACTIONS(3319), [anon_sym_yield] = ACTIONS(3319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), [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), + [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(3319), - [sym_float] = ACTIONS(3317), + [sym_float] = ACTIONS(3321), [anon_sym_await] = ACTIONS(3319), [anon_sym_api] = ACTIONS(3319), [sym_true] = ACTIONS(3319), @@ -155076,17 +150453,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3319), [anon_sym_readonly] = ACTIONS(3319), [anon_sym_sizeof] = ACTIONS(3319), - [sym_string_start] = ACTIONS(3317), + [sym__dedent] = ACTIONS(3321), + [sym_string_start] = ACTIONS(3321), }, - [1280] = { - [ts_builtin_sym_end] = ACTIONS(3321), + [1227] = { [sym_identifier] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3325), [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_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), [anon_sym_print] = ACTIONS(3323), [anon_sym_assert] = ACTIONS(3323), [anon_sym_return] = ACTIONS(3323), @@ -155108,27 +150485,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3323), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), [anon_sym_lambda] = ACTIONS(3323), [anon_sym_yield] = ACTIONS(3323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), [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), + [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(3323), - [sym_float] = ACTIONS(3321), + [sym_float] = ACTIONS(3325), [anon_sym_await] = ACTIONS(3323), [anon_sym_api] = ACTIONS(3323), [sym_true] = ACTIONS(3323), @@ -155148,89 +150525,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3325), + [sym_string_start] = ACTIONS(3325), }, - [1282] = { - [ts_builtin_sym_end] = ACTIONS(3325), + [1228] = { [sym_identifier] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3329), [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_LPAREN] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), [anon_sym_print] = ACTIONS(3327), [anon_sym_assert] = ACTIONS(3327), [anon_sym_return] = ACTIONS(3327), @@ -155252,27 +150557,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), [anon_sym_lambda] = ACTIONS(3327), [anon_sym_yield] = ACTIONS(3327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), [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), + [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(3327), - [sym_float] = ACTIONS(3325), + [sym_float] = ACTIONS(3329), [anon_sym_await] = ACTIONS(3327), [anon_sym_api] = ACTIONS(3327), [sym_true] = ACTIONS(3327), @@ -155292,17 +150597,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3327), [anon_sym_readonly] = ACTIONS(3327), [anon_sym_sizeof] = ACTIONS(3327), - [sym_string_start] = ACTIONS(3325), + [sym__dedent] = ACTIONS(3329), + [sym_string_start] = ACTIONS(3329), }, - [1283] = { - [ts_builtin_sym_end] = ACTIONS(3329), + [1229] = { [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3333), [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_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), [anon_sym_print] = ACTIONS(3331), [anon_sym_assert] = ACTIONS(3331), [anon_sym_return] = ACTIONS(3331), @@ -155324,27 +150629,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), + [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(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), [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), + [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(3331), - [sym_float] = ACTIONS(3329), + [sym_float] = ACTIONS(3333), [anon_sym_await] = ACTIONS(3331), [anon_sym_api] = ACTIONS(3331), [sym_true] = ACTIONS(3331), @@ -155364,17 +150669,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3331), [anon_sym_readonly] = ACTIONS(3331), [anon_sym_sizeof] = ACTIONS(3331), - [sym_string_start] = ACTIONS(3329), + [sym__dedent] = ACTIONS(3333), + [sym_string_start] = ACTIONS(3333), }, - [1284] = { - [ts_builtin_sym_end] = ACTIONS(3333), + [1230] = { [sym_identifier] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3337), [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_LPAREN] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), [anon_sym_print] = ACTIONS(3335), [anon_sym_assert] = ACTIONS(3335), [anon_sym_return] = ACTIONS(3335), @@ -155396,27 +150701,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), [anon_sym_lambda] = ACTIONS(3335), [anon_sym_yield] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), [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), + [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(3335), - [sym_float] = ACTIONS(3333), + [sym_float] = ACTIONS(3337), [anon_sym_await] = ACTIONS(3335), [anon_sym_api] = ACTIONS(3335), [sym_true] = ACTIONS(3335), @@ -155436,17 +150741,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3335), [anon_sym_readonly] = ACTIONS(3335), [anon_sym_sizeof] = ACTIONS(3335), - [sym_string_start] = ACTIONS(3333), + [sym__dedent] = ACTIONS(3337), + [sym_string_start] = ACTIONS(3337), }, - [1285] = { - [ts_builtin_sym_end] = ACTIONS(3337), + [1231] = { [sym_identifier] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3341), [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_LPAREN] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), [anon_sym_print] = ACTIONS(3339), [anon_sym_assert] = ACTIONS(3339), [anon_sym_return] = ACTIONS(3339), @@ -155468,27 +150773,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), [anon_sym_lambda] = ACTIONS(3339), [anon_sym_yield] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), [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), + [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(3339), - [sym_float] = ACTIONS(3337), + [sym_float] = ACTIONS(3341), [anon_sym_await] = ACTIONS(3339), [anon_sym_api] = ACTIONS(3339), [sym_true] = ACTIONS(3339), @@ -155508,17 +150813,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3339), [anon_sym_readonly] = ACTIONS(3339), [anon_sym_sizeof] = ACTIONS(3339), - [sym_string_start] = ACTIONS(3337), + [sym__dedent] = ACTIONS(3341), + [sym_string_start] = ACTIONS(3341), }, - [1286] = { - [ts_builtin_sym_end] = ACTIONS(3341), + [1232] = { [sym_identifier] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3345), [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_LPAREN] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), [anon_sym_print] = ACTIONS(3343), [anon_sym_assert] = ACTIONS(3343), [anon_sym_return] = ACTIONS(3343), @@ -155540,27 +150845,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3343), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), [anon_sym_lambda] = ACTIONS(3343), [anon_sym_yield] = ACTIONS(3343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), [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), + [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(3343), - [sym_float] = ACTIONS(3341), + [sym_float] = ACTIONS(3345), [anon_sym_await] = ACTIONS(3343), [anon_sym_api] = ACTIONS(3343), [sym_true] = ACTIONS(3343), @@ -155580,89 +150885,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3345), + [sym_string_start] = ACTIONS(3345), }, - [1288] = { - [ts_builtin_sym_end] = ACTIONS(3345), + [1233] = { [sym_identifier] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3349), [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_LPAREN] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), [anon_sym_print] = ACTIONS(3347), [anon_sym_assert] = ACTIONS(3347), [anon_sym_return] = ACTIONS(3347), @@ -155684,27 +150917,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3347), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), [anon_sym_lambda] = ACTIONS(3347), [anon_sym_yield] = ACTIONS(3347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), [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), + [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(3347), - [sym_float] = ACTIONS(3345), + [sym_float] = ACTIONS(3349), [anon_sym_await] = ACTIONS(3347), [anon_sym_api] = ACTIONS(3347), [sym_true] = ACTIONS(3347), @@ -155724,89 +150957,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3349), + [sym_string_start] = ACTIONS(3349), }, - [1290] = { - [ts_builtin_sym_end] = ACTIONS(3349), + [1234] = { [sym_identifier] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3353), [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_LPAREN] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3353), [anon_sym_print] = ACTIONS(3351), [anon_sym_assert] = ACTIONS(3351), [anon_sym_return] = ACTIONS(3351), @@ -155828,27 +150989,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3351), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), [anon_sym_lambda] = ACTIONS(3351), [anon_sym_yield] = ACTIONS(3351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), [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), + [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(3351), - [sym_float] = ACTIONS(3349), + [sym_float] = ACTIONS(3353), [anon_sym_await] = ACTIONS(3351), [anon_sym_api] = ACTIONS(3351), [sym_true] = ACTIONS(3351), @@ -155868,89 +151029,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3353), + [sym_string_start] = ACTIONS(3353), }, - [1292] = { - [ts_builtin_sym_end] = ACTIONS(3353), + [1235] = { [sym_identifier] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3357), [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_LPAREN] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3357), [anon_sym_print] = ACTIONS(3355), [anon_sym_assert] = ACTIONS(3355), [anon_sym_return] = ACTIONS(3355), @@ -155972,27 +151061,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3355), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), [anon_sym_lambda] = ACTIONS(3355), [anon_sym_yield] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), [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), + [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(3355), - [sym_float] = ACTIONS(3353), + [sym_float] = ACTIONS(3357), [anon_sym_await] = ACTIONS(3355), [anon_sym_api] = ACTIONS(3355), [sym_true] = ACTIONS(3355), @@ -156012,89 +151101,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3357), + [sym_string_start] = ACTIONS(3357), }, - [1294] = { - [ts_builtin_sym_end] = ACTIONS(3357), + [1236] = { [sym_identifier] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3361), [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_LPAREN] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3361), [anon_sym_print] = ACTIONS(3359), [anon_sym_assert] = ACTIONS(3359), [anon_sym_return] = ACTIONS(3359), @@ -156116,27 +151133,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3359), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), [anon_sym_lambda] = ACTIONS(3359), [anon_sym_yield] = ACTIONS(3359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), [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), + [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(3359), - [sym_float] = ACTIONS(3357), + [sym_float] = ACTIONS(3361), [anon_sym_await] = ACTIONS(3359), [anon_sym_api] = ACTIONS(3359), [sym_true] = ACTIONS(3359), @@ -156156,233 +151173,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3361), + [sym_string_start] = ACTIONS(3361), }, - [1298] = { - [ts_builtin_sym_end] = ACTIONS(3361), + [1237] = { [sym_identifier] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3365), [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_LPAREN] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3365), [anon_sym_print] = ACTIONS(3363), [anon_sym_assert] = ACTIONS(3363), [anon_sym_return] = ACTIONS(3363), @@ -156404,27 +151205,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3363), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), [anon_sym_lambda] = ACTIONS(3363), [anon_sym_yield] = ACTIONS(3363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), [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), + [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(3363), - [sym_float] = ACTIONS(3361), + [sym_float] = ACTIONS(3365), [anon_sym_await] = ACTIONS(3363), [anon_sym_api] = ACTIONS(3363), [sym_true] = ACTIONS(3363), @@ -156444,233 +151245,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3365), + [sym_string_start] = ACTIONS(3365), }, - [1302] = { - [ts_builtin_sym_end] = ACTIONS(3365), + [1238] = { [sym_identifier] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3369), [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_LPAREN] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3369), [anon_sym_print] = ACTIONS(3367), [anon_sym_assert] = ACTIONS(3367), [anon_sym_return] = ACTIONS(3367), @@ -156692,27 +151277,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3367), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), [anon_sym_lambda] = ACTIONS(3367), [anon_sym_yield] = ACTIONS(3367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), [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), + [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(3367), - [sym_float] = ACTIONS(3365), + [sym_float] = ACTIONS(3369), [anon_sym_await] = ACTIONS(3367), [anon_sym_api] = ACTIONS(3367), [sym_true] = ACTIONS(3367), @@ -156732,17 +151317,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3367), [anon_sym_readonly] = ACTIONS(3367), [anon_sym_sizeof] = ACTIONS(3367), - [sym_string_start] = ACTIONS(3365), + [sym__dedent] = ACTIONS(3369), + [sym_string_start] = ACTIONS(3369), }, - [1303] = { - [ts_builtin_sym_end] = ACTIONS(3369), + [1239] = { [sym_identifier] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3373), [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_LPAREN] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3373), [anon_sym_print] = ACTIONS(3371), [anon_sym_assert] = ACTIONS(3371), [anon_sym_return] = ACTIONS(3371), @@ -156764,27 +151349,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3371), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), [anon_sym_lambda] = ACTIONS(3371), [anon_sym_yield] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), [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), + [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(3371), - [sym_float] = ACTIONS(3369), + [sym_float] = ACTIONS(3373), [anon_sym_await] = ACTIONS(3371), [anon_sym_api] = ACTIONS(3371), [sym_true] = ACTIONS(3371), @@ -156804,233 +151389,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3373), + [sym_string_start] = ACTIONS(3373), }, - [1307] = { - [ts_builtin_sym_end] = ACTIONS(3373), + [1240] = { [sym_identifier] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3377), [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_LPAREN] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), [anon_sym_print] = ACTIONS(3375), [anon_sym_assert] = ACTIONS(3375), [anon_sym_return] = ACTIONS(3375), @@ -157052,27 +151421,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3375), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), [anon_sym_lambda] = ACTIONS(3375), [anon_sym_yield] = ACTIONS(3375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), [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), + [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(3375), - [sym_float] = ACTIONS(3373), + [sym_float] = ACTIONS(3377), [anon_sym_await] = ACTIONS(3375), [anon_sym_api] = ACTIONS(3375), [sym_true] = ACTIONS(3375), @@ -157092,153 +151461,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__dedent] = ACTIONS(3377), [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), + [1241] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5212), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [1310] = { + [1242] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5235), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1243] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5221), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1244] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5104), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1245] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4612), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1246] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5121), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1247] = { [ts_builtin_sym_end] = ACTIONS(3381), [sym_identifier] = ACTIONS(3383), [anon_sym_SEMI] = ACTIONS(3381), @@ -157310,1778 +151968,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1248] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [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), - }, - [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -159100,8 +152030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -159110,634 +152040,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1249] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5084), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [1250] = { + [ts_builtin_sym_end] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3385), + [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_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), + [anon_sym_0x] = ACTIONS(3385), + [anon_sym_0X] = ACTIONS(3385), + [anon_sym_0o] = ACTIONS(3385), + [anon_sym_0O] = ACTIONS(3385), + [anon_sym_0b] = ACTIONS(3385), + [anon_sym_0B] = ACTIONS(3385), + [aux_sym_integer_token4] = 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), }, - [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), + [1251] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5283), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -159748,140 +152246,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1252] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_cimport] = ACTIONS(3391), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3389), + [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_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(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3389), + [anon_sym_None] = ACTIONS(3391), + [anon_sym_0x] = ACTIONS(3389), + [anon_sym_0X] = ACTIONS(3389), + [anon_sym_0o] = ACTIONS(3389), + [anon_sym_0O] = ACTIONS(3389), + [anon_sym_0b] = ACTIONS(3389), + [anon_sym_0B] = ACTIONS(3389), + [aux_sym_integer_token4] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [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(3389), + }, + [1253] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4240), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1254] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1255] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5153), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -159892,68 +152534,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1256] = { + [sym_identifier] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_cimport] = ACTIONS(3399), + [anon_sym_from] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_print] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_del] = ACTIONS(3399), + [anon_sym_raise] = ACTIONS(3399), + [anon_sym_pass] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_def] = ACTIONS(3399), + [anon_sym_global] = ACTIONS(3399), + [anon_sym_nonlocal] = ACTIONS(3399), + [anon_sym_exec] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_lambda] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), + [anon_sym_None] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3401), + [anon_sym_0X] = ACTIONS(3401), + [anon_sym_0o] = ACTIONS(3401), + [anon_sym_0O] = ACTIONS(3401), + [anon_sym_0b] = ACTIONS(3401), + [anon_sym_0B] = ACTIONS(3401), + [aux_sym_integer_token4] = ACTIONS(3399), + [sym_float] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_api] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3399), + [anon_sym_include] = ACTIONS(3399), + [anon_sym_DEF] = ACTIONS(3399), + [anon_sym_IF] = ACTIONS(3399), + [anon_sym_cdef] = ACTIONS(3399), + [anon_sym_cpdef] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_ctypedef] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_packed] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_sizeof] = ACTIONS(3399), + [sym__dedent] = ACTIONS(3401), + [sym_string_start] = ACTIONS(3401), + }, + [1257] = { + [sym_identifier] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_cimport] = ACTIONS(3403), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_print] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_del] = ACTIONS(3403), + [anon_sym_raise] = ACTIONS(3403), + [anon_sym_pass] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_def] = ACTIONS(3403), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_nonlocal] = ACTIONS(3403), + [anon_sym_exec] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_lambda] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), + [anon_sym_None] = ACTIONS(3403), + [anon_sym_0x] = ACTIONS(3405), + [anon_sym_0X] = ACTIONS(3405), + [anon_sym_0o] = ACTIONS(3405), + [anon_sym_0O] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3405), + [anon_sym_0B] = ACTIONS(3405), + [aux_sym_integer_token4] = ACTIONS(3403), + [sym_float] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_api] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3403), + [anon_sym_include] = ACTIONS(3403), + [anon_sym_DEF] = ACTIONS(3403), + [anon_sym_IF] = ACTIONS(3403), + [anon_sym_cdef] = ACTIONS(3403), + [anon_sym_cpdef] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_ctypedef] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_packed] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3403), + [sym__dedent] = ACTIONS(3405), + [sym_string_start] = ACTIONS(3405), + }, + [1258] = { + [sym_identifier] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3409), + [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_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), + [anon_sym_0x] = ACTIONS(3409), + [anon_sym_0X] = ACTIONS(3409), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0O] = ACTIONS(3409), + [anon_sym_0b] = ACTIONS(3409), + [anon_sym_0B] = ACTIONS(3409), + [aux_sym_integer_token4] = 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), + }, + [1259] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5495), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1260] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4956), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -159964,356 +152894,716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1261] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4252), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1262] = { + [sym_identifier] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_cimport] = ACTIONS(3411), + [anon_sym_from] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_STAR] = ACTIONS(3413), + [anon_sym_print] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_del] = ACTIONS(3411), + [anon_sym_raise] = ACTIONS(3411), + [anon_sym_pass] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_def] = ACTIONS(3411), + [anon_sym_global] = ACTIONS(3411), + [anon_sym_nonlocal] = ACTIONS(3411), + [anon_sym_exec] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_not] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_lambda] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), + [anon_sym_None] = ACTIONS(3411), + [anon_sym_0x] = ACTIONS(3413), + [anon_sym_0X] = ACTIONS(3413), + [anon_sym_0o] = ACTIONS(3413), + [anon_sym_0O] = ACTIONS(3413), + [anon_sym_0b] = ACTIONS(3413), + [anon_sym_0B] = ACTIONS(3413), + [aux_sym_integer_token4] = ACTIONS(3411), + [sym_float] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_api] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3411), + [anon_sym_include] = ACTIONS(3411), + [anon_sym_DEF] = ACTIONS(3411), + [anon_sym_IF] = ACTIONS(3411), + [anon_sym_cdef] = ACTIONS(3411), + [anon_sym_cpdef] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_ctypedef] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_packed] = ACTIONS(3411), + [anon_sym_inline] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3411), + [sym__dedent] = ACTIONS(3413), + [sym_string_start] = ACTIONS(3413), }, - [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), + [1263] = { + [sym_identifier] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_cimport] = ACTIONS(3415), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_print] = ACTIONS(3415), + [anon_sym_assert] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_del] = ACTIONS(3415), + [anon_sym_raise] = ACTIONS(3415), + [anon_sym_pass] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_match] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_def] = ACTIONS(3415), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_nonlocal] = ACTIONS(3415), + [anon_sym_exec] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_lambda] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), + [anon_sym_None] = ACTIONS(3415), + [anon_sym_0x] = ACTIONS(3417), + [anon_sym_0X] = ACTIONS(3417), + [anon_sym_0o] = ACTIONS(3417), + [anon_sym_0O] = ACTIONS(3417), + [anon_sym_0b] = ACTIONS(3417), + [anon_sym_0B] = ACTIONS(3417), + [aux_sym_integer_token4] = ACTIONS(3415), + [sym_float] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_api] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3415), + [anon_sym_include] = ACTIONS(3415), + [anon_sym_DEF] = ACTIONS(3415), + [anon_sym_IF] = ACTIONS(3415), + [anon_sym_cdef] = ACTIONS(3415), + [anon_sym_cpdef] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_ctypedef] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_packed] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3415), + [sym__dedent] = ACTIONS(3417), + [sym_string_start] = ACTIONS(3417), }, - [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), + [1264] = { + [sym_identifier] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_cimport] = ACTIONS(3419), + [anon_sym_from] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_print] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_del] = ACTIONS(3419), + [anon_sym_raise] = ACTIONS(3419), + [anon_sym_pass] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_def] = ACTIONS(3419), + [anon_sym_global] = ACTIONS(3419), + [anon_sym_nonlocal] = ACTIONS(3419), + [anon_sym_exec] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_lambda] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), + [anon_sym_None] = ACTIONS(3419), + [anon_sym_0x] = ACTIONS(3421), + [anon_sym_0X] = ACTIONS(3421), + [anon_sym_0o] = ACTIONS(3421), + [anon_sym_0O] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3421), + [anon_sym_0B] = ACTIONS(3421), + [aux_sym_integer_token4] = ACTIONS(3419), + [sym_float] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_api] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3419), + [anon_sym_include] = ACTIONS(3419), + [anon_sym_DEF] = ACTIONS(3419), + [anon_sym_IF] = ACTIONS(3419), + [anon_sym_cdef] = ACTIONS(3419), + [anon_sym_cpdef] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_ctypedef] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_packed] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_sizeof] = ACTIONS(3419), + [sym__dedent] = ACTIONS(3421), + [sym_string_start] = ACTIONS(3421), }, - [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), + [1265] = { + [sym_identifier] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_cimport] = ACTIONS(3423), + [anon_sym_from] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_print] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_del] = ACTIONS(3423), + [anon_sym_raise] = ACTIONS(3423), + [anon_sym_pass] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_def] = ACTIONS(3423), + [anon_sym_global] = ACTIONS(3423), + [anon_sym_nonlocal] = ACTIONS(3423), + [anon_sym_exec] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_lambda] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), + [anon_sym_None] = ACTIONS(3423), + [anon_sym_0x] = ACTIONS(3425), + [anon_sym_0X] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0O] = ACTIONS(3425), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0B] = ACTIONS(3425), + [aux_sym_integer_token4] = ACTIONS(3423), + [sym_float] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_api] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3423), + [anon_sym_include] = ACTIONS(3423), + [anon_sym_DEF] = ACTIONS(3423), + [anon_sym_IF] = ACTIONS(3423), + [anon_sym_cdef] = ACTIONS(3423), + [anon_sym_cpdef] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_ctypedef] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_packed] = ACTIONS(3423), + [anon_sym_inline] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_sizeof] = ACTIONS(3423), + [sym__dedent] = ACTIONS(3425), + [sym_string_start] = ACTIONS(3425), + }, + [1266] = { + [sym_identifier] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_cimport] = ACTIONS(3427), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_print] = ACTIONS(3427), + [anon_sym_assert] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_del] = ACTIONS(3427), + [anon_sym_raise] = ACTIONS(3427), + [anon_sym_pass] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_match] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_def] = ACTIONS(3427), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_nonlocal] = ACTIONS(3427), + [anon_sym_exec] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [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(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_lambda] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), + [anon_sym_None] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3429), + [anon_sym_0X] = ACTIONS(3429), + [anon_sym_0o] = ACTIONS(3429), + [anon_sym_0O] = ACTIONS(3429), + [anon_sym_0b] = ACTIONS(3429), + [anon_sym_0B] = ACTIONS(3429), + [aux_sym_integer_token4] = ACTIONS(3427), + [sym_float] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_api] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3427), + [anon_sym_include] = ACTIONS(3427), + [anon_sym_DEF] = ACTIONS(3427), + [anon_sym_IF] = ACTIONS(3427), + [anon_sym_cdef] = ACTIONS(3427), + [anon_sym_cpdef] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_ctypedef] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_packed] = ACTIONS(3427), + [anon_sym_inline] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3427), + [sym__dedent] = ACTIONS(3429), + [sym_string_start] = ACTIONS(3429), + }, + [1267] = { + [sym_identifier] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_cimport] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_STAR] = ACTIONS(3433), + [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_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(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_lambda] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), + [anon_sym_None] = ACTIONS(3431), + [anon_sym_0x] = ACTIONS(3433), + [anon_sym_0X] = ACTIONS(3433), + [anon_sym_0o] = ACTIONS(3433), + [anon_sym_0O] = ACTIONS(3433), + [anon_sym_0b] = ACTIONS(3433), + [anon_sym_0B] = ACTIONS(3433), + [aux_sym_integer_token4] = ACTIONS(3431), + [sym_float] = ACTIONS(3433), + [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(3433), + [sym_string_start] = ACTIONS(3433), + }, + [1268] = { + [sym_identifier] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_cimport] = ACTIONS(3435), + [anon_sym_from] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3437), + [anon_sym_print] = ACTIONS(3435), + [anon_sym_assert] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_del] = ACTIONS(3435), + [anon_sym_raise] = ACTIONS(3435), + [anon_sym_pass] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_match] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_def] = ACTIONS(3435), + [anon_sym_global] = ACTIONS(3435), + [anon_sym_nonlocal] = ACTIONS(3435), + [anon_sym_exec] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_lambda] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), + [anon_sym_None] = ACTIONS(3435), + [anon_sym_0x] = ACTIONS(3437), + [anon_sym_0X] = ACTIONS(3437), + [anon_sym_0o] = ACTIONS(3437), + [anon_sym_0O] = ACTIONS(3437), + [anon_sym_0b] = ACTIONS(3437), + [anon_sym_0B] = ACTIONS(3437), + [aux_sym_integer_token4] = ACTIONS(3435), + [sym_float] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_api] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3435), + [anon_sym_include] = ACTIONS(3435), + [anon_sym_DEF] = ACTIONS(3435), + [anon_sym_IF] = ACTIONS(3435), + [anon_sym_cdef] = ACTIONS(3435), + [anon_sym_cpdef] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_ctypedef] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_packed] = ACTIONS(3435), + [anon_sym_inline] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_sizeof] = ACTIONS(3435), + [sym__dedent] = ACTIONS(3437), + [sym_string_start] = ACTIONS(3437), + }, + [1269] = { + [sym_identifier] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_cimport] = ACTIONS(3439), + [anon_sym_from] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_print] = ACTIONS(3439), + [anon_sym_assert] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_del] = ACTIONS(3439), + [anon_sym_raise] = ACTIONS(3439), + [anon_sym_pass] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_def] = ACTIONS(3439), + [anon_sym_global] = ACTIONS(3439), + [anon_sym_nonlocal] = ACTIONS(3439), + [anon_sym_exec] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_lambda] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), + [anon_sym_None] = ACTIONS(3439), + [anon_sym_0x] = ACTIONS(3441), + [anon_sym_0X] = ACTIONS(3441), + [anon_sym_0o] = ACTIONS(3441), + [anon_sym_0O] = ACTIONS(3441), + [anon_sym_0b] = ACTIONS(3441), + [anon_sym_0B] = ACTIONS(3441), + [aux_sym_integer_token4] = ACTIONS(3439), + [sym_float] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_api] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3439), + [anon_sym_include] = ACTIONS(3439), + [anon_sym_DEF] = ACTIONS(3439), + [anon_sym_IF] = ACTIONS(3439), + [anon_sym_cdef] = ACTIONS(3439), + [anon_sym_cpdef] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_ctypedef] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_packed] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_sizeof] = ACTIONS(3439), + [sym__dedent] = ACTIONS(3441), + [sym_string_start] = ACTIONS(3441), + }, + [1270] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5101), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -160324,4345 +153614,1536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1271] = { + [sym_identifier] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_cimport] = ACTIONS(3443), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_print] = ACTIONS(3443), + [anon_sym_assert] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_del] = ACTIONS(3443), + [anon_sym_raise] = ACTIONS(3443), + [anon_sym_pass] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_match] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_def] = ACTIONS(3443), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_nonlocal] = ACTIONS(3443), + [anon_sym_exec] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_lambda] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3445), + [anon_sym_None] = ACTIONS(3443), + [anon_sym_0x] = ACTIONS(3445), + [anon_sym_0X] = ACTIONS(3445), + [anon_sym_0o] = ACTIONS(3445), + [anon_sym_0O] = ACTIONS(3445), + [anon_sym_0b] = ACTIONS(3445), + [anon_sym_0B] = ACTIONS(3445), + [aux_sym_integer_token4] = ACTIONS(3443), + [sym_float] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_api] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3443), + [anon_sym_include] = ACTIONS(3443), + [anon_sym_DEF] = ACTIONS(3443), + [anon_sym_IF] = ACTIONS(3443), + [anon_sym_cdef] = ACTIONS(3443), + [anon_sym_cpdef] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_ctypedef] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_packed] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_sizeof] = ACTIONS(3443), + [sym__dedent] = ACTIONS(3445), + [sym_string_start] = ACTIONS(3445), }, - [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), + [1272] = { + [sym_identifier] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_cimport] = ACTIONS(3447), + [anon_sym_from] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_print] = ACTIONS(3447), + [anon_sym_assert] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_del] = ACTIONS(3447), + [anon_sym_raise] = ACTIONS(3447), + [anon_sym_pass] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_match] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_def] = ACTIONS(3447), + [anon_sym_global] = ACTIONS(3447), + [anon_sym_nonlocal] = ACTIONS(3447), + [anon_sym_exec] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_lambda] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3449), + [anon_sym_None] = ACTIONS(3447), + [anon_sym_0x] = ACTIONS(3449), + [anon_sym_0X] = ACTIONS(3449), + [anon_sym_0o] = ACTIONS(3449), + [anon_sym_0O] = ACTIONS(3449), + [anon_sym_0b] = ACTIONS(3449), + [anon_sym_0B] = ACTIONS(3449), + [aux_sym_integer_token4] = ACTIONS(3447), + [sym_float] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_api] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3447), + [anon_sym_include] = ACTIONS(3447), + [anon_sym_DEF] = ACTIONS(3447), + [anon_sym_IF] = ACTIONS(3447), + [anon_sym_cdef] = ACTIONS(3447), + [anon_sym_cpdef] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_ctypedef] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_packed] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_sizeof] = ACTIONS(3447), + [sym__dedent] = ACTIONS(3449), + [sym_string_start] = ACTIONS(3449), }, - [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), + [1273] = { + [sym_identifier] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_cimport] = ACTIONS(3451), + [anon_sym_from] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_print] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_del] = ACTIONS(3451), + [anon_sym_raise] = ACTIONS(3451), + [anon_sym_pass] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_def] = ACTIONS(3451), + [anon_sym_global] = ACTIONS(3451), + [anon_sym_nonlocal] = ACTIONS(3451), + [anon_sym_exec] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_AT] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_lambda] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [anon_sym_None] = ACTIONS(3451), + [anon_sym_0x] = ACTIONS(3453), + [anon_sym_0X] = ACTIONS(3453), + [anon_sym_0o] = ACTIONS(3453), + [anon_sym_0O] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3453), + [anon_sym_0B] = ACTIONS(3453), + [aux_sym_integer_token4] = ACTIONS(3451), + [sym_float] = ACTIONS(3453), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_api] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3451), + [anon_sym_include] = ACTIONS(3451), + [anon_sym_DEF] = ACTIONS(3451), + [anon_sym_IF] = ACTIONS(3451), + [anon_sym_cdef] = ACTIONS(3451), + [anon_sym_cpdef] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_ctypedef] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_packed] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(3451), + [sym__dedent] = ACTIONS(3453), + [sym_string_start] = ACTIONS(3453), }, - [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), + [1274] = { + [sym_identifier] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3003), + [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_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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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), }, - [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), + [1275] = { + [sym_identifier] = ACTIONS(3033), + [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_import] = ACTIONS(3033), + [anon_sym_cimport] = ACTIONS(3033), + [anon_sym_from] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_print] = ACTIONS(3033), + [anon_sym_assert] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3033), + [anon_sym_del] = ACTIONS(3033), + [anon_sym_raise] = ACTIONS(3033), + [anon_sym_pass] = ACTIONS(3033), + [anon_sym_break] = ACTIONS(3033), + [anon_sym_continue] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_match] = ACTIONS(3033), + [anon_sym_async] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3033), + [anon_sym_while] = ACTIONS(3033), + [anon_sym_try] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3033), + [anon_sym_def] = ACTIONS(3033), + [anon_sym_global] = ACTIONS(3033), + [anon_sym_nonlocal] = ACTIONS(3033), + [anon_sym_exec] = ACTIONS(3033), + [anon_sym_type] = ACTIONS(3033), + [anon_sym_class] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_AT] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_lambda] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), + [anon_sym_None] = ACTIONS(3033), + [anon_sym_0x] = ACTIONS(3031), + [anon_sym_0X] = ACTIONS(3031), + [anon_sym_0o] = ACTIONS(3031), + [anon_sym_0O] = ACTIONS(3031), + [anon_sym_0b] = ACTIONS(3031), + [anon_sym_0B] = ACTIONS(3031), + [aux_sym_integer_token4] = ACTIONS(3033), + [sym_float] = ACTIONS(3031), + [anon_sym_await] = ACTIONS(3033), + [anon_sym_api] = ACTIONS(3033), + [sym_true] = ACTIONS(3033), + [sym_false] = ACTIONS(3033), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3033), + [anon_sym_include] = ACTIONS(3033), + [anon_sym_DEF] = ACTIONS(3033), + [anon_sym_IF] = ACTIONS(3033), + [anon_sym_cdef] = ACTIONS(3033), + [anon_sym_cpdef] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_ctypedef] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_packed] = ACTIONS(3033), + [anon_sym_inline] = ACTIONS(3033), + [anon_sym_readonly] = ACTIONS(3033), + [anon_sym_sizeof] = ACTIONS(3033), + [sym__dedent] = ACTIONS(3031), + [sym_string_start] = ACTIONS(3031), }, - [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), + [1276] = { + [sym_identifier] = ACTIONS(3037), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_cimport] = ACTIONS(3037), + [anon_sym_from] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_print] = ACTIONS(3037), + [anon_sym_assert] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_del] = ACTIONS(3037), + [anon_sym_raise] = ACTIONS(3037), + [anon_sym_pass] = ACTIONS(3037), + [anon_sym_break] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3037), + [anon_sym_async] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3037), + [anon_sym_def] = ACTIONS(3037), + [anon_sym_global] = ACTIONS(3037), + [anon_sym_nonlocal] = ACTIONS(3037), + [anon_sym_exec] = ACTIONS(3037), + [anon_sym_type] = ACTIONS(3037), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_AT] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_not] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_lambda] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_None] = ACTIONS(3037), + [anon_sym_0x] = ACTIONS(3035), + [anon_sym_0X] = ACTIONS(3035), + [anon_sym_0o] = ACTIONS(3035), + [anon_sym_0O] = ACTIONS(3035), + [anon_sym_0b] = ACTIONS(3035), + [anon_sym_0B] = ACTIONS(3035), + [aux_sym_integer_token4] = ACTIONS(3037), + [sym_float] = ACTIONS(3035), + [anon_sym_await] = ACTIONS(3037), + [anon_sym_api] = ACTIONS(3037), + [sym_true] = ACTIONS(3037), + [sym_false] = ACTIONS(3037), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3037), + [anon_sym_include] = ACTIONS(3037), + [anon_sym_DEF] = ACTIONS(3037), + [anon_sym_IF] = ACTIONS(3037), + [anon_sym_cdef] = ACTIONS(3037), + [anon_sym_cpdef] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3037), + [anon_sym_ctypedef] = ACTIONS(3037), + [anon_sym_public] = ACTIONS(3037), + [anon_sym_packed] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3037), + [anon_sym_readonly] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3037), + [sym__dedent] = ACTIONS(3035), + [sym_string_start] = ACTIONS(3035), }, - [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), + [1277] = { + [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_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_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), + [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), }, - [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), + [1278] = { + [sym_identifier] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3143), + [anon_sym_cimport] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_del] = ACTIONS(3143), + [anon_sym_raise] = ACTIONS(3143), + [anon_sym_pass] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_def] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3143), + [anon_sym_nonlocal] = ACTIONS(3143), + [anon_sym_exec] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_lambda] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), + [anon_sym_None] = ACTIONS(3143), + [anon_sym_0x] = ACTIONS(3141), + [anon_sym_0X] = ACTIONS(3141), + [anon_sym_0o] = ACTIONS(3141), + [anon_sym_0O] = ACTIONS(3141), + [anon_sym_0b] = ACTIONS(3141), + [anon_sym_0B] = ACTIONS(3141), + [aux_sym_integer_token4] = ACTIONS(3143), + [sym_float] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3143), + [anon_sym_api] = ACTIONS(3143), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3143), + [anon_sym_include] = ACTIONS(3143), + [anon_sym_DEF] = ACTIONS(3143), + [anon_sym_IF] = ACTIONS(3143), + [anon_sym_cdef] = ACTIONS(3143), + [anon_sym_cpdef] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_ctypedef] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_packed] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym_readonly] = ACTIONS(3143), + [anon_sym_sizeof] = ACTIONS(3143), + [sym__dedent] = ACTIONS(3141), + [sym_string_start] = ACTIONS(3141), }, - [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), + [1279] = { + [sym_identifier] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_cimport] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_print] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_del] = ACTIONS(3147), + [anon_sym_raise] = ACTIONS(3147), + [anon_sym_pass] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_def] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_nonlocal] = ACTIONS(3147), + [anon_sym_exec] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_lambda] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_None] = ACTIONS(3147), + [anon_sym_0x] = ACTIONS(3145), + [anon_sym_0X] = ACTIONS(3145), + [anon_sym_0o] = ACTIONS(3145), + [anon_sym_0O] = ACTIONS(3145), + [anon_sym_0b] = ACTIONS(3145), + [anon_sym_0B] = ACTIONS(3145), + [aux_sym_integer_token4] = ACTIONS(3147), + [sym_float] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_api] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3147), + [anon_sym_include] = ACTIONS(3147), + [anon_sym_DEF] = ACTIONS(3147), + [anon_sym_IF] = ACTIONS(3147), + [anon_sym_cdef] = ACTIONS(3147), + [anon_sym_cpdef] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_ctypedef] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_packed] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3147), + [sym__dedent] = ACTIONS(3145), + [sym_string_start] = ACTIONS(3145), }, - [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), + [1280] = { + [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_new] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1881), + [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), }, - [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), + [1281] = { + [sym_identifier] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_cimport] = ACTIONS(3455), + [anon_sym_from] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_print] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_del] = ACTIONS(3455), + [anon_sym_raise] = ACTIONS(3455), + [anon_sym_pass] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_def] = ACTIONS(3455), + [anon_sym_global] = ACTIONS(3455), + [anon_sym_nonlocal] = ACTIONS(3455), + [anon_sym_exec] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3457), + [anon_sym_None] = ACTIONS(3455), + [anon_sym_0x] = ACTIONS(3457), + [anon_sym_0X] = ACTIONS(3457), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0O] = ACTIONS(3457), + [anon_sym_0b] = ACTIONS(3457), + [anon_sym_0B] = ACTIONS(3457), + [aux_sym_integer_token4] = ACTIONS(3455), + [sym_float] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_api] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3455), + [anon_sym_include] = ACTIONS(3455), + [anon_sym_DEF] = ACTIONS(3455), + [anon_sym_IF] = ACTIONS(3455), + [anon_sym_cdef] = ACTIONS(3455), + [anon_sym_cpdef] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_ctypedef] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_packed] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_sizeof] = ACTIONS(3455), + [sym__dedent] = ACTIONS(3457), + [sym_string_start] = ACTIONS(3457), }, - [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), + [1282] = { + [sym_identifier] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3461), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_cimport] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_print] = ACTIONS(3459), + [anon_sym_assert] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_del] = ACTIONS(3459), + [anon_sym_raise] = ACTIONS(3459), + [anon_sym_pass] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_match] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_def] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3459), + [anon_sym_nonlocal] = ACTIONS(3459), + [anon_sym_exec] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_AT] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_not] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_TILDE] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3461), + [anon_sym_None] = ACTIONS(3459), + [anon_sym_0x] = ACTIONS(3461), + [anon_sym_0X] = ACTIONS(3461), + [anon_sym_0o] = ACTIONS(3461), + [anon_sym_0O] = ACTIONS(3461), + [anon_sym_0b] = ACTIONS(3461), + [anon_sym_0B] = ACTIONS(3461), + [aux_sym_integer_token4] = ACTIONS(3459), + [sym_float] = ACTIONS(3461), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_api] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3459), + [anon_sym_include] = ACTIONS(3459), + [anon_sym_DEF] = ACTIONS(3459), + [anon_sym_IF] = ACTIONS(3459), + [anon_sym_cdef] = ACTIONS(3459), + [anon_sym_cpdef] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_ctypedef] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_packed] = ACTIONS(3459), + [anon_sym_inline] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_sizeof] = ACTIONS(3459), + [sym__dedent] = ACTIONS(3461), + [sym_string_start] = ACTIONS(3461), }, - [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), + [1283] = { + [sym_identifier] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3465), + [anon_sym_import] = ACTIONS(3463), + [anon_sym_cimport] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_print] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_del] = ACTIONS(3463), + [anon_sym_raise] = ACTIONS(3463), + [anon_sym_pass] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_async] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_def] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_nonlocal] = ACTIONS(3463), + [anon_sym_exec] = ACTIONS(3463), + [anon_sym_type] = ACTIONS(3463), + [anon_sym_class] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_AT] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3465), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_lambda] = ACTIONS(3463), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3465), + [anon_sym_None] = ACTIONS(3463), + [anon_sym_0x] = ACTIONS(3465), + [anon_sym_0X] = ACTIONS(3465), + [anon_sym_0o] = ACTIONS(3465), + [anon_sym_0O] = ACTIONS(3465), + [anon_sym_0b] = ACTIONS(3465), + [anon_sym_0B] = ACTIONS(3465), + [aux_sym_integer_token4] = ACTIONS(3463), + [sym_float] = ACTIONS(3465), + [anon_sym_await] = ACTIONS(3463), + [anon_sym_api] = ACTIONS(3463), + [sym_true] = ACTIONS(3463), + [sym_false] = ACTIONS(3463), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3463), + [anon_sym_include] = ACTIONS(3463), + [anon_sym_DEF] = ACTIONS(3463), + [anon_sym_IF] = ACTIONS(3463), + [anon_sym_cdef] = ACTIONS(3463), + [anon_sym_cpdef] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_ctypedef] = ACTIONS(3463), + [anon_sym_public] = ACTIONS(3463), + [anon_sym_packed] = ACTIONS(3463), + [anon_sym_inline] = ACTIONS(3463), + [anon_sym_readonly] = ACTIONS(3463), + [anon_sym_sizeof] = ACTIONS(3463), + [sym__dedent] = ACTIONS(3465), + [sym_string_start] = ACTIONS(3465), }, - [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), + [1284] = { + [sym_identifier] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3469), + [anon_sym_import] = ACTIONS(3467), + [anon_sym_cimport] = ACTIONS(3467), + [anon_sym_from] = ACTIONS(3467), + [anon_sym_LPAREN] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3469), + [anon_sym_print] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_del] = ACTIONS(3467), + [anon_sym_raise] = ACTIONS(3467), + [anon_sym_pass] = ACTIONS(3467), + [anon_sym_break] = ACTIONS(3467), + [anon_sym_continue] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_async] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_def] = ACTIONS(3467), + [anon_sym_global] = ACTIONS(3467), + [anon_sym_nonlocal] = ACTIONS(3467), + [anon_sym_exec] = ACTIONS(3467), + [anon_sym_type] = ACTIONS(3467), + [anon_sym_class] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_AT] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), [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), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_lambda] = ACTIONS(3467), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_None] = ACTIONS(3467), + [anon_sym_0x] = ACTIONS(3469), + [anon_sym_0X] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3469), + [anon_sym_0O] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0B] = ACTIONS(3469), + [aux_sym_integer_token4] = ACTIONS(3467), + [sym_float] = ACTIONS(3469), + [anon_sym_await] = ACTIONS(3467), + [anon_sym_api] = ACTIONS(3467), + [sym_true] = ACTIONS(3467), + [sym_false] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3467), + [anon_sym_include] = ACTIONS(3467), + [anon_sym_DEF] = ACTIONS(3467), + [anon_sym_IF] = ACTIONS(3467), + [anon_sym_cdef] = ACTIONS(3467), + [anon_sym_cpdef] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_ctypedef] = ACTIONS(3467), + [anon_sym_public] = ACTIONS(3467), + [anon_sym_packed] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_readonly] = ACTIONS(3467), + [anon_sym_sizeof] = ACTIONS(3467), + [sym__dedent] = ACTIONS(3469), + [sym_string_start] = ACTIONS(3469), }, - [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), + [1285] = { + [sym_identifier] = ACTIONS(3471), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym_import] = ACTIONS(3471), + [anon_sym_cimport] = ACTIONS(3471), + [anon_sym_from] = ACTIONS(3471), + [anon_sym_LPAREN] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_print] = ACTIONS(3471), + [anon_sym_assert] = ACTIONS(3471), + [anon_sym_return] = ACTIONS(3471), + [anon_sym_del] = ACTIONS(3471), + [anon_sym_raise] = ACTIONS(3471), + [anon_sym_pass] = ACTIONS(3471), + [anon_sym_break] = ACTIONS(3471), + [anon_sym_continue] = ACTIONS(3471), + [anon_sym_if] = ACTIONS(3471), + [anon_sym_match] = ACTIONS(3471), + [anon_sym_async] = ACTIONS(3471), + [anon_sym_for] = ACTIONS(3471), + [anon_sym_while] = ACTIONS(3471), + [anon_sym_try] = ACTIONS(3471), + [anon_sym_with] = ACTIONS(3471), + [anon_sym_def] = ACTIONS(3471), + [anon_sym_global] = ACTIONS(3471), + [anon_sym_nonlocal] = ACTIONS(3471), + [anon_sym_exec] = ACTIONS(3471), + [anon_sym_type] = ACTIONS(3471), + [anon_sym_class] = ACTIONS(3471), + [anon_sym_LBRACK] = ACTIONS(3473), + [anon_sym_AT] = ACTIONS(3473), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3473), + [anon_sym_not] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_LT] = ACTIONS(3473), + [anon_sym_lambda] = ACTIONS(3471), + [anon_sym_yield] = ACTIONS(3471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), + [anon_sym_None] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3473), + [anon_sym_0X] = ACTIONS(3473), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0O] = ACTIONS(3473), + [anon_sym_0b] = ACTIONS(3473), + [anon_sym_0B] = ACTIONS(3473), + [aux_sym_integer_token4] = ACTIONS(3471), + [sym_float] = ACTIONS(3473), + [anon_sym_await] = ACTIONS(3471), + [anon_sym_api] = ACTIONS(3471), + [sym_true] = ACTIONS(3471), + [sym_false] = ACTIONS(3471), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3471), + [anon_sym_include] = ACTIONS(3471), + [anon_sym_DEF] = ACTIONS(3471), + [anon_sym_IF] = ACTIONS(3471), + [anon_sym_cdef] = ACTIONS(3471), + [anon_sym_cpdef] = ACTIONS(3471), [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), + [anon_sym_ctypedef] = ACTIONS(3471), + [anon_sym_public] = ACTIONS(3471), + [anon_sym_packed] = ACTIONS(3471), + [anon_sym_inline] = ACTIONS(3471), + [anon_sym_readonly] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3471), + [sym__dedent] = ACTIONS(3473), + [sym_string_start] = ACTIONS(3473), }, - [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), + [1286] = { + [sym_identifier] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym_import] = ACTIONS(3475), + [anon_sym_cimport] = ACTIONS(3475), + [anon_sym_from] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3477), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_print] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_del] = ACTIONS(3475), + [anon_sym_raise] = ACTIONS(3475), + [anon_sym_pass] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_async] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_def] = ACTIONS(3475), + [anon_sym_global] = ACTIONS(3475), + [anon_sym_nonlocal] = ACTIONS(3475), + [anon_sym_exec] = ACTIONS(3475), + [anon_sym_type] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3477), + [anon_sym_AT] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3477), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), [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), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [anon_sym_None] = ACTIONS(3475), + [anon_sym_0x] = ACTIONS(3477), + [anon_sym_0X] = ACTIONS(3477), + [anon_sym_0o] = ACTIONS(3477), + [anon_sym_0O] = ACTIONS(3477), + [anon_sym_0b] = ACTIONS(3477), + [anon_sym_0B] = ACTIONS(3477), + [aux_sym_integer_token4] = ACTIONS(3475), + [sym_float] = ACTIONS(3477), + [anon_sym_await] = ACTIONS(3475), + [anon_sym_api] = ACTIONS(3475), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3475), + [anon_sym_include] = ACTIONS(3475), + [anon_sym_DEF] = ACTIONS(3475), + [anon_sym_IF] = ACTIONS(3475), + [anon_sym_cdef] = ACTIONS(3475), + [anon_sym_cpdef] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_ctypedef] = ACTIONS(3475), + [anon_sym_public] = ACTIONS(3475), + [anon_sym_packed] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym_readonly] = ACTIONS(3475), + [anon_sym_sizeof] = ACTIONS(3475), + [sym__dedent] = ACTIONS(3477), + [sym_string_start] = ACTIONS(3477), }, - [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), + [1287] = { + [sym_identifier] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym_import] = ACTIONS(3479), + [anon_sym_cimport] = ACTIONS(3479), + [anon_sym_from] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_print] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_del] = ACTIONS(3479), + [anon_sym_raise] = ACTIONS(3479), + [anon_sym_pass] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_async] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_def] = ACTIONS(3479), + [anon_sym_global] = ACTIONS(3479), + [anon_sym_nonlocal] = ACTIONS(3479), + [anon_sym_exec] = ACTIONS(3479), + [anon_sym_type] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3481), + [anon_sym_AT] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_PLUS] = ACTIONS(3481), [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), + [anon_sym_AMP] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_lambda] = ACTIONS(3479), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [anon_sym_None] = ACTIONS(3479), + [anon_sym_0x] = ACTIONS(3481), + [anon_sym_0X] = ACTIONS(3481), + [anon_sym_0o] = ACTIONS(3481), + [anon_sym_0O] = ACTIONS(3481), + [anon_sym_0b] = ACTIONS(3481), + [anon_sym_0B] = ACTIONS(3481), + [aux_sym_integer_token4] = ACTIONS(3479), + [sym_float] = ACTIONS(3481), + [anon_sym_await] = ACTIONS(3479), + [anon_sym_api] = ACTIONS(3479), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3479), + [anon_sym_include] = ACTIONS(3479), + [anon_sym_DEF] = ACTIONS(3479), + [anon_sym_IF] = ACTIONS(3479), + [anon_sym_cdef] = ACTIONS(3479), + [anon_sym_cpdef] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_ctypedef] = ACTIONS(3479), + [anon_sym_public] = ACTIONS(3479), + [anon_sym_packed] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym_readonly] = ACTIONS(3479), + [anon_sym_sizeof] = ACTIONS(3479), + [sym__dedent] = ACTIONS(3481), + [sym_string_start] = ACTIONS(3481), }, - [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), + [1288] = { + [sym_identifier] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_import] = ACTIONS(3483), + [anon_sym_cimport] = ACTIONS(3483), + [anon_sym_from] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3485), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_print] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_del] = ACTIONS(3483), + [anon_sym_raise] = ACTIONS(3483), + [anon_sym_pass] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_async] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_def] = ACTIONS(3483), + [anon_sym_global] = ACTIONS(3483), + [anon_sym_nonlocal] = ACTIONS(3483), + [anon_sym_exec] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3485), + [anon_sym_AT] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3485), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_lambda] = ACTIONS(3483), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [anon_sym_None] = ACTIONS(3483), + [anon_sym_0x] = ACTIONS(3485), + [anon_sym_0X] = ACTIONS(3485), + [anon_sym_0o] = ACTIONS(3485), + [anon_sym_0O] = ACTIONS(3485), + [anon_sym_0b] = ACTIONS(3485), + [anon_sym_0B] = ACTIONS(3485), + [aux_sym_integer_token4] = ACTIONS(3483), + [sym_float] = ACTIONS(3485), + [anon_sym_await] = ACTIONS(3483), + [anon_sym_api] = ACTIONS(3483), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3483), + [anon_sym_include] = ACTIONS(3483), + [anon_sym_DEF] = ACTIONS(3483), + [anon_sym_IF] = ACTIONS(3483), + [anon_sym_cdef] = ACTIONS(3483), + [anon_sym_cpdef] = ACTIONS(3483), [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), + [anon_sym_ctypedef] = ACTIONS(3483), + [anon_sym_public] = ACTIONS(3483), + [anon_sym_packed] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym_readonly] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(3483), + [sym__dedent] = ACTIONS(3485), + [sym_string_start] = ACTIONS(3485), }, - [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), + [1289] = { + [sym_identifier] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_import] = ACTIONS(3487), + [anon_sym_cimport] = ACTIONS(3487), + [anon_sym_from] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_print] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_del] = ACTIONS(3487), + [anon_sym_raise] = ACTIONS(3487), + [anon_sym_pass] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_async] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_def] = ACTIONS(3487), + [anon_sym_global] = ACTIONS(3487), + [anon_sym_nonlocal] = ACTIONS(3487), + [anon_sym_exec] = ACTIONS(3487), + [anon_sym_type] = ACTIONS(3487), + [anon_sym_class] = ACTIONS(3487), + [anon_sym_LBRACK] = ACTIONS(3489), + [anon_sym_AT] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3489), + [anon_sym_not] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), [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), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_None] = ACTIONS(3487), + [anon_sym_0x] = ACTIONS(3489), + [anon_sym_0X] = ACTIONS(3489), + [anon_sym_0o] = ACTIONS(3489), + [anon_sym_0O] = ACTIONS(3489), + [anon_sym_0b] = ACTIONS(3489), + [anon_sym_0B] = ACTIONS(3489), + [aux_sym_integer_token4] = ACTIONS(3487), + [sym_float] = ACTIONS(3489), + [anon_sym_await] = ACTIONS(3487), + [anon_sym_api] = ACTIONS(3487), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3487), + [anon_sym_include] = ACTIONS(3487), + [anon_sym_DEF] = ACTIONS(3487), + [anon_sym_IF] = ACTIONS(3487), + [anon_sym_cdef] = ACTIONS(3487), + [anon_sym_cpdef] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_ctypedef] = ACTIONS(3487), + [anon_sym_public] = ACTIONS(3487), + [anon_sym_packed] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_readonly] = ACTIONS(3487), + [anon_sym_sizeof] = ACTIONS(3487), + [sym__dedent] = ACTIONS(3489), + [sym_string_start] = ACTIONS(3489), }, - [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), + [1290] = { + [sym_identifier] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(3493), + [anon_sym_import] = ACTIONS(3491), + [anon_sym_cimport] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_print] = ACTIONS(3491), + [anon_sym_assert] = ACTIONS(3491), + [anon_sym_return] = ACTIONS(3491), + [anon_sym_del] = ACTIONS(3491), + [anon_sym_raise] = ACTIONS(3491), + [anon_sym_pass] = ACTIONS(3491), + [anon_sym_break] = ACTIONS(3491), + [anon_sym_continue] = ACTIONS(3491), + [anon_sym_if] = ACTIONS(3491), + [anon_sym_match] = ACTIONS(3491), + [anon_sym_async] = ACTIONS(3491), + [anon_sym_for] = ACTIONS(3491), + [anon_sym_while] = ACTIONS(3491), + [anon_sym_try] = ACTIONS(3491), + [anon_sym_with] = ACTIONS(3491), + [anon_sym_def] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_nonlocal] = ACTIONS(3491), + [anon_sym_exec] = ACTIONS(3491), + [anon_sym_type] = ACTIONS(3491), + [anon_sym_class] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_AT] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_lambda] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), + [anon_sym_None] = ACTIONS(3491), + [anon_sym_0x] = ACTIONS(3493), + [anon_sym_0X] = ACTIONS(3493), + [anon_sym_0o] = ACTIONS(3493), + [anon_sym_0O] = ACTIONS(3493), + [anon_sym_0b] = ACTIONS(3493), + [anon_sym_0B] = ACTIONS(3493), + [aux_sym_integer_token4] = ACTIONS(3491), + [sym_float] = ACTIONS(3493), + [anon_sym_await] = ACTIONS(3491), + [anon_sym_api] = ACTIONS(3491), + [sym_true] = ACTIONS(3491), + [sym_false] = ACTIONS(3491), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3491), + [anon_sym_include] = ACTIONS(3491), + [anon_sym_DEF] = ACTIONS(3491), + [anon_sym_IF] = ACTIONS(3491), + [anon_sym_cdef] = ACTIONS(3491), + [anon_sym_cpdef] = ACTIONS(3491), + [anon_sym_new] = ACTIONS(3491), + [anon_sym_ctypedef] = ACTIONS(3491), + [anon_sym_public] = ACTIONS(3491), + [anon_sym_packed] = ACTIONS(3491), + [anon_sym_inline] = ACTIONS(3491), + [anon_sym_readonly] = ACTIONS(3491), + [anon_sym_sizeof] = ACTIONS(3491), + [sym__dedent] = ACTIONS(3493), + [sym_string_start] = ACTIONS(3493), }, - [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), + [1291] = { + [sym_identifier] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3497), + [anon_sym_import] = ACTIONS(3495), + [anon_sym_cimport] = ACTIONS(3495), + [anon_sym_from] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_print] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_del] = ACTIONS(3495), + [anon_sym_raise] = ACTIONS(3495), + [anon_sym_pass] = ACTIONS(3495), + [anon_sym_break] = ACTIONS(3495), + [anon_sym_continue] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_async] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_def] = ACTIONS(3495), + [anon_sym_global] = ACTIONS(3495), + [anon_sym_nonlocal] = ACTIONS(3495), + [anon_sym_exec] = ACTIONS(3495), + [anon_sym_type] = ACTIONS(3495), + [anon_sym_class] = ACTIONS(3495), + [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(3495), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), [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), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_None] = ACTIONS(3495), + [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(3495), + [sym_float] = ACTIONS(3497), + [anon_sym_await] = ACTIONS(3495), + [anon_sym_api] = ACTIONS(3495), + [sym_true] = ACTIONS(3495), + [sym_false] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3495), + [anon_sym_include] = ACTIONS(3495), + [anon_sym_DEF] = ACTIONS(3495), + [anon_sym_IF] = ACTIONS(3495), + [anon_sym_cdef] = ACTIONS(3495), + [anon_sym_cpdef] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_ctypedef] = ACTIONS(3495), + [anon_sym_public] = ACTIONS(3495), + [anon_sym_packed] = ACTIONS(3495), + [anon_sym_inline] = ACTIONS(3495), + [anon_sym_readonly] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3495), + [sym__dedent] = ACTIONS(3497), + [sym_string_start] = ACTIONS(3497), }, - [1413] = { - [ts_builtin_sym_end] = ACTIONS(3497), + [1292] = { [sym_identifier] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3501), [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_LPAREN] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), [anon_sym_print] = ACTIONS(3499), [anon_sym_assert] = ACTIONS(3499), [anon_sym_return] = ACTIONS(3499), @@ -164684,27 +155165,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), [anon_sym_lambda] = ACTIONS(3499), [anon_sym_yield] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), [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), + [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(3499), - [sym_float] = ACTIONS(3497), + [sym_float] = ACTIONS(3501), [anon_sym_await] = ACTIONS(3499), [anon_sym_api] = ACTIONS(3499), [sym_true] = ACTIONS(3499), @@ -164724,17 +155205,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3499), [anon_sym_readonly] = ACTIONS(3499), [anon_sym_sizeof] = ACTIONS(3499), - [sym_string_start] = ACTIONS(3497), + [sym__dedent] = ACTIONS(3501), + [sym_string_start] = ACTIONS(3501), }, - [1414] = { - [ts_builtin_sym_end] = ACTIONS(3501), + [1293] = { [sym_identifier] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_SEMI] = ACTIONS(3505), [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_LPAREN] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), [anon_sym_print] = ACTIONS(3503), [anon_sym_assert] = ACTIONS(3503), [anon_sym_return] = ACTIONS(3503), @@ -164756,27 +155237,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3505), + [anon_sym_AT] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), [anon_sym_not] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), [anon_sym_lambda] = ACTIONS(3503), [anon_sym_yield] = ACTIONS(3503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), [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), + [anon_sym_0x] = ACTIONS(3505), + [anon_sym_0X] = ACTIONS(3505), + [anon_sym_0o] = ACTIONS(3505), + [anon_sym_0O] = ACTIONS(3505), + [anon_sym_0b] = ACTIONS(3505), + [anon_sym_0B] = ACTIONS(3505), [aux_sym_integer_token4] = ACTIONS(3503), - [sym_float] = ACTIONS(3501), + [sym_float] = ACTIONS(3505), [anon_sym_await] = ACTIONS(3503), [anon_sym_api] = ACTIONS(3503), [sym_true] = ACTIONS(3503), @@ -164796,377 +155277,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3505), + [sym_string_start] = ACTIONS(3505), }, - [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), + [1294] = { + [sym_identifier] = ACTIONS(3507), + [anon_sym_SEMI] = ACTIONS(3509), + [anon_sym_import] = ACTIONS(3507), + [anon_sym_cimport] = ACTIONS(3507), + [anon_sym_from] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), [anon_sym_print] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_del] = ACTIONS(3507), + [anon_sym_raise] = ACTIONS(3507), + [anon_sym_pass] = ACTIONS(3507), + [anon_sym_break] = ACTIONS(3507), + [anon_sym_continue] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), [anon_sym_match] = ACTIONS(3507), [anon_sym_async] = ACTIONS(3507), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_def] = ACTIONS(3507), + [anon_sym_global] = ACTIONS(3507), + [anon_sym_nonlocal] = 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_type] = ACTIONS(3507), + [anon_sym_class] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_AT] = ACTIONS(3509), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3507), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_lambda] = ACTIONS(3507), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), + [anon_sym_None] = ACTIONS(3507), + [anon_sym_0x] = ACTIONS(3509), + [anon_sym_0X] = ACTIONS(3509), + [anon_sym_0o] = ACTIONS(3509), + [anon_sym_0O] = ACTIONS(3509), + [anon_sym_0b] = ACTIONS(3509), + [anon_sym_0B] = ACTIONS(3509), + [aux_sym_integer_token4] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [anon_sym_await] = ACTIONS(3507), [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), + [sym_true] = ACTIONS(3507), + [sym_false] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3507), + [anon_sym_include] = ACTIONS(3507), + [anon_sym_DEF] = ACTIONS(3507), + [anon_sym_IF] = ACTIONS(3507), + [anon_sym_cdef] = ACTIONS(3507), + [anon_sym_cpdef] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_ctypedef] = ACTIONS(3507), + [anon_sym_public] = ACTIONS(3507), + [anon_sym_packed] = ACTIONS(3507), + [anon_sym_inline] = ACTIONS(3507), + [anon_sym_readonly] = ACTIONS(3507), + [anon_sym_sizeof] = ACTIONS(3507), + [sym__dedent] = ACTIONS(3509), + [sym_string_start] = ACTIONS(3509), }, - [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), + [1295] = { + [sym_identifier] = ACTIONS(3511), + [anon_sym_SEMI] = ACTIONS(3513), + [anon_sym_import] = ACTIONS(3511), + [anon_sym_cimport] = ACTIONS(3511), + [anon_sym_from] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3513), + [anon_sym_print] = ACTIONS(3511), + [anon_sym_assert] = ACTIONS(3511), + [anon_sym_return] = ACTIONS(3511), + [anon_sym_del] = ACTIONS(3511), + [anon_sym_raise] = ACTIONS(3511), + [anon_sym_pass] = ACTIONS(3511), + [anon_sym_break] = ACTIONS(3511), + [anon_sym_continue] = ACTIONS(3511), + [anon_sym_if] = ACTIONS(3511), + [anon_sym_match] = ACTIONS(3511), + [anon_sym_async] = ACTIONS(3511), + [anon_sym_for] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3511), + [anon_sym_try] = ACTIONS(3511), + [anon_sym_with] = ACTIONS(3511), + [anon_sym_def] = ACTIONS(3511), + [anon_sym_global] = ACTIONS(3511), + [anon_sym_nonlocal] = ACTIONS(3511), + [anon_sym_exec] = ACTIONS(3511), + [anon_sym_type] = ACTIONS(3511), + [anon_sym_class] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_AT] = ACTIONS(3513), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_TILDE] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_lambda] = ACTIONS(3511), + [anon_sym_yield] = ACTIONS(3511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), + [anon_sym_None] = ACTIONS(3511), + [anon_sym_0x] = ACTIONS(3513), + [anon_sym_0X] = ACTIONS(3513), + [anon_sym_0o] = ACTIONS(3513), + [anon_sym_0O] = ACTIONS(3513), + [anon_sym_0b] = ACTIONS(3513), + [anon_sym_0B] = ACTIONS(3513), + [aux_sym_integer_token4] = ACTIONS(3511), + [sym_float] = ACTIONS(3513), + [anon_sym_await] = ACTIONS(3511), + [anon_sym_api] = ACTIONS(3511), + [sym_true] = ACTIONS(3511), + [sym_false] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3511), + [anon_sym_include] = ACTIONS(3511), + [anon_sym_DEF] = ACTIONS(3511), + [anon_sym_IF] = ACTIONS(3511), + [anon_sym_cdef] = ACTIONS(3511), + [anon_sym_cpdef] = ACTIONS(3511), + [anon_sym_new] = ACTIONS(3511), + [anon_sym_ctypedef] = ACTIONS(3511), + [anon_sym_public] = ACTIONS(3511), + [anon_sym_packed] = ACTIONS(3511), + [anon_sym_inline] = ACTIONS(3511), + [anon_sym_readonly] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3511), + [sym__dedent] = ACTIONS(3513), + [sym_string_start] = ACTIONS(3513), }, - [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), + [1296] = { + [sym_identifier] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_import] = ACTIONS(3515), + [anon_sym_cimport] = ACTIONS(3515), + [anon_sym_from] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_print] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_del] = ACTIONS(3515), + [anon_sym_raise] = ACTIONS(3515), + [anon_sym_pass] = ACTIONS(3515), + [anon_sym_break] = ACTIONS(3515), + [anon_sym_continue] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_async] = ACTIONS(3515), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_def] = ACTIONS(3515), + [anon_sym_global] = ACTIONS(3515), + [anon_sym_nonlocal] = ACTIONS(3515), + [anon_sym_exec] = ACTIONS(3515), + [anon_sym_type] = ACTIONS(3515), + [anon_sym_class] = ACTIONS(3515), + [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(3515), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_lambda] = ACTIONS(3515), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), + [anon_sym_None] = ACTIONS(3515), + [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(3515), + [sym_float] = ACTIONS(3517), + [anon_sym_await] = ACTIONS(3515), + [anon_sym_api] = ACTIONS(3515), + [sym_true] = ACTIONS(3515), + [sym_false] = ACTIONS(3515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3515), + [anon_sym_include] = ACTIONS(3515), + [anon_sym_DEF] = ACTIONS(3515), + [anon_sym_IF] = ACTIONS(3515), + [anon_sym_cdef] = ACTIONS(3515), + [anon_sym_cpdef] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_ctypedef] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(3515), + [anon_sym_packed] = ACTIONS(3515), + [anon_sym_inline] = ACTIONS(3515), + [anon_sym_readonly] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3515), + [sym__dedent] = ACTIONS(3517), + [sym_string_start] = ACTIONS(3517), }, - [1420] = { - [ts_builtin_sym_end] = ACTIONS(3517), + [1297] = { [sym_identifier] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3521), [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_LPAREN] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), [anon_sym_print] = ACTIONS(3519), [anon_sym_assert] = ACTIONS(3519), [anon_sym_return] = ACTIONS(3519), @@ -165188,27 +155525,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3519), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_LT] = ACTIONS(3517), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), [anon_sym_lambda] = ACTIONS(3519), [anon_sym_yield] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), [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), + [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(3519), - [sym_float] = ACTIONS(3517), + [sym_float] = ACTIONS(3521), [anon_sym_await] = ACTIONS(3519), [anon_sym_api] = ACTIONS(3519), [sym_true] = ACTIONS(3519), @@ -165228,17 +155565,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3519), [anon_sym_readonly] = ACTIONS(3519), [anon_sym_sizeof] = ACTIONS(3519), - [sym_string_start] = ACTIONS(3517), + [sym__dedent] = ACTIONS(3521), + [sym_string_start] = ACTIONS(3521), }, - [1421] = { - [ts_builtin_sym_end] = ACTIONS(3521), + [1298] = { [sym_identifier] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3525), [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_LPAREN] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3525), [anon_sym_print] = ACTIONS(3523), [anon_sym_assert] = ACTIONS(3523), [anon_sym_return] = ACTIONS(3523), @@ -165260,27 +155597,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3523), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), [anon_sym_lambda] = ACTIONS(3523), [anon_sym_yield] = ACTIONS(3523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), [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), + [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(3523), - [sym_float] = ACTIONS(3521), + [sym_float] = ACTIONS(3525), [anon_sym_await] = ACTIONS(3523), [anon_sym_api] = ACTIONS(3523), [sym_true] = ACTIONS(3523), @@ -165300,89 +155637,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3525), + [sym_string_start] = ACTIONS(3525), }, - [1423] = { - [ts_builtin_sym_end] = ACTIONS(3525), + [1299] = { [sym_identifier] = ACTIONS(3527), - [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3529), [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_LPAREN] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3529), [anon_sym_print] = ACTIONS(3527), [anon_sym_assert] = ACTIONS(3527), [anon_sym_return] = ACTIONS(3527), @@ -165404,27 +155669,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3527), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(3525), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), [anon_sym_lambda] = ACTIONS(3527), [anon_sym_yield] = ACTIONS(3527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), [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), + [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(3527), - [sym_float] = ACTIONS(3525), + [sym_float] = ACTIONS(3529), [anon_sym_await] = ACTIONS(3527), [anon_sym_api] = ACTIONS(3527), [sym_true] = ACTIONS(3527), @@ -165444,17 +155709,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3527), [anon_sym_readonly] = ACTIONS(3527), [anon_sym_sizeof] = ACTIONS(3527), - [sym_string_start] = ACTIONS(3525), + [sym__dedent] = ACTIONS(3529), + [sym_string_start] = ACTIONS(3529), }, - [1424] = { - [ts_builtin_sym_end] = ACTIONS(3529), + [1300] = { [sym_identifier] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3533), [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_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), [anon_sym_print] = ACTIONS(3531), [anon_sym_assert] = ACTIONS(3531), [anon_sym_return] = ACTIONS(3531), @@ -165476,27 +155741,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3531), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_LT] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), [anon_sym_lambda] = ACTIONS(3531), [anon_sym_yield] = ACTIONS(3531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), [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), + [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(3531), - [sym_float] = ACTIONS(3529), + [sym_float] = ACTIONS(3533), [anon_sym_await] = ACTIONS(3531), [anon_sym_api] = ACTIONS(3531), [sym_true] = ACTIONS(3531), @@ -165516,17 +155781,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3531), [anon_sym_readonly] = ACTIONS(3531), [anon_sym_sizeof] = ACTIONS(3531), - [sym_string_start] = ACTIONS(3529), + [sym__dedent] = ACTIONS(3533), + [sym_string_start] = ACTIONS(3533), }, - [1425] = { - [ts_builtin_sym_end] = ACTIONS(3533), + [1301] = { [sym_identifier] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3537), [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_LPAREN] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(3537), [anon_sym_print] = ACTIONS(3535), [anon_sym_assert] = ACTIONS(3535), [anon_sym_return] = ACTIONS(3535), @@ -165548,27 +155813,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3535), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_LT] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), [anon_sym_lambda] = ACTIONS(3535), [anon_sym_yield] = ACTIONS(3535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), [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), + [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(3535), - [sym_float] = ACTIONS(3533), + [sym_float] = ACTIONS(3537), [anon_sym_await] = ACTIONS(3535), [anon_sym_api] = ACTIONS(3535), [sym_true] = ACTIONS(3535), @@ -165588,161 +155853,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__dedent] = ACTIONS(3537), [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), + [1302] = { + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_import] = ACTIONS(3541), + [anon_sym_cimport] = ACTIONS(3541), + [anon_sym_from] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_print] = ACTIONS(3541), + [anon_sym_assert] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_del] = ACTIONS(3541), + [anon_sym_raise] = ACTIONS(3541), + [anon_sym_pass] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_match] = ACTIONS(3541), + [anon_sym_async] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3541), + [anon_sym_def] = ACTIONS(3541), + [anon_sym_global] = ACTIONS(3541), + [anon_sym_nonlocal] = ACTIONS(3541), + [anon_sym_exec] = ACTIONS(3541), + [anon_sym_type] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_AT] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3539), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_lambda] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3539), + [anon_sym_None] = ACTIONS(3541), + [anon_sym_0x] = ACTIONS(3539), + [anon_sym_0X] = ACTIONS(3539), + [anon_sym_0o] = ACTIONS(3539), + [anon_sym_0O] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3539), + [anon_sym_0B] = ACTIONS(3539), + [aux_sym_integer_token4] = ACTIONS(3541), + [sym_float] = ACTIONS(3539), + [anon_sym_await] = ACTIONS(3541), + [anon_sym_api] = ACTIONS(3541), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3541), + [anon_sym_include] = ACTIONS(3541), + [anon_sym_DEF] = ACTIONS(3541), + [anon_sym_IF] = ACTIONS(3541), + [anon_sym_cdef] = ACTIONS(3541), + [anon_sym_cpdef] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_ctypedef] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_packed] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym_readonly] = ACTIONS(3541), + [anon_sym_sizeof] = ACTIONS(3541), + [sym_string_start] = ACTIONS(3539), }, - [1428] = { - [ts_builtin_sym_end] = ACTIONS(3541), + [1303] = { [sym_identifier] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3545), [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_LPAREN] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3545), [anon_sym_print] = ACTIONS(3543), [anon_sym_assert] = ACTIONS(3543), [anon_sym_return] = ACTIONS(3543), @@ -165764,27 +155957,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3545), + [anon_sym_LT] = ACTIONS(3545), [anon_sym_lambda] = ACTIONS(3543), [anon_sym_yield] = ACTIONS(3543), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), [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), + [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(3543), - [sym_float] = ACTIONS(3541), + [sym_float] = ACTIONS(3545), [anon_sym_await] = ACTIONS(3543), [anon_sym_api] = ACTIONS(3543), [sym_true] = ACTIONS(3543), @@ -165804,17 +155997,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3543), [anon_sym_readonly] = ACTIONS(3543), [anon_sym_sizeof] = ACTIONS(3543), - [sym_string_start] = ACTIONS(3541), + [sym__dedent] = ACTIONS(3545), + [sym_string_start] = ACTIONS(3545), }, - [1429] = { - [ts_builtin_sym_end] = ACTIONS(3545), + [1304] = { [sym_identifier] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3549), [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_LPAREN] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), [anon_sym_print] = ACTIONS(3547), [anon_sym_assert] = ACTIONS(3547), [anon_sym_return] = ACTIONS(3547), @@ -165836,27 +156029,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3545), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3549), [anon_sym_lambda] = ACTIONS(3547), [anon_sym_yield] = ACTIONS(3547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), [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), + [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(3547), - [sym_float] = ACTIONS(3545), + [sym_float] = ACTIONS(3549), [anon_sym_await] = ACTIONS(3547), [anon_sym_api] = ACTIONS(3547), [sym_true] = ACTIONS(3547), @@ -165876,17 +156069,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3547), [anon_sym_readonly] = ACTIONS(3547), [anon_sym_sizeof] = ACTIONS(3547), - [sym_string_start] = ACTIONS(3545), + [sym__dedent] = ACTIONS(3549), + [sym_string_start] = ACTIONS(3549), }, - [1430] = { - [ts_builtin_sym_end] = ACTIONS(3549), + [1305] = { [sym_identifier] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3553), [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_LPAREN] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), [anon_sym_print] = ACTIONS(3551), [anon_sym_assert] = ACTIONS(3551), [anon_sym_return] = ACTIONS(3551), @@ -165908,27 +156101,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3551), - [anon_sym_AMP] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3549), + [anon_sym_AMP] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_LT] = ACTIONS(3553), [anon_sym_lambda] = ACTIONS(3551), [anon_sym_yield] = ACTIONS(3551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), [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), + [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(3551), - [sym_float] = ACTIONS(3549), + [sym_float] = ACTIONS(3553), [anon_sym_await] = ACTIONS(3551), [anon_sym_api] = ACTIONS(3551), [sym_true] = ACTIONS(3551), @@ -165948,17 +156141,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3551), [anon_sym_readonly] = ACTIONS(3551), [anon_sym_sizeof] = ACTIONS(3551), - [sym_string_start] = ACTIONS(3549), + [sym__dedent] = ACTIONS(3553), + [sym_string_start] = ACTIONS(3553), }, - [1431] = { - [ts_builtin_sym_end] = ACTIONS(3553), + [1306] = { [sym_identifier] = ACTIONS(3555), - [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_SEMI] = ACTIONS(3557), [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_LPAREN] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3557), [anon_sym_print] = ACTIONS(3555), [anon_sym_assert] = ACTIONS(3555), [anon_sym_return] = ACTIONS(3555), @@ -165980,27 +156173,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3555), - [anon_sym_AMP] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3553), - [anon_sym_LT] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), [anon_sym_lambda] = ACTIONS(3555), [anon_sym_yield] = ACTIONS(3555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), [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), + [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(3555), - [sym_float] = ACTIONS(3553), + [sym_float] = ACTIONS(3557), [anon_sym_await] = ACTIONS(3555), [anon_sym_api] = ACTIONS(3555), [sym_true] = ACTIONS(3555), @@ -166020,17 +156213,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3555), [anon_sym_readonly] = ACTIONS(3555), [anon_sym_sizeof] = ACTIONS(3555), - [sym_string_start] = ACTIONS(3553), + [sym__dedent] = ACTIONS(3557), + [sym_string_start] = ACTIONS(3557), }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(3557), + [1307] = { [sym_identifier] = ACTIONS(3559), - [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_SEMI] = ACTIONS(3561), [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_LPAREN] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3561), [anon_sym_print] = ACTIONS(3559), [anon_sym_assert] = ACTIONS(3559), [anon_sym_return] = ACTIONS(3559), @@ -166052,27 +156245,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3559), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3561), + [anon_sym_LT] = ACTIONS(3561), [anon_sym_lambda] = ACTIONS(3559), [anon_sym_yield] = ACTIONS(3559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), [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), + [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(3559), - [sym_float] = ACTIONS(3557), + [sym_float] = ACTIONS(3561), [anon_sym_await] = ACTIONS(3559), [anon_sym_api] = ACTIONS(3559), [sym_true] = ACTIONS(3559), @@ -166092,17 +156285,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3559), [anon_sym_readonly] = ACTIONS(3559), [anon_sym_sizeof] = ACTIONS(3559), - [sym_string_start] = ACTIONS(3557), + [sym__dedent] = ACTIONS(3561), + [sym_string_start] = ACTIONS(3561), }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(3561), + [1308] = { [sym_identifier] = ACTIONS(3563), - [anon_sym_SEMI] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3565), [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_LPAREN] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3565), [anon_sym_print] = ACTIONS(3563), [anon_sym_assert] = ACTIONS(3563), [anon_sym_return] = ACTIONS(3563), @@ -166124,27 +156317,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3563), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_LT] = ACTIONS(3561), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_TILDE] = ACTIONS(3565), + [anon_sym_LT] = ACTIONS(3565), [anon_sym_lambda] = ACTIONS(3563), [anon_sym_yield] = ACTIONS(3563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), [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), + [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(3563), - [sym_float] = ACTIONS(3561), + [sym_float] = ACTIONS(3565), [anon_sym_await] = ACTIONS(3563), [anon_sym_api] = ACTIONS(3563), [sym_true] = ACTIONS(3563), @@ -166164,17 +156357,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3563), [anon_sym_readonly] = ACTIONS(3563), [anon_sym_sizeof] = ACTIONS(3563), - [sym_string_start] = ACTIONS(3561), + [sym__dedent] = ACTIONS(3565), + [sym_string_start] = ACTIONS(3565), }, - [1434] = { - [ts_builtin_sym_end] = ACTIONS(3565), + [1309] = { [sym_identifier] = ACTIONS(3567), - [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_SEMI] = ACTIONS(3569), [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_LPAREN] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3569), [anon_sym_print] = ACTIONS(3567), [anon_sym_assert] = ACTIONS(3567), [anon_sym_return] = ACTIONS(3567), @@ -166196,27 +156389,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3567), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_TILDE] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3569), [anon_sym_lambda] = ACTIONS(3567), [anon_sym_yield] = ACTIONS(3567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), [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), + [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(3567), - [sym_float] = ACTIONS(3565), + [sym_float] = ACTIONS(3569), [anon_sym_await] = ACTIONS(3567), [anon_sym_api] = ACTIONS(3567), [sym_true] = ACTIONS(3567), @@ -166236,17 +156429,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3567), [anon_sym_readonly] = ACTIONS(3567), [anon_sym_sizeof] = ACTIONS(3567), - [sym_string_start] = ACTIONS(3565), + [sym__dedent] = ACTIONS(3569), + [sym_string_start] = ACTIONS(3569), }, - [1435] = { - [ts_builtin_sym_end] = ACTIONS(3569), + [1310] = { [sym_identifier] = ACTIONS(3571), - [anon_sym_SEMI] = ACTIONS(3569), + [anon_sym_SEMI] = ACTIONS(3573), [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_LPAREN] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(3573), [anon_sym_print] = ACTIONS(3571), [anon_sym_assert] = ACTIONS(3571), [anon_sym_return] = ACTIONS(3571), @@ -166268,27 +156461,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3571), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3569), - [anon_sym_LT] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_LT] = ACTIONS(3573), [anon_sym_lambda] = ACTIONS(3571), [anon_sym_yield] = ACTIONS(3571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), [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), + [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(3571), - [sym_float] = ACTIONS(3569), + [sym_float] = ACTIONS(3573), [anon_sym_await] = ACTIONS(3571), [anon_sym_api] = ACTIONS(3571), [sym_true] = ACTIONS(3571), @@ -166308,89 +156501,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3573), + [sym_string_start] = ACTIONS(3573), }, - [1437] = { - [ts_builtin_sym_end] = ACTIONS(3573), + [1311] = { [sym_identifier] = ACTIONS(3575), - [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym_SEMI] = ACTIONS(3577), [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_LPAREN] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3577), [anon_sym_print] = ACTIONS(3575), [anon_sym_assert] = ACTIONS(3575), [anon_sym_return] = ACTIONS(3575), @@ -166412,27 +156533,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3575), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3573), - [anon_sym_LT] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3577), + [anon_sym_LT] = ACTIONS(3577), [anon_sym_lambda] = ACTIONS(3575), [anon_sym_yield] = ACTIONS(3575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), [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), + [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(3575), - [sym_float] = ACTIONS(3573), + [sym_float] = ACTIONS(3577), [anon_sym_await] = ACTIONS(3575), [anon_sym_api] = ACTIONS(3575), [sym_true] = ACTIONS(3575), @@ -166452,89 +156573,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3577), + [sym_string_start] = ACTIONS(3577), }, - [1439] = { - [ts_builtin_sym_end] = ACTIONS(3577), + [1312] = { [sym_identifier] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3581), [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_LPAREN] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3581), [anon_sym_print] = ACTIONS(3579), [anon_sym_assert] = ACTIONS(3579), [anon_sym_return] = ACTIONS(3579), @@ -166556,27 +156605,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3579), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_LT] = ACTIONS(3577), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3581), + [anon_sym_LT] = ACTIONS(3581), [anon_sym_lambda] = ACTIONS(3579), [anon_sym_yield] = ACTIONS(3579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), [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), + [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(3579), - [sym_float] = ACTIONS(3577), + [sym_float] = ACTIONS(3581), [anon_sym_await] = ACTIONS(3579), [anon_sym_api] = ACTIONS(3579), [sym_true] = ACTIONS(3579), @@ -166596,89 +156645,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3581), + [sym_string_start] = ACTIONS(3581), }, - [1441] = { - [ts_builtin_sym_end] = ACTIONS(3581), + [1313] = { [sym_identifier] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3585), [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_LPAREN] = ACTIONS(3585), + [anon_sym_STAR] = ACTIONS(3585), [anon_sym_print] = ACTIONS(3583), [anon_sym_assert] = ACTIONS(3583), [anon_sym_return] = ACTIONS(3583), @@ -166700,27 +156677,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3583), - [anon_sym_AMP] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3581), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3585), + [anon_sym_LT] = ACTIONS(3585), [anon_sym_lambda] = ACTIONS(3583), [anon_sym_yield] = ACTIONS(3583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), [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), + [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(3583), - [sym_float] = ACTIONS(3581), + [sym_float] = ACTIONS(3585), [anon_sym_await] = ACTIONS(3583), [anon_sym_api] = ACTIONS(3583), [sym_true] = ACTIONS(3583), @@ -166740,233 +156717,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3585), + [sym_string_start] = ACTIONS(3585), }, - [1445] = { - [ts_builtin_sym_end] = ACTIONS(3585), + [1314] = { [sym_identifier] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3585), + [anon_sym_SEMI] = ACTIONS(3589), [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_LPAREN] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), [anon_sym_print] = ACTIONS(3587), [anon_sym_assert] = ACTIONS(3587), [anon_sym_return] = ACTIONS(3587), @@ -166988,27 +156749,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3587), - [anon_sym_AMP] = ACTIONS(3585), - [anon_sym_TILDE] = ACTIONS(3585), - [anon_sym_LT] = ACTIONS(3585), + [anon_sym_AMP] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_LT] = ACTIONS(3589), [anon_sym_lambda] = ACTIONS(3587), [anon_sym_yield] = ACTIONS(3587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), [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), + [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(3587), - [sym_float] = ACTIONS(3585), + [sym_float] = ACTIONS(3589), [anon_sym_await] = ACTIONS(3587), [anon_sym_api] = ACTIONS(3587), [sym_true] = ACTIONS(3587), @@ -167028,17 +156789,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3587), [anon_sym_readonly] = ACTIONS(3587), [anon_sym_sizeof] = ACTIONS(3587), - [sym_string_start] = ACTIONS(3585), + [sym__dedent] = ACTIONS(3589), + [sym_string_start] = ACTIONS(3589), }, - [1446] = { - [ts_builtin_sym_end] = ACTIONS(3589), + [1315] = { [sym_identifier] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym_SEMI] = ACTIONS(3593), [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_LPAREN] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), [anon_sym_print] = ACTIONS(3591), [anon_sym_assert] = ACTIONS(3591), [anon_sym_return] = ACTIONS(3591), @@ -167060,27 +156821,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3591), - [anon_sym_AMP] = ACTIONS(3589), - [anon_sym_TILDE] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_LT] = ACTIONS(3593), [anon_sym_lambda] = ACTIONS(3591), [anon_sym_yield] = ACTIONS(3591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), [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), + [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(3591), - [sym_float] = ACTIONS(3589), + [sym_float] = ACTIONS(3593), [anon_sym_await] = ACTIONS(3591), [anon_sym_api] = ACTIONS(3591), [sym_true] = ACTIONS(3591), @@ -167100,17 +156861,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3591), [anon_sym_readonly] = ACTIONS(3591), [anon_sym_sizeof] = ACTIONS(3591), - [sym_string_start] = ACTIONS(3589), + [sym__dedent] = ACTIONS(3593), + [sym_string_start] = ACTIONS(3593), }, - [1447] = { - [ts_builtin_sym_end] = ACTIONS(3593), + [1316] = { [sym_identifier] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3597), [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_LPAREN] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3597), [anon_sym_print] = ACTIONS(3595), [anon_sym_assert] = ACTIONS(3595), [anon_sym_return] = ACTIONS(3595), @@ -167132,27 +156893,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3595), - [anon_sym_AMP] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3593), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(3597), [anon_sym_lambda] = ACTIONS(3595), [anon_sym_yield] = ACTIONS(3595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), [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), + [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(3595), - [sym_float] = ACTIONS(3593), + [sym_float] = ACTIONS(3597), [anon_sym_await] = ACTIONS(3595), [anon_sym_api] = ACTIONS(3595), [sym_true] = ACTIONS(3595), @@ -167172,233 +156933,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3597), + [sym_string_start] = ACTIONS(3597), }, - [1451] = { - [ts_builtin_sym_end] = ACTIONS(3597), + [1317] = { [sym_identifier] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_SEMI] = ACTIONS(3601), [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_LPAREN] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3601), [anon_sym_print] = ACTIONS(3599), [anon_sym_assert] = ACTIONS(3599), [anon_sym_return] = ACTIONS(3599), @@ -167420,27 +156965,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3599), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), [anon_sym_lambda] = ACTIONS(3599), [anon_sym_yield] = ACTIONS(3599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), [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), + [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(3599), - [sym_float] = ACTIONS(3597), + [sym_float] = ACTIONS(3601), [anon_sym_await] = ACTIONS(3599), [anon_sym_api] = ACTIONS(3599), [sym_true] = ACTIONS(3599), @@ -167460,17 +157005,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3599), [anon_sym_readonly] = ACTIONS(3599), [anon_sym_sizeof] = ACTIONS(3599), - [sym_string_start] = ACTIONS(3597), + [sym__dedent] = ACTIONS(3601), + [sym_string_start] = ACTIONS(3601), }, - [1452] = { - [ts_builtin_sym_end] = ACTIONS(3601), + [1318] = { [sym_identifier] = ACTIONS(3603), - [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_SEMI] = ACTIONS(3605), [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_LPAREN] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3605), [anon_sym_print] = ACTIONS(3603), [anon_sym_assert] = ACTIONS(3603), [anon_sym_return] = ACTIONS(3603), @@ -167492,27 +157037,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3603), - [anon_sym_AMP] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_LT] = ACTIONS(3605), [anon_sym_lambda] = ACTIONS(3603), [anon_sym_yield] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), [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), + [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(3603), - [sym_float] = ACTIONS(3601), + [sym_float] = ACTIONS(3605), [anon_sym_await] = ACTIONS(3603), [anon_sym_api] = ACTIONS(3603), [sym_true] = ACTIONS(3603), @@ -167532,89 +157077,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3605), + [sym_string_start] = ACTIONS(3605), }, - [1454] = { - [ts_builtin_sym_end] = ACTIONS(3605), + [1319] = { [sym_identifier] = ACTIONS(3607), - [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym_SEMI] = ACTIONS(3609), [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_LPAREN] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), [anon_sym_print] = ACTIONS(3607), [anon_sym_assert] = ACTIONS(3607), [anon_sym_return] = ACTIONS(3607), @@ -167636,27 +157109,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3607), - [anon_sym_AMP] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3605), - [anon_sym_LT] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), [anon_sym_lambda] = ACTIONS(3607), [anon_sym_yield] = ACTIONS(3607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), [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), + [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(3607), - [sym_float] = ACTIONS(3605), + [sym_float] = ACTIONS(3609), [anon_sym_await] = ACTIONS(3607), [anon_sym_api] = ACTIONS(3607), [sym_true] = ACTIONS(3607), @@ -167676,377 +157149,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__dedent] = ACTIONS(3609), + [sym_string_start] = ACTIONS(3609), }, - [1460] = { - [ts_builtin_sym_end] = ACTIONS(3609), + [1320] = { [sym_identifier] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3613), [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_LPAREN] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3613), [anon_sym_print] = ACTIONS(3611), [anon_sym_assert] = ACTIONS(3611), [anon_sym_return] = ACTIONS(3611), @@ -168068,27 +157181,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3611), - [anon_sym_AMP] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(3609), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), [anon_sym_lambda] = ACTIONS(3611), [anon_sym_yield] = ACTIONS(3611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), [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), + [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(3611), - [sym_float] = ACTIONS(3609), + [sym_float] = ACTIONS(3613), [anon_sym_await] = ACTIONS(3611), [anon_sym_api] = ACTIONS(3611), [sym_true] = ACTIONS(3611), @@ -168108,17 +157221,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3611), [anon_sym_readonly] = ACTIONS(3611), [anon_sym_sizeof] = ACTIONS(3611), - [sym_string_start] = ACTIONS(3609), + [sym__dedent] = ACTIONS(3613), + [sym_string_start] = ACTIONS(3613), }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(3613), + [1321] = { [sym_identifier] = ACTIONS(3615), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3617), [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_LPAREN] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3617), [anon_sym_print] = ACTIONS(3615), [anon_sym_assert] = ACTIONS(3615), [anon_sym_return] = ACTIONS(3615), @@ -168140,27 +157253,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3615), - [anon_sym_AMP] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), [anon_sym_lambda] = ACTIONS(3615), [anon_sym_yield] = ACTIONS(3615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), [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), + [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(3615), - [sym_float] = ACTIONS(3613), + [sym_float] = ACTIONS(3617), [anon_sym_await] = ACTIONS(3615), [anon_sym_api] = ACTIONS(3615), [sym_true] = ACTIONS(3615), @@ -168180,17 +157293,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3615), [anon_sym_readonly] = ACTIONS(3615), [anon_sym_sizeof] = ACTIONS(3615), - [sym_string_start] = ACTIONS(3613), + [sym__dedent] = ACTIONS(3617), + [sym_string_start] = ACTIONS(3617), }, - [1462] = { - [ts_builtin_sym_end] = ACTIONS(3617), + [1322] = { [sym_identifier] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3621), [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_LPAREN] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), [anon_sym_print] = ACTIONS(3619), [anon_sym_assert] = ACTIONS(3619), [anon_sym_return] = ACTIONS(3619), @@ -168212,27 +157325,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3619), - [anon_sym_AMP] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3617), - [anon_sym_LT] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_LT] = ACTIONS(3621), [anon_sym_lambda] = ACTIONS(3619), [anon_sym_yield] = ACTIONS(3619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), [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), + [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(3619), - [sym_float] = ACTIONS(3617), + [sym_float] = ACTIONS(3621), [anon_sym_await] = ACTIONS(3619), [anon_sym_api] = ACTIONS(3619), [sym_true] = ACTIONS(3619), @@ -168252,54 +157365,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3619), [anon_sym_readonly] = ACTIONS(3619), [anon_sym_sizeof] = ACTIONS(3619), - [sym_string_start] = ACTIONS(3617), + [sym__dedent] = ACTIONS(3621), + [sym_string_start] = ACTIONS(3621), }, - [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), + [1323] = { + [ts_builtin_sym_end] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3625), + [anon_sym_SEMI] = ACTIONS(3623), + [anon_sym_import] = ACTIONS(3625), + [anon_sym_cimport] = ACTIONS(3625), + [anon_sym_from] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3623), + [anon_sym_print] = ACTIONS(3625), + [anon_sym_assert] = ACTIONS(3625), + [anon_sym_return] = ACTIONS(3625), + [anon_sym_del] = ACTIONS(3625), + [anon_sym_raise] = ACTIONS(3625), + [anon_sym_pass] = ACTIONS(3625), + [anon_sym_break] = ACTIONS(3625), + [anon_sym_continue] = ACTIONS(3625), + [anon_sym_if] = ACTIONS(3625), + [anon_sym_match] = ACTIONS(3625), + [anon_sym_async] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3625), + [anon_sym_while] = ACTIONS(3625), + [anon_sym_try] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3625), + [anon_sym_def] = ACTIONS(3625), + [anon_sym_global] = ACTIONS(3625), + [anon_sym_nonlocal] = ACTIONS(3625), + [anon_sym_exec] = ACTIONS(3625), + [anon_sym_type] = ACTIONS(3625), + [anon_sym_class] = ACTIONS(3625), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_AT] = ACTIONS(3623), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_TILDE] = ACTIONS(3623), + [anon_sym_LT] = ACTIONS(3623), + [anon_sym_lambda] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3623), + [anon_sym_None] = ACTIONS(3625), + [anon_sym_0x] = ACTIONS(3623), + [anon_sym_0X] = ACTIONS(3623), + [anon_sym_0o] = ACTIONS(3623), + [anon_sym_0O] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3623), + [anon_sym_0B] = ACTIONS(3623), + [aux_sym_integer_token4] = ACTIONS(3625), + [sym_float] = ACTIONS(3623), + [anon_sym_await] = ACTIONS(3625), + [anon_sym_api] = ACTIONS(3625), + [sym_true] = ACTIONS(3625), + [sym_false] = ACTIONS(3625), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3625), + [anon_sym_include] = ACTIONS(3625), + [anon_sym_DEF] = ACTIONS(3625), + [anon_sym_IF] = ACTIONS(3625), + [anon_sym_cdef] = ACTIONS(3625), + [anon_sym_cpdef] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3625), + [anon_sym_ctypedef] = ACTIONS(3625), + [anon_sym_public] = ACTIONS(3625), + [anon_sym_packed] = ACTIONS(3625), + [anon_sym_inline] = ACTIONS(3625), + [anon_sym_readonly] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3625), + [sym_string_start] = ACTIONS(3623), + }, + [1324] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5657), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), @@ -168316,8 +157502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -168326,727 +157512,3535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1325] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5199), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1326] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5209), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1327] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5211), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1328] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1329] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5215), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1330] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5585), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1331] = { + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_cimport] = ACTIONS(3399), + [anon_sym_from] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_print] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_del] = ACTIONS(3399), + [anon_sym_raise] = ACTIONS(3399), + [anon_sym_pass] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_def] = ACTIONS(3399), + [anon_sym_global] = ACTIONS(3399), + [anon_sym_nonlocal] = ACTIONS(3399), + [anon_sym_exec] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_lambda] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), + [anon_sym_None] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3401), + [anon_sym_0X] = ACTIONS(3401), + [anon_sym_0o] = ACTIONS(3401), + [anon_sym_0O] = ACTIONS(3401), + [anon_sym_0b] = ACTIONS(3401), + [anon_sym_0B] = ACTIONS(3401), + [aux_sym_integer_token4] = ACTIONS(3399), + [sym_float] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_api] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3399), + [anon_sym_include] = ACTIONS(3399), + [anon_sym_DEF] = ACTIONS(3399), + [anon_sym_IF] = ACTIONS(3399), + [anon_sym_cdef] = ACTIONS(3399), + [anon_sym_cpdef] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_ctypedef] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_packed] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_sizeof] = ACTIONS(3399), + [sym_string_start] = ACTIONS(3401), + }, + [1332] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), [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), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1333] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5110), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1334] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_cimport] = ACTIONS(3403), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_print] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_del] = ACTIONS(3403), + [anon_sym_raise] = ACTIONS(3403), + [anon_sym_pass] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_def] = ACTIONS(3403), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_nonlocal] = ACTIONS(3403), + [anon_sym_exec] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_lambda] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), + [anon_sym_None] = ACTIONS(3403), + [anon_sym_0x] = ACTIONS(3405), + [anon_sym_0X] = ACTIONS(3405), + [anon_sym_0o] = ACTIONS(3405), + [anon_sym_0O] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3405), + [anon_sym_0B] = ACTIONS(3405), + [aux_sym_integer_token4] = ACTIONS(3403), + [sym_float] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_api] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3403), + [anon_sym_include] = ACTIONS(3403), + [anon_sym_DEF] = ACTIONS(3403), + [anon_sym_IF] = ACTIONS(3403), + [anon_sym_cdef] = ACTIONS(3403), + [anon_sym_cpdef] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_ctypedef] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_packed] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3403), + [sym_string_start] = ACTIONS(3405), + }, + [1335] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1336] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5133), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1337] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3409), + [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_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), + [anon_sym_0x] = ACTIONS(3409), + [anon_sym_0X] = ACTIONS(3409), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0O] = ACTIONS(3409), + [anon_sym_0b] = ACTIONS(3409), + [anon_sym_0B] = ACTIONS(3409), + [aux_sym_integer_token4] = 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), + }, + [1338] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5236), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1339] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5239), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1340] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5242), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1341] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1342] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5244), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1343] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5190), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1344] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5372), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1345] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), [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), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1346] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5174), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1347] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3195), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [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), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1348] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5249), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1349] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4257), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1350] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5033), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1351] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5056), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1352] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5004), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1353] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1354] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5087), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1355] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5684), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1356] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5179), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1357] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5454), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1358] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2984), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1359] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5089), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1360] = { + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3645), + [anon_sym_SEMI] = ACTIONS(3643), + [anon_sym_import] = ACTIONS(3645), + [anon_sym_cimport] = ACTIONS(3645), + [anon_sym_from] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_STAR] = ACTIONS(3643), + [anon_sym_print] = ACTIONS(3645), + [anon_sym_assert] = ACTIONS(3645), + [anon_sym_return] = ACTIONS(3645), + [anon_sym_del] = ACTIONS(3645), + [anon_sym_raise] = ACTIONS(3645), + [anon_sym_pass] = ACTIONS(3645), + [anon_sym_break] = ACTIONS(3645), + [anon_sym_continue] = ACTIONS(3645), + [anon_sym_if] = ACTIONS(3645), + [anon_sym_match] = ACTIONS(3645), + [anon_sym_async] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3645), + [anon_sym_while] = ACTIONS(3645), + [anon_sym_try] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3645), + [anon_sym_def] = ACTIONS(3645), + [anon_sym_global] = ACTIONS(3645), + [anon_sym_nonlocal] = ACTIONS(3645), + [anon_sym_exec] = ACTIONS(3645), + [anon_sym_type] = ACTIONS(3645), + [anon_sym_class] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3643), + [anon_sym_AT] = ACTIONS(3643), + [anon_sym_DASH] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_PLUS] = ACTIONS(3643), + [anon_sym_not] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3643), + [anon_sym_TILDE] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_lambda] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), + [anon_sym_None] = ACTIONS(3645), + [anon_sym_0x] = ACTIONS(3643), + [anon_sym_0X] = ACTIONS(3643), + [anon_sym_0o] = ACTIONS(3643), + [anon_sym_0O] = ACTIONS(3643), + [anon_sym_0b] = ACTIONS(3643), + [anon_sym_0B] = ACTIONS(3643), + [aux_sym_integer_token4] = ACTIONS(3645), + [sym_float] = ACTIONS(3643), + [anon_sym_await] = ACTIONS(3645), + [anon_sym_api] = ACTIONS(3645), + [sym_true] = ACTIONS(3645), + [sym_false] = ACTIONS(3645), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3645), + [anon_sym_include] = ACTIONS(3645), + [anon_sym_DEF] = ACTIONS(3645), + [anon_sym_IF] = ACTIONS(3645), + [anon_sym_cdef] = ACTIONS(3645), + [anon_sym_cpdef] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_ctypedef] = ACTIONS(3645), + [anon_sym_public] = ACTIONS(3645), + [anon_sym_packed] = ACTIONS(3645), + [anon_sym_inline] = ACTIONS(3645), + [anon_sym_readonly] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3645), + [sym_string_start] = ACTIONS(3643), + }, + [1361] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5690), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1362] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1363] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5012), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1364] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5095), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1365] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5024), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1366] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5086), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1367] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5065), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1368] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5088), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1369] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3181), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), [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), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [1370] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5090), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1371] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5552), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1372] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [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), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [1474] = { + [1373] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5023), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1374] = { [ts_builtin_sym_end] = ACTIONS(3653), [sym_identifier] = ACTIONS(3655), [anon_sym_SEMI] = ACTIONS(3653), @@ -169118,1490 +161112,5018 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1375] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5590), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1376] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5591), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1377] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5539), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1378] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3579), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1379] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5569), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1380] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3514), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1381] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5588), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1382] = { + [ts_builtin_sym_end] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3665), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym_import] = ACTIONS(3665), + [anon_sym_cimport] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_print] = ACTIONS(3665), + [anon_sym_assert] = ACTIONS(3665), + [anon_sym_return] = ACTIONS(3665), + [anon_sym_del] = ACTIONS(3665), + [anon_sym_raise] = ACTIONS(3665), + [anon_sym_pass] = ACTIONS(3665), + [anon_sym_break] = ACTIONS(3665), + [anon_sym_continue] = ACTIONS(3665), + [anon_sym_if] = ACTIONS(3665), + [anon_sym_match] = ACTIONS(3665), + [anon_sym_async] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3665), + [anon_sym_while] = ACTIONS(3665), + [anon_sym_try] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [anon_sym_def] = ACTIONS(3665), + [anon_sym_global] = ACTIONS(3665), + [anon_sym_nonlocal] = ACTIONS(3665), + [anon_sym_exec] = ACTIONS(3665), + [anon_sym_type] = ACTIONS(3665), + [anon_sym_class] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3663), + [anon_sym_AT] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_lambda] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [anon_sym_None] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3663), + [anon_sym_0X] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0O] = ACTIONS(3663), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0B] = ACTIONS(3663), + [aux_sym_integer_token4] = ACTIONS(3665), + [sym_float] = ACTIONS(3663), + [anon_sym_await] = ACTIONS(3665), + [anon_sym_api] = ACTIONS(3665), + [sym_true] = ACTIONS(3665), + [sym_false] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3665), + [anon_sym_include] = ACTIONS(3665), + [anon_sym_DEF] = ACTIONS(3665), + [anon_sym_IF] = ACTIONS(3665), + [anon_sym_cdef] = ACTIONS(3665), + [anon_sym_cpdef] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3665), + [anon_sym_ctypedef] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3665), + [anon_sym_packed] = ACTIONS(3665), + [anon_sym_inline] = ACTIONS(3665), + [anon_sym_readonly] = ACTIONS(3665), + [anon_sym_sizeof] = ACTIONS(3665), + [sym_string_start] = ACTIONS(3663), }, - [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), + [1383] = { + [ts_builtin_sym_end] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3667), + [anon_sym_import] = ACTIONS(3669), + [anon_sym_cimport] = ACTIONS(3669), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_STAR] = ACTIONS(3667), + [anon_sym_print] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_del] = ACTIONS(3669), + [anon_sym_raise] = ACTIONS(3669), + [anon_sym_pass] = ACTIONS(3669), + [anon_sym_break] = ACTIONS(3669), + [anon_sym_continue] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_async] = ACTIONS(3669), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_with] = ACTIONS(3669), + [anon_sym_def] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_nonlocal] = ACTIONS(3669), + [anon_sym_exec] = ACTIONS(3669), + [anon_sym_type] = ACTIONS(3669), + [anon_sym_class] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_AT] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_not] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3667), + [anon_sym_LT] = ACTIONS(3667), + [anon_sym_lambda] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), + [anon_sym_None] = ACTIONS(3669), + [anon_sym_0x] = ACTIONS(3667), + [anon_sym_0X] = ACTIONS(3667), + [anon_sym_0o] = ACTIONS(3667), + [anon_sym_0O] = ACTIONS(3667), + [anon_sym_0b] = ACTIONS(3667), + [anon_sym_0B] = ACTIONS(3667), + [aux_sym_integer_token4] = ACTIONS(3669), + [sym_float] = ACTIONS(3667), + [anon_sym_await] = ACTIONS(3669), + [anon_sym_api] = ACTIONS(3669), + [sym_true] = ACTIONS(3669), + [sym_false] = ACTIONS(3669), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3669), + [anon_sym_include] = ACTIONS(3669), + [anon_sym_DEF] = ACTIONS(3669), + [anon_sym_IF] = ACTIONS(3669), + [anon_sym_cdef] = ACTIONS(3669), + [anon_sym_cpdef] = ACTIONS(3669), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_ctypedef] = ACTIONS(3669), + [anon_sym_public] = ACTIONS(3669), + [anon_sym_packed] = ACTIONS(3669), + [anon_sym_inline] = ACTIONS(3669), + [anon_sym_readonly] = ACTIONS(3669), + [anon_sym_sizeof] = ACTIONS(3669), + [sym_string_start] = ACTIONS(3667), }, - [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), + [1384] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5825), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1385] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3525), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1386] = { + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_import] = ACTIONS(3673), + [anon_sym_cimport] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3673), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_print] = ACTIONS(3673), + [anon_sym_assert] = ACTIONS(3673), + [anon_sym_return] = ACTIONS(3673), + [anon_sym_del] = ACTIONS(3673), + [anon_sym_raise] = ACTIONS(3673), + [anon_sym_pass] = ACTIONS(3673), + [anon_sym_break] = ACTIONS(3673), + [anon_sym_continue] = ACTIONS(3673), + [anon_sym_if] = ACTIONS(3673), + [anon_sym_match] = ACTIONS(3673), + [anon_sym_async] = ACTIONS(3673), + [anon_sym_for] = ACTIONS(3673), + [anon_sym_while] = ACTIONS(3673), + [anon_sym_try] = ACTIONS(3673), + [anon_sym_with] = ACTIONS(3673), + [anon_sym_def] = ACTIONS(3673), + [anon_sym_global] = ACTIONS(3673), + [anon_sym_nonlocal] = ACTIONS(3673), + [anon_sym_exec] = ACTIONS(3673), + [anon_sym_type] = ACTIONS(3673), + [anon_sym_class] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_AT] = ACTIONS(3671), + [anon_sym_DASH] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3671), + [anon_sym_not] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3671), + [anon_sym_TILDE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_lambda] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), + [anon_sym_None] = ACTIONS(3673), + [anon_sym_0x] = ACTIONS(3671), + [anon_sym_0X] = ACTIONS(3671), + [anon_sym_0o] = ACTIONS(3671), + [anon_sym_0O] = ACTIONS(3671), + [anon_sym_0b] = ACTIONS(3671), + [anon_sym_0B] = ACTIONS(3671), + [aux_sym_integer_token4] = ACTIONS(3673), + [sym_float] = ACTIONS(3671), + [anon_sym_await] = ACTIONS(3673), + [anon_sym_api] = ACTIONS(3673), + [sym_true] = ACTIONS(3673), + [sym_false] = ACTIONS(3673), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3673), + [anon_sym_include] = ACTIONS(3673), + [anon_sym_DEF] = ACTIONS(3673), + [anon_sym_IF] = ACTIONS(3673), + [anon_sym_cdef] = ACTIONS(3673), + [anon_sym_cpdef] = ACTIONS(3673), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_ctypedef] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3673), + [anon_sym_packed] = ACTIONS(3673), + [anon_sym_inline] = ACTIONS(3673), + [anon_sym_readonly] = ACTIONS(3673), + [anon_sym_sizeof] = ACTIONS(3673), + [sym_string_start] = ACTIONS(3671), }, - [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), + [1387] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5446), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1388] = { + [ts_builtin_sym_end] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(3675), + [anon_sym_import] = ACTIONS(3677), + [anon_sym_cimport] = ACTIONS(3677), + [anon_sym_from] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_STAR] = ACTIONS(3675), + [anon_sym_print] = ACTIONS(3677), + [anon_sym_assert] = ACTIONS(3677), + [anon_sym_return] = ACTIONS(3677), + [anon_sym_del] = ACTIONS(3677), + [anon_sym_raise] = ACTIONS(3677), + [anon_sym_pass] = ACTIONS(3677), + [anon_sym_break] = ACTIONS(3677), + [anon_sym_continue] = ACTIONS(3677), + [anon_sym_if] = ACTIONS(3677), + [anon_sym_match] = ACTIONS(3677), + [anon_sym_async] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3677), + [anon_sym_while] = ACTIONS(3677), + [anon_sym_try] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3677), + [anon_sym_def] = ACTIONS(3677), + [anon_sym_global] = ACTIONS(3677), + [anon_sym_nonlocal] = ACTIONS(3677), + [anon_sym_exec] = ACTIONS(3677), + [anon_sym_type] = ACTIONS(3677), + [anon_sym_class] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_AT] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_not] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3675), + [anon_sym_LT] = ACTIONS(3675), + [anon_sym_lambda] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), + [anon_sym_None] = ACTIONS(3677), + [anon_sym_0x] = ACTIONS(3675), + [anon_sym_0X] = ACTIONS(3675), + [anon_sym_0o] = ACTIONS(3675), + [anon_sym_0O] = ACTIONS(3675), + [anon_sym_0b] = ACTIONS(3675), + [anon_sym_0B] = ACTIONS(3675), + [aux_sym_integer_token4] = ACTIONS(3677), + [sym_float] = ACTIONS(3675), + [anon_sym_await] = ACTIONS(3677), + [anon_sym_api] = ACTIONS(3677), + [sym_true] = ACTIONS(3677), + [sym_false] = ACTIONS(3677), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3677), + [anon_sym_include] = ACTIONS(3677), + [anon_sym_DEF] = ACTIONS(3677), + [anon_sym_IF] = ACTIONS(3677), + [anon_sym_cdef] = ACTIONS(3677), + [anon_sym_cpdef] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3677), + [anon_sym_ctypedef] = ACTIONS(3677), + [anon_sym_public] = ACTIONS(3677), + [anon_sym_packed] = ACTIONS(3677), + [anon_sym_inline] = ACTIONS(3677), + [anon_sym_readonly] = ACTIONS(3677), + [anon_sym_sizeof] = ACTIONS(3677), + [sym_string_start] = ACTIONS(3675), + }, + [1389] = { + [ts_builtin_sym_end] = ACTIONS(3679), + [sym_identifier] = ACTIONS(3681), + [anon_sym_SEMI] = ACTIONS(3679), + [anon_sym_import] = ACTIONS(3681), + [anon_sym_cimport] = ACTIONS(3681), + [anon_sym_from] = ACTIONS(3681), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_print] = ACTIONS(3681), + [anon_sym_assert] = ACTIONS(3681), + [anon_sym_return] = ACTIONS(3681), + [anon_sym_del] = ACTIONS(3681), + [anon_sym_raise] = ACTIONS(3681), + [anon_sym_pass] = ACTIONS(3681), + [anon_sym_break] = ACTIONS(3681), + [anon_sym_continue] = ACTIONS(3681), + [anon_sym_if] = ACTIONS(3681), + [anon_sym_match] = ACTIONS(3681), + [anon_sym_async] = ACTIONS(3681), + [anon_sym_for] = ACTIONS(3681), + [anon_sym_while] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3681), + [anon_sym_with] = ACTIONS(3681), + [anon_sym_def] = ACTIONS(3681), + [anon_sym_global] = ACTIONS(3681), + [anon_sym_nonlocal] = ACTIONS(3681), + [anon_sym_exec] = ACTIONS(3681), + [anon_sym_type] = ACTIONS(3681), + [anon_sym_class] = ACTIONS(3681), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_AT] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_not] = ACTIONS(3681), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(3679), + [anon_sym_lambda] = ACTIONS(3681), + [anon_sym_yield] = ACTIONS(3681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), + [anon_sym_None] = ACTIONS(3681), + [anon_sym_0x] = ACTIONS(3679), + [anon_sym_0X] = ACTIONS(3679), + [anon_sym_0o] = ACTIONS(3679), + [anon_sym_0O] = ACTIONS(3679), + [anon_sym_0b] = ACTIONS(3679), + [anon_sym_0B] = ACTIONS(3679), + [aux_sym_integer_token4] = ACTIONS(3681), + [sym_float] = ACTIONS(3679), + [anon_sym_await] = ACTIONS(3681), + [anon_sym_api] = ACTIONS(3681), + [sym_true] = ACTIONS(3681), + [sym_false] = ACTIONS(3681), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3681), + [anon_sym_include] = ACTIONS(3681), + [anon_sym_DEF] = ACTIONS(3681), + [anon_sym_IF] = ACTIONS(3681), + [anon_sym_cdef] = ACTIONS(3681), + [anon_sym_cpdef] = ACTIONS(3681), + [anon_sym_new] = ACTIONS(3681), + [anon_sym_ctypedef] = ACTIONS(3681), + [anon_sym_public] = ACTIONS(3681), + [anon_sym_packed] = ACTIONS(3681), + [anon_sym_inline] = ACTIONS(3681), + [anon_sym_readonly] = ACTIONS(3681), + [anon_sym_sizeof] = ACTIONS(3681), + [sym_string_start] = ACTIONS(3679), + }, + [1390] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5080), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1391] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5040), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1392] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5014), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1393] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3436), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1394] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5064), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1395] = { + [ts_builtin_sym_end] = ACTIONS(3683), + [sym_identifier] = ACTIONS(3685), + [anon_sym_SEMI] = ACTIONS(3683), + [anon_sym_import] = ACTIONS(3685), + [anon_sym_cimport] = ACTIONS(3685), + [anon_sym_from] = ACTIONS(3685), + [anon_sym_LPAREN] = ACTIONS(3683), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_print] = ACTIONS(3685), + [anon_sym_assert] = ACTIONS(3685), + [anon_sym_return] = ACTIONS(3685), + [anon_sym_del] = ACTIONS(3685), + [anon_sym_raise] = ACTIONS(3685), + [anon_sym_pass] = ACTIONS(3685), + [anon_sym_break] = ACTIONS(3685), + [anon_sym_continue] = ACTIONS(3685), + [anon_sym_if] = ACTIONS(3685), + [anon_sym_match] = ACTIONS(3685), + [anon_sym_async] = ACTIONS(3685), + [anon_sym_for] = ACTIONS(3685), + [anon_sym_while] = ACTIONS(3685), + [anon_sym_try] = ACTIONS(3685), + [anon_sym_with] = ACTIONS(3685), + [anon_sym_def] = ACTIONS(3685), + [anon_sym_global] = ACTIONS(3685), + [anon_sym_nonlocal] = ACTIONS(3685), + [anon_sym_exec] = ACTIONS(3685), + [anon_sym_type] = ACTIONS(3685), + [anon_sym_class] = ACTIONS(3685), + [anon_sym_LBRACK] = ACTIONS(3683), + [anon_sym_AT] = ACTIONS(3683), + [anon_sym_DASH] = ACTIONS(3683), + [anon_sym_LBRACE] = ACTIONS(3683), + [anon_sym_PLUS] = ACTIONS(3683), + [anon_sym_not] = ACTIONS(3685), + [anon_sym_AMP] = ACTIONS(3683), + [anon_sym_TILDE] = ACTIONS(3683), + [anon_sym_LT] = ACTIONS(3683), + [anon_sym_lambda] = ACTIONS(3685), + [anon_sym_yield] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), + [anon_sym_None] = ACTIONS(3685), + [anon_sym_0x] = ACTIONS(3683), + [anon_sym_0X] = ACTIONS(3683), + [anon_sym_0o] = ACTIONS(3683), + [anon_sym_0O] = ACTIONS(3683), + [anon_sym_0b] = ACTIONS(3683), + [anon_sym_0B] = ACTIONS(3683), + [aux_sym_integer_token4] = ACTIONS(3685), + [sym_float] = ACTIONS(3683), + [anon_sym_await] = ACTIONS(3685), + [anon_sym_api] = ACTIONS(3685), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3685), + [anon_sym_include] = ACTIONS(3685), + [anon_sym_DEF] = ACTIONS(3685), + [anon_sym_IF] = ACTIONS(3685), + [anon_sym_cdef] = ACTIONS(3685), + [anon_sym_cpdef] = ACTIONS(3685), + [anon_sym_new] = ACTIONS(3685), + [anon_sym_ctypedef] = ACTIONS(3685), + [anon_sym_public] = ACTIONS(3685), + [anon_sym_packed] = ACTIONS(3685), + [anon_sym_inline] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3685), + [anon_sym_sizeof] = ACTIONS(3685), + [sym_string_start] = ACTIONS(3683), + }, + [1396] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3469), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1397] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5074), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1398] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3472), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), [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), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1399] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5051), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1400] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5662), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1401] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5664), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [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_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), [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), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1402] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5667), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1403] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1404] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5676), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1405] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), [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), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1406] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5692), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1407] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [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), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1408] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5699), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1409] = { + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_cimport] = ACTIONS(3455), + [anon_sym_from] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_print] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_del] = ACTIONS(3455), + [anon_sym_raise] = ACTIONS(3455), + [anon_sym_pass] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_def] = ACTIONS(3455), + [anon_sym_global] = ACTIONS(3455), + [anon_sym_nonlocal] = ACTIONS(3455), + [anon_sym_exec] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_lambda] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3457), + [anon_sym_None] = ACTIONS(3455), + [anon_sym_0x] = ACTIONS(3457), + [anon_sym_0X] = ACTIONS(3457), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0O] = ACTIONS(3457), + [anon_sym_0b] = ACTIONS(3457), + [anon_sym_0B] = ACTIONS(3457), + [aux_sym_integer_token4] = ACTIONS(3455), + [sym_float] = ACTIONS(3457), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_api] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3455), + [anon_sym_include] = ACTIONS(3455), + [anon_sym_DEF] = ACTIONS(3455), + [anon_sym_IF] = ACTIONS(3455), + [anon_sym_cdef] = ACTIONS(3455), + [anon_sym_cpdef] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_ctypedef] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_packed] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_sizeof] = ACTIONS(3455), + [sym_string_start] = ACTIONS(3457), + }, + [1410] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1411] = { + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3461), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_cimport] = ACTIONS(3459), + [anon_sym_from] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3461), + [anon_sym_print] = ACTIONS(3459), + [anon_sym_assert] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_del] = ACTIONS(3459), + [anon_sym_raise] = ACTIONS(3459), + [anon_sym_pass] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_match] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_def] = ACTIONS(3459), + [anon_sym_global] = ACTIONS(3459), + [anon_sym_nonlocal] = ACTIONS(3459), + [anon_sym_exec] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_AT] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_not] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_TILDE] = ACTIONS(3461), + [anon_sym_LT] = ACTIONS(3461), + [anon_sym_lambda] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3461), + [anon_sym_None] = ACTIONS(3459), + [anon_sym_0x] = ACTIONS(3461), + [anon_sym_0X] = ACTIONS(3461), + [anon_sym_0o] = ACTIONS(3461), + [anon_sym_0O] = ACTIONS(3461), + [anon_sym_0b] = ACTIONS(3461), + [anon_sym_0B] = ACTIONS(3461), + [aux_sym_integer_token4] = ACTIONS(3459), + [sym_float] = ACTIONS(3461), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_api] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3459), + [anon_sym_include] = ACTIONS(3459), + [anon_sym_DEF] = ACTIONS(3459), + [anon_sym_IF] = ACTIONS(3459), + [anon_sym_cdef] = ACTIONS(3459), + [anon_sym_cpdef] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_ctypedef] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_packed] = ACTIONS(3459), + [anon_sym_inline] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_sizeof] = ACTIONS(3459), + [sym_string_start] = ACTIONS(3461), + }, + [1412] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5217), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1413] = { + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3465), + [anon_sym_import] = ACTIONS(3463), + [anon_sym_cimport] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_print] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_del] = ACTIONS(3463), + [anon_sym_raise] = ACTIONS(3463), + [anon_sym_pass] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_async] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_def] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_nonlocal] = ACTIONS(3463), + [anon_sym_exec] = ACTIONS(3463), + [anon_sym_type] = ACTIONS(3463), + [anon_sym_class] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_AT] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3465), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_lambda] = ACTIONS(3463), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3465), + [anon_sym_None] = ACTIONS(3463), + [anon_sym_0x] = ACTIONS(3465), + [anon_sym_0X] = ACTIONS(3465), + [anon_sym_0o] = ACTIONS(3465), + [anon_sym_0O] = ACTIONS(3465), + [anon_sym_0b] = ACTIONS(3465), + [anon_sym_0B] = ACTIONS(3465), + [aux_sym_integer_token4] = ACTIONS(3463), + [sym_float] = ACTIONS(3465), + [anon_sym_await] = ACTIONS(3463), + [anon_sym_api] = ACTIONS(3463), + [sym_true] = ACTIONS(3463), + [sym_false] = ACTIONS(3463), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3463), + [anon_sym_include] = ACTIONS(3463), + [anon_sym_DEF] = ACTIONS(3463), + [anon_sym_IF] = ACTIONS(3463), + [anon_sym_cdef] = ACTIONS(3463), + [anon_sym_cpdef] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_ctypedef] = ACTIONS(3463), + [anon_sym_public] = ACTIONS(3463), + [anon_sym_packed] = ACTIONS(3463), + [anon_sym_inline] = ACTIONS(3463), + [anon_sym_readonly] = ACTIONS(3463), + [anon_sym_sizeof] = ACTIONS(3463), + [sym_string_start] = ACTIONS(3465), + }, + [1414] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5222), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1415] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5223), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4612), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1417] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5224), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1418] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1419] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5238), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1420] = { + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3469), + [anon_sym_import] = ACTIONS(3467), + [anon_sym_cimport] = ACTIONS(3467), + [anon_sym_from] = ACTIONS(3467), + [anon_sym_LPAREN] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3469), + [anon_sym_print] = ACTIONS(3467), + [anon_sym_assert] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_del] = ACTIONS(3467), + [anon_sym_raise] = ACTIONS(3467), + [anon_sym_pass] = ACTIONS(3467), + [anon_sym_break] = ACTIONS(3467), + [anon_sym_continue] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_async] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_with] = ACTIONS(3467), + [anon_sym_def] = ACTIONS(3467), + [anon_sym_global] = ACTIONS(3467), + [anon_sym_nonlocal] = ACTIONS(3467), + [anon_sym_exec] = ACTIONS(3467), + [anon_sym_type] = ACTIONS(3467), + [anon_sym_class] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_AT] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_not] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_lambda] = ACTIONS(3467), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_None] = ACTIONS(3467), + [anon_sym_0x] = ACTIONS(3469), + [anon_sym_0X] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3469), + [anon_sym_0O] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0B] = ACTIONS(3469), + [aux_sym_integer_token4] = ACTIONS(3467), + [sym_float] = ACTIONS(3469), + [anon_sym_await] = ACTIONS(3467), + [anon_sym_api] = ACTIONS(3467), + [sym_true] = ACTIONS(3467), + [sym_false] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3467), + [anon_sym_include] = ACTIONS(3467), + [anon_sym_DEF] = ACTIONS(3467), + [anon_sym_IF] = ACTIONS(3467), + [anon_sym_cdef] = ACTIONS(3467), + [anon_sym_cpdef] = ACTIONS(3467), + [anon_sym_new] = ACTIONS(3467), + [anon_sym_ctypedef] = ACTIONS(3467), + [anon_sym_public] = ACTIONS(3467), + [anon_sym_packed] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_readonly] = ACTIONS(3467), + [anon_sym_sizeof] = ACTIONS(3467), + [sym_string_start] = ACTIONS(3469), + }, + [1421] = { + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3471), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym_import] = ACTIONS(3471), + [anon_sym_cimport] = ACTIONS(3471), + [anon_sym_from] = ACTIONS(3471), + [anon_sym_LPAREN] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_print] = ACTIONS(3471), + [anon_sym_assert] = ACTIONS(3471), + [anon_sym_return] = ACTIONS(3471), + [anon_sym_del] = ACTIONS(3471), + [anon_sym_raise] = ACTIONS(3471), + [anon_sym_pass] = ACTIONS(3471), + [anon_sym_break] = ACTIONS(3471), + [anon_sym_continue] = ACTIONS(3471), + [anon_sym_if] = ACTIONS(3471), + [anon_sym_match] = ACTIONS(3471), + [anon_sym_async] = ACTIONS(3471), + [anon_sym_for] = ACTIONS(3471), + [anon_sym_while] = ACTIONS(3471), + [anon_sym_try] = ACTIONS(3471), + [anon_sym_with] = ACTIONS(3471), + [anon_sym_def] = ACTIONS(3471), + [anon_sym_global] = ACTIONS(3471), + [anon_sym_nonlocal] = ACTIONS(3471), + [anon_sym_exec] = ACTIONS(3471), + [anon_sym_type] = ACTIONS(3471), + [anon_sym_class] = ACTIONS(3471), + [anon_sym_LBRACK] = ACTIONS(3473), + [anon_sym_AT] = ACTIONS(3473), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3473), + [anon_sym_not] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_LT] = ACTIONS(3473), + [anon_sym_lambda] = ACTIONS(3471), + [anon_sym_yield] = ACTIONS(3471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), + [anon_sym_None] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3473), + [anon_sym_0X] = ACTIONS(3473), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0O] = ACTIONS(3473), + [anon_sym_0b] = ACTIONS(3473), + [anon_sym_0B] = ACTIONS(3473), + [aux_sym_integer_token4] = ACTIONS(3471), + [sym_float] = ACTIONS(3473), + [anon_sym_await] = ACTIONS(3471), + [anon_sym_api] = ACTIONS(3471), + [sym_true] = ACTIONS(3471), + [sym_false] = ACTIONS(3471), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3471), + [anon_sym_include] = ACTIONS(3471), + [anon_sym_DEF] = ACTIONS(3471), + [anon_sym_IF] = ACTIONS(3471), + [anon_sym_cdef] = ACTIONS(3471), + [anon_sym_cpdef] = ACTIONS(3471), + [anon_sym_new] = ACTIONS(3471), + [anon_sym_ctypedef] = ACTIONS(3471), + [anon_sym_public] = ACTIONS(3471), + [anon_sym_packed] = ACTIONS(3471), + [anon_sym_inline] = ACTIONS(3471), + [anon_sym_readonly] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3471), + [sym_string_start] = ACTIONS(3473), + }, + [1422] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1423] = { + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym_import] = ACTIONS(3475), + [anon_sym_cimport] = ACTIONS(3475), + [anon_sym_from] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3477), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_print] = ACTIONS(3475), + [anon_sym_assert] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_del] = ACTIONS(3475), + [anon_sym_raise] = ACTIONS(3475), + [anon_sym_pass] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_async] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_with] = ACTIONS(3475), + [anon_sym_def] = ACTIONS(3475), + [anon_sym_global] = ACTIONS(3475), + [anon_sym_nonlocal] = ACTIONS(3475), + [anon_sym_exec] = ACTIONS(3475), + [anon_sym_type] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3477), + [anon_sym_AT] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3477), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_LT] = ACTIONS(3477), + [anon_sym_lambda] = ACTIONS(3475), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [anon_sym_None] = ACTIONS(3475), + [anon_sym_0x] = ACTIONS(3477), + [anon_sym_0X] = ACTIONS(3477), + [anon_sym_0o] = ACTIONS(3477), + [anon_sym_0O] = ACTIONS(3477), + [anon_sym_0b] = ACTIONS(3477), + [anon_sym_0B] = ACTIONS(3477), + [aux_sym_integer_token4] = ACTIONS(3475), + [sym_float] = ACTIONS(3477), + [anon_sym_await] = ACTIONS(3475), + [anon_sym_api] = ACTIONS(3475), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3475), + [anon_sym_include] = ACTIONS(3475), + [anon_sym_DEF] = ACTIONS(3475), + [anon_sym_IF] = ACTIONS(3475), + [anon_sym_cdef] = ACTIONS(3475), + [anon_sym_cpdef] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_ctypedef] = ACTIONS(3475), + [anon_sym_public] = ACTIONS(3475), + [anon_sym_packed] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym_readonly] = ACTIONS(3475), + [anon_sym_sizeof] = ACTIONS(3475), + [sym_string_start] = ACTIONS(3477), + }, + [1424] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5128), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1425] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4230), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [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_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), [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), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1426] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4232), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1427] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4233), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1428] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1429] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4266), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1430] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4243), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1431] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4235), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1432] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4248), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1433] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4236), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1434] = { + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym_import] = ACTIONS(3479), + [anon_sym_cimport] = ACTIONS(3479), + [anon_sym_from] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_print] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_del] = ACTIONS(3479), + [anon_sym_raise] = ACTIONS(3479), + [anon_sym_pass] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_async] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_with] = ACTIONS(3479), + [anon_sym_def] = ACTIONS(3479), + [anon_sym_global] = ACTIONS(3479), + [anon_sym_nonlocal] = ACTIONS(3479), + [anon_sym_exec] = ACTIONS(3479), + [anon_sym_type] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3481), + [anon_sym_AT] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_LT] = ACTIONS(3481), + [anon_sym_lambda] = ACTIONS(3479), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [anon_sym_None] = ACTIONS(3479), + [anon_sym_0x] = ACTIONS(3481), + [anon_sym_0X] = ACTIONS(3481), + [anon_sym_0o] = ACTIONS(3481), + [anon_sym_0O] = ACTIONS(3481), + [anon_sym_0b] = ACTIONS(3481), + [anon_sym_0B] = ACTIONS(3481), + [aux_sym_integer_token4] = ACTIONS(3479), + [sym_float] = ACTIONS(3481), + [anon_sym_await] = ACTIONS(3479), + [anon_sym_api] = ACTIONS(3479), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3479), + [anon_sym_include] = ACTIONS(3479), + [anon_sym_DEF] = ACTIONS(3479), + [anon_sym_IF] = ACTIONS(3479), + [anon_sym_cdef] = ACTIONS(3479), + [anon_sym_cpdef] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_ctypedef] = ACTIONS(3479), + [anon_sym_public] = ACTIONS(3479), + [anon_sym_packed] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym_readonly] = ACTIONS(3479), + [anon_sym_sizeof] = ACTIONS(3479), + [sym_string_start] = ACTIONS(3481), + }, + [1435] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4143), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1436] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4153), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1437] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4156), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1438] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1439] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4157), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1440] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4173), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1441] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4144), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1442] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4174), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1443] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(4145), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1444] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5450), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -170620,8 +166142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -170630,122 +166152,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1445] = { + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_import] = ACTIONS(3483), + [anon_sym_cimport] = ACTIONS(3483), + [anon_sym_from] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3485), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_print] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_del] = ACTIONS(3483), + [anon_sym_raise] = ACTIONS(3483), + [anon_sym_pass] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_async] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_def] = ACTIONS(3483), + [anon_sym_global] = ACTIONS(3483), + [anon_sym_nonlocal] = ACTIONS(3483), + [anon_sym_exec] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3485), + [anon_sym_AT] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3485), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_lambda] = ACTIONS(3483), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [anon_sym_None] = ACTIONS(3483), + [anon_sym_0x] = ACTIONS(3485), + [anon_sym_0X] = ACTIONS(3485), + [anon_sym_0o] = ACTIONS(3485), + [anon_sym_0O] = ACTIONS(3485), + [anon_sym_0b] = ACTIONS(3485), + [anon_sym_0B] = ACTIONS(3485), + [aux_sym_integer_token4] = ACTIONS(3483), + [sym_float] = ACTIONS(3485), + [anon_sym_await] = ACTIONS(3483), + [anon_sym_api] = ACTIONS(3483), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3483), + [anon_sym_include] = ACTIONS(3483), + [anon_sym_DEF] = ACTIONS(3483), + [anon_sym_IF] = ACTIONS(3483), + [anon_sym_cdef] = ACTIONS(3483), + [anon_sym_cpdef] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_ctypedef] = ACTIONS(3483), + [anon_sym_public] = ACTIONS(3483), + [anon_sym_packed] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym_readonly] = ACTIONS(3483), + [anon_sym_sizeof] = ACTIONS(3483), + [sym_string_start] = ACTIONS(3485), }, - [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), + [1446] = { + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_import] = ACTIONS(3487), + [anon_sym_cimport] = ACTIONS(3487), + [anon_sym_from] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_print] = ACTIONS(3487), + [anon_sym_assert] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_del] = ACTIONS(3487), + [anon_sym_raise] = ACTIONS(3487), + [anon_sym_pass] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_async] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_with] = ACTIONS(3487), + [anon_sym_def] = ACTIONS(3487), + [anon_sym_global] = ACTIONS(3487), + [anon_sym_nonlocal] = ACTIONS(3487), + [anon_sym_exec] = ACTIONS(3487), + [anon_sym_type] = ACTIONS(3487), + [anon_sym_class] = ACTIONS(3487), + [anon_sym_LBRACK] = ACTIONS(3489), + [anon_sym_AT] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3489), + [anon_sym_not] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3489), + [anon_sym_lambda] = ACTIONS(3487), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_None] = ACTIONS(3487), + [anon_sym_0x] = ACTIONS(3489), + [anon_sym_0X] = ACTIONS(3489), + [anon_sym_0o] = ACTIONS(3489), + [anon_sym_0O] = ACTIONS(3489), + [anon_sym_0b] = ACTIONS(3489), + [anon_sym_0B] = ACTIONS(3489), + [aux_sym_integer_token4] = ACTIONS(3487), + [sym_float] = ACTIONS(3489), + [anon_sym_await] = ACTIONS(3487), + [anon_sym_api] = ACTIONS(3487), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3487), + [anon_sym_include] = ACTIONS(3487), + [anon_sym_DEF] = ACTIONS(3487), + [anon_sym_IF] = ACTIONS(3487), + [anon_sym_cdef] = ACTIONS(3487), + [anon_sym_cpdef] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_ctypedef] = ACTIONS(3487), + [anon_sym_public] = ACTIONS(3487), + [anon_sym_packed] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_readonly] = ACTIONS(3487), + [anon_sym_sizeof] = ACTIONS(3487), + [sym_string_start] = ACTIONS(3489), + }, + [1447] = { + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(3493), + [anon_sym_import] = ACTIONS(3491), + [anon_sym_cimport] = ACTIONS(3491), + [anon_sym_from] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_print] = ACTIONS(3491), + [anon_sym_assert] = ACTIONS(3491), + [anon_sym_return] = ACTIONS(3491), + [anon_sym_del] = ACTIONS(3491), + [anon_sym_raise] = ACTIONS(3491), + [anon_sym_pass] = ACTIONS(3491), + [anon_sym_break] = ACTIONS(3491), + [anon_sym_continue] = ACTIONS(3491), + [anon_sym_if] = ACTIONS(3491), + [anon_sym_match] = ACTIONS(3491), + [anon_sym_async] = ACTIONS(3491), + [anon_sym_for] = ACTIONS(3491), + [anon_sym_while] = ACTIONS(3491), + [anon_sym_try] = ACTIONS(3491), + [anon_sym_with] = ACTIONS(3491), + [anon_sym_def] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3491), + [anon_sym_nonlocal] = ACTIONS(3491), + [anon_sym_exec] = ACTIONS(3491), + [anon_sym_type] = ACTIONS(3491), + [anon_sym_class] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_AT] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_lambda] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), + [anon_sym_None] = ACTIONS(3491), + [anon_sym_0x] = ACTIONS(3493), + [anon_sym_0X] = ACTIONS(3493), + [anon_sym_0o] = ACTIONS(3493), + [anon_sym_0O] = ACTIONS(3493), + [anon_sym_0b] = ACTIONS(3493), + [anon_sym_0B] = ACTIONS(3493), + [aux_sym_integer_token4] = ACTIONS(3491), + [sym_float] = ACTIONS(3493), + [anon_sym_await] = ACTIONS(3491), + [anon_sym_api] = ACTIONS(3491), + [sym_true] = ACTIONS(3491), + [sym_false] = ACTIONS(3491), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3491), + [anon_sym_include] = ACTIONS(3491), + [anon_sym_DEF] = ACTIONS(3491), + [anon_sym_IF] = ACTIONS(3491), + [anon_sym_cdef] = ACTIONS(3491), + [anon_sym_cpdef] = ACTIONS(3491), + [anon_sym_new] = ACTIONS(3491), + [anon_sym_ctypedef] = ACTIONS(3491), + [anon_sym_public] = ACTIONS(3491), + [anon_sym_packed] = ACTIONS(3491), + [anon_sym_inline] = ACTIONS(3491), + [anon_sym_readonly] = ACTIONS(3491), + [anon_sym_sizeof] = ACTIONS(3491), + [sym_string_start] = ACTIONS(3493), + }, + [1448] = { + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3497), + [anon_sym_import] = ACTIONS(3495), + [anon_sym_cimport] = ACTIONS(3495), + [anon_sym_from] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_print] = ACTIONS(3495), + [anon_sym_assert] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_del] = ACTIONS(3495), + [anon_sym_raise] = ACTIONS(3495), + [anon_sym_pass] = ACTIONS(3495), + [anon_sym_break] = ACTIONS(3495), + [anon_sym_continue] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_async] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3495), + [anon_sym_def] = ACTIONS(3495), + [anon_sym_global] = ACTIONS(3495), + [anon_sym_nonlocal] = ACTIONS(3495), + [anon_sym_exec] = ACTIONS(3495), + [anon_sym_type] = ACTIONS(3495), + [anon_sym_class] = ACTIONS(3495), + [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(3495), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_lambda] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_None] = ACTIONS(3495), + [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(3495), + [sym_float] = ACTIONS(3497), + [anon_sym_await] = ACTIONS(3495), + [anon_sym_api] = ACTIONS(3495), + [sym_true] = ACTIONS(3495), + [sym_false] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3495), + [anon_sym_include] = ACTIONS(3495), + [anon_sym_DEF] = ACTIONS(3495), + [anon_sym_IF] = ACTIONS(3495), + [anon_sym_cdef] = ACTIONS(3495), + [anon_sym_cpdef] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3495), + [anon_sym_ctypedef] = ACTIONS(3495), + [anon_sym_public] = ACTIONS(3495), + [anon_sym_packed] = ACTIONS(3495), + [anon_sym_inline] = ACTIONS(3495), + [anon_sym_readonly] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3495), + [sym_string_start] = ACTIONS(3497), + }, + [1449] = { + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_import] = ACTIONS(3499), + [anon_sym_cimport] = ACTIONS(3499), + [anon_sym_from] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [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(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(3499), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_lambda] = ACTIONS(3499), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), + [anon_sym_None] = ACTIONS(3499), + [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(3499), + [sym_float] = ACTIONS(3501), + [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(3501), + }, + [1450] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1451] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5532), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -170764,8 +166646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -170774,79 +166656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [1452] = { [ts_builtin_sym_end] = ACTIONS(3733), [sym_identifier] = ACTIONS(3735), [anon_sym_SEMI] = ACTIONS(3733), @@ -170918,7 +166728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3735), [sym_string_start] = ACTIONS(3733), }, - [1500] = { + [1453] = { [ts_builtin_sym_end] = ACTIONS(3737), [sym_identifier] = ACTIONS(3739), [anon_sym_SEMI] = ACTIONS(3737), @@ -170990,7 +166800,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3739), [sym_string_start] = ACTIONS(3737), }, - [1501] = { + [1454] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5339), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1455] = { [ts_builtin_sym_end] = ACTIONS(3741), [sym_identifier] = ACTIONS(3743), [anon_sym_SEMI] = ACTIONS(3741), @@ -171062,7 +166944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3743), [sym_string_start] = ACTIONS(3741), }, - [1502] = { + [1456] = { [ts_builtin_sym_end] = ACTIONS(3745), [sym_identifier] = ACTIONS(3747), [anon_sym_SEMI] = ACTIONS(3745), @@ -171134,7 +167016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3747), [sym_string_start] = ACTIONS(3745), }, - [1503] = { + [1457] = { [ts_builtin_sym_end] = ACTIONS(3749), [sym_identifier] = ACTIONS(3751), [anon_sym_SEMI] = ACTIONS(3749), @@ -171206,231 +167088,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1458] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5342), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1459] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5352), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [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), + [1460] = { + [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), + }, + [1461] = { + [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), + }, + [1462] = { + [ts_builtin_sym_end] = ACTIONS(3753), + [sym_identifier] = ACTIONS(3755), + [anon_sym_SEMI] = ACTIONS(3757), + [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), + }, + [1463] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1464] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5467), + [sym_primary_expression] = STATE(2791), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3360), + [sym_subscript] = STATE(3360), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(3761), + [anon_sym_match] = ACTIONS(3761), + [anon_sym_async] = ACTIONS(3761), + [anon_sym_exec] = ACTIONS(3761), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(3763), + [anon_sym_api] = ACTIONS(3761), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1465] = { + [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), @@ -171494,7 +167664,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3767), [sym_string_start] = ACTIONS(3765), }, - [1508] = { + [1466] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5555), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1467] = { [ts_builtin_sym_end] = ACTIONS(3769), [sym_identifier] = ACTIONS(3771), [anon_sym_SEMI] = ACTIONS(3769), @@ -171566,7 +167808,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3771), [sym_string_start] = ACTIONS(3769), }, - [1509] = { + [1468] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1469] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4935), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1470] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1471] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3091), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1472] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1473] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3094), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1474] = { [ts_builtin_sym_end] = ACTIONS(3773), [sym_identifier] = ACTIONS(3775), [anon_sym_SEMI] = ACTIONS(3773), @@ -171638,7 +168312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3775), [sym_string_start] = ACTIONS(3773), }, - [1510] = { + [1475] = { [ts_builtin_sym_end] = ACTIONS(3777), [sym_identifier] = ACTIONS(3779), [anon_sym_SEMI] = ACTIONS(3777), @@ -171710,10 +168384,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3779), [sym_string_start] = ACTIONS(3777), }, - [1511] = { + [1476] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5309), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1477] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5458), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1478] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5477), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1479] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3098), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1480] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5471), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1481] = { [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), @@ -171733,6 +168766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3783), [anon_sym_while] = ACTIONS(3783), [anon_sym_try] = ACTIONS(3783), + [anon_sym_finally] = ACTIONS(3783), [anon_sym_with] = ACTIONS(3783), [anon_sym_def] = ACTIONS(3783), [anon_sym_global] = ACTIONS(3783), @@ -171782,10 +168816,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3783), [sym_string_start] = ACTIONS(3781), }, - [1512] = { + [1482] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5294), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1483] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5520), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1484] = { [ts_builtin_sym_end] = ACTIONS(3785), [sym_identifier] = ACTIONS(3787), - [anon_sym_SEMI] = ACTIONS(3785), + [anon_sym_SEMI] = ACTIONS(3789), [anon_sym_import] = ACTIONS(3787), [anon_sym_cimport] = ACTIONS(3787), [anon_sym_from] = ACTIONS(3787), @@ -171854,202 +169032,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1485] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3099), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(3173), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_lambda] = ACTIONS(3175), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -172060,600 +169094,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1486] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5773), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1487] = { + [ts_builtin_sym_end] = ACTIONS(3791), + [sym_identifier] = ACTIONS(3793), + [anon_sym_SEMI] = ACTIONS(3791), + [anon_sym_import] = ACTIONS(3793), + [anon_sym_cimport] = ACTIONS(3793), + [anon_sym_from] = ACTIONS(3793), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(3791), + [anon_sym_print] = ACTIONS(3793), + [anon_sym_assert] = ACTIONS(3793), + [anon_sym_return] = ACTIONS(3793), + [anon_sym_del] = ACTIONS(3793), + [anon_sym_raise] = ACTIONS(3793), + [anon_sym_pass] = ACTIONS(3793), + [anon_sym_break] = ACTIONS(3793), + [anon_sym_continue] = ACTIONS(3793), + [anon_sym_if] = ACTIONS(3793), + [anon_sym_match] = ACTIONS(3793), + [anon_sym_async] = ACTIONS(3793), + [anon_sym_for] = ACTIONS(3793), + [anon_sym_while] = ACTIONS(3793), + [anon_sym_try] = ACTIONS(3793), + [anon_sym_with] = ACTIONS(3793), + [anon_sym_def] = ACTIONS(3793), + [anon_sym_global] = ACTIONS(3793), + [anon_sym_nonlocal] = ACTIONS(3793), + [anon_sym_exec] = ACTIONS(3793), + [anon_sym_type] = ACTIONS(3793), + [anon_sym_class] = ACTIONS(3793), + [anon_sym_LBRACK] = ACTIONS(3791), + [anon_sym_AT] = ACTIONS(3791), + [anon_sym_DASH] = ACTIONS(3791), + [anon_sym_LBRACE] = ACTIONS(3791), + [anon_sym_PLUS] = ACTIONS(3791), + [anon_sym_not] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3791), + [anon_sym_TILDE] = ACTIONS(3791), + [anon_sym_LT] = ACTIONS(3791), + [anon_sym_lambda] = ACTIONS(3793), + [anon_sym_yield] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3791), + [anon_sym_None] = ACTIONS(3793), + [anon_sym_0x] = ACTIONS(3791), + [anon_sym_0X] = ACTIONS(3791), + [anon_sym_0o] = ACTIONS(3791), + [anon_sym_0O] = ACTIONS(3791), + [anon_sym_0b] = ACTIONS(3791), + [anon_sym_0B] = ACTIONS(3791), + [aux_sym_integer_token4] = ACTIONS(3793), + [sym_float] = ACTIONS(3791), + [anon_sym_await] = ACTIONS(3793), + [anon_sym_api] = ACTIONS(3793), + [sym_true] = ACTIONS(3793), + [sym_false] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3793), + [anon_sym_include] = ACTIONS(3793), + [anon_sym_DEF] = ACTIONS(3793), + [anon_sym_IF] = ACTIONS(3793), + [anon_sym_cdef] = ACTIONS(3793), + [anon_sym_cpdef] = ACTIONS(3793), + [anon_sym_new] = ACTIONS(3793), + [anon_sym_ctypedef] = ACTIONS(3793), + [anon_sym_public] = ACTIONS(3793), + [anon_sym_packed] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_readonly] = ACTIONS(3793), + [anon_sym_sizeof] = ACTIONS(3793), + [sym_string_start] = ACTIONS(3791), }, - [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), + [1488] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5719), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1489] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4944), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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_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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1490] = { + [ts_builtin_sym_end] = ACTIONS(3795), + [sym_identifier] = ACTIONS(3797), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym_import] = ACTIONS(3797), + [anon_sym_cimport] = ACTIONS(3797), + [anon_sym_from] = ACTIONS(3797), + [anon_sym_LPAREN] = ACTIONS(3795), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_print] = ACTIONS(3797), + [anon_sym_assert] = ACTIONS(3797), + [anon_sym_return] = ACTIONS(3797), + [anon_sym_del] = ACTIONS(3797), + [anon_sym_raise] = ACTIONS(3797), + [anon_sym_pass] = ACTIONS(3797), + [anon_sym_break] = ACTIONS(3797), + [anon_sym_continue] = ACTIONS(3797), + [anon_sym_if] = ACTIONS(3797), + [anon_sym_match] = ACTIONS(3797), + [anon_sym_async] = ACTIONS(3797), + [anon_sym_for] = ACTIONS(3797), + [anon_sym_while] = ACTIONS(3797), + [anon_sym_try] = ACTIONS(3797), + [anon_sym_with] = ACTIONS(3797), + [anon_sym_def] = ACTIONS(3797), + [anon_sym_global] = ACTIONS(3797), + [anon_sym_nonlocal] = ACTIONS(3797), + [anon_sym_exec] = ACTIONS(3797), + [anon_sym_type] = ACTIONS(3797), + [anon_sym_class] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(3795), + [anon_sym_AT] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_PLUS] = ACTIONS(3795), + [anon_sym_not] = ACTIONS(3797), + [anon_sym_AMP] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_LT] = ACTIONS(3795), + [anon_sym_lambda] = ACTIONS(3797), + [anon_sym_yield] = ACTIONS(3797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_None] = ACTIONS(3797), + [anon_sym_0x] = ACTIONS(3795), + [anon_sym_0X] = ACTIONS(3795), + [anon_sym_0o] = ACTIONS(3795), + [anon_sym_0O] = ACTIONS(3795), + [anon_sym_0b] = ACTIONS(3795), + [anon_sym_0B] = ACTIONS(3795), + [aux_sym_integer_token4] = ACTIONS(3797), + [sym_float] = ACTIONS(3795), + [anon_sym_await] = ACTIONS(3797), + [anon_sym_api] = ACTIONS(3797), + [sym_true] = ACTIONS(3797), + [sym_false] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3797), + [anon_sym_include] = ACTIONS(3797), + [anon_sym_DEF] = ACTIONS(3797), + [anon_sym_IF] = ACTIONS(3797), + [anon_sym_cdef] = ACTIONS(3797), + [anon_sym_cpdef] = ACTIONS(3797), + [anon_sym_new] = ACTIONS(3797), + [anon_sym_ctypedef] = ACTIONS(3797), + [anon_sym_public] = ACTIONS(3797), + [anon_sym_packed] = ACTIONS(3797), + [anon_sym_inline] = ACTIONS(3797), + [anon_sym_readonly] = ACTIONS(3797), + [anon_sym_sizeof] = ACTIONS(3797), + [sym_string_start] = ACTIONS(3795), }, - [1524] = { + [1491] = { + [ts_builtin_sym_end] = ACTIONS(3799), [sym_identifier] = ACTIONS(3801), - [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym_SEMI] = ACTIONS(3799), [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_LPAREN] = ACTIONS(3799), + [anon_sym_STAR] = ACTIONS(3799), [anon_sym_print] = ACTIONS(3801), [anon_sym_assert] = ACTIONS(3801), [anon_sym_return] = ACTIONS(3801), @@ -172675,27 +169494,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3799), + [anon_sym_AT] = ACTIONS(3799), + [anon_sym_DASH] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(3799), [anon_sym_not] = ACTIONS(3801), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3805), - [anon_sym_LT] = ACTIONS(3805), + [anon_sym_AMP] = ACTIONS(3799), + [anon_sym_TILDE] = ACTIONS(3799), + [anon_sym_LT] = ACTIONS(3799), [anon_sym_lambda] = ACTIONS(3801), [anon_sym_yield] = ACTIONS(3801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3799), [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), + [anon_sym_0x] = ACTIONS(3799), + [anon_sym_0X] = ACTIONS(3799), + [anon_sym_0o] = ACTIONS(3799), + [anon_sym_0O] = ACTIONS(3799), + [anon_sym_0b] = ACTIONS(3799), + [anon_sym_0B] = ACTIONS(3799), [aux_sym_integer_token4] = ACTIONS(3801), - [sym_float] = ACTIONS(3805), + [sym_float] = ACTIONS(3799), [anon_sym_await] = ACTIONS(3801), [anon_sym_api] = ACTIONS(3801), [sym_true] = ACTIONS(3801), @@ -172715,565 +169534,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3801), [anon_sym_readonly] = ACTIONS(3801), [anon_sym_sizeof] = ACTIONS(3801), - [sym__dedent] = ACTIONS(3805), - [sym_string_start] = ACTIONS(3805), + [sym_string_start] = ACTIONS(3799), }, - [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), + [1492] = { + [ts_builtin_sym_end] = ACTIONS(3803), + [sym_identifier] = ACTIONS(3805), + [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym_import] = ACTIONS(3805), + [anon_sym_cimport] = ACTIONS(3805), + [anon_sym_from] = ACTIONS(3805), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_print] = ACTIONS(3805), + [anon_sym_assert] = ACTIONS(3805), + [anon_sym_return] = ACTIONS(3805), + [anon_sym_del] = ACTIONS(3805), + [anon_sym_raise] = ACTIONS(3805), + [anon_sym_pass] = ACTIONS(3805), + [anon_sym_break] = ACTIONS(3805), + [anon_sym_continue] = ACTIONS(3805), + [anon_sym_if] = ACTIONS(3805), + [anon_sym_match] = ACTIONS(3805), + [anon_sym_async] = ACTIONS(3805), + [anon_sym_for] = ACTIONS(3805), + [anon_sym_while] = ACTIONS(3805), + [anon_sym_try] = ACTIONS(3805), + [anon_sym_with] = ACTIONS(3805), + [anon_sym_def] = ACTIONS(3805), + [anon_sym_global] = ACTIONS(3805), + [anon_sym_nonlocal] = ACTIONS(3805), + [anon_sym_exec] = ACTIONS(3805), + [anon_sym_type] = ACTIONS(3805), + [anon_sym_class] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3803), + [anon_sym_AT] = ACTIONS(3803), + [anon_sym_DASH] = ACTIONS(3803), + [anon_sym_LBRACE] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(3803), + [anon_sym_not] = ACTIONS(3805), + [anon_sym_AMP] = ACTIONS(3803), + [anon_sym_TILDE] = ACTIONS(3803), + [anon_sym_LT] = ACTIONS(3803), + [anon_sym_lambda] = ACTIONS(3805), + [anon_sym_yield] = ACTIONS(3805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3803), + [anon_sym_None] = ACTIONS(3805), + [anon_sym_0x] = ACTIONS(3803), + [anon_sym_0X] = ACTIONS(3803), + [anon_sym_0o] = ACTIONS(3803), + [anon_sym_0O] = ACTIONS(3803), + [anon_sym_0b] = ACTIONS(3803), + [anon_sym_0B] = ACTIONS(3803), + [aux_sym_integer_token4] = ACTIONS(3805), + [sym_float] = ACTIONS(3803), + [anon_sym_await] = ACTIONS(3805), + [anon_sym_api] = ACTIONS(3805), + [sym_true] = ACTIONS(3805), + [sym_false] = ACTIONS(3805), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3805), + [anon_sym_include] = ACTIONS(3805), + [anon_sym_DEF] = ACTIONS(3805), + [anon_sym_IF] = ACTIONS(3805), + [anon_sym_cdef] = ACTIONS(3805), + [anon_sym_cpdef] = ACTIONS(3805), + [anon_sym_new] = ACTIONS(3805), + [anon_sym_ctypedef] = ACTIONS(3805), + [anon_sym_public] = ACTIONS(3805), + [anon_sym_packed] = ACTIONS(3805), + [anon_sym_inline] = ACTIONS(3805), + [anon_sym_readonly] = ACTIONS(3805), + [anon_sym_sizeof] = ACTIONS(3805), + [sym_string_start] = ACTIONS(3803), }, - [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), + [1493] = { + [ts_builtin_sym_end] = ACTIONS(3807), + [sym_identifier] = ACTIONS(3809), + [anon_sym_SEMI] = ACTIONS(3807), + [anon_sym_import] = ACTIONS(3809), + [anon_sym_cimport] = ACTIONS(3809), + [anon_sym_from] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3807), + [anon_sym_print] = ACTIONS(3809), + [anon_sym_assert] = ACTIONS(3809), + [anon_sym_return] = ACTIONS(3809), + [anon_sym_del] = ACTIONS(3809), + [anon_sym_raise] = ACTIONS(3809), + [anon_sym_pass] = ACTIONS(3809), + [anon_sym_break] = ACTIONS(3809), + [anon_sym_continue] = ACTIONS(3809), + [anon_sym_if] = ACTIONS(3809), + [anon_sym_match] = ACTIONS(3809), + [anon_sym_async] = ACTIONS(3809), + [anon_sym_for] = ACTIONS(3809), + [anon_sym_while] = ACTIONS(3809), + [anon_sym_try] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [anon_sym_def] = ACTIONS(3809), + [anon_sym_global] = ACTIONS(3809), + [anon_sym_nonlocal] = ACTIONS(3809), + [anon_sym_exec] = ACTIONS(3809), + [anon_sym_type] = ACTIONS(3809), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3807), + [anon_sym_AT] = ACTIONS(3807), + [anon_sym_DASH] = ACTIONS(3807), + [anon_sym_LBRACE] = ACTIONS(3807), + [anon_sym_PLUS] = ACTIONS(3807), + [anon_sym_not] = ACTIONS(3809), + [anon_sym_AMP] = ACTIONS(3807), + [anon_sym_TILDE] = ACTIONS(3807), + [anon_sym_LT] = ACTIONS(3807), + [anon_sym_lambda] = ACTIONS(3809), + [anon_sym_yield] = ACTIONS(3809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3807), + [anon_sym_None] = ACTIONS(3809), + [anon_sym_0x] = ACTIONS(3807), + [anon_sym_0X] = ACTIONS(3807), + [anon_sym_0o] = ACTIONS(3807), + [anon_sym_0O] = ACTIONS(3807), + [anon_sym_0b] = ACTIONS(3807), + [anon_sym_0B] = ACTIONS(3807), + [aux_sym_integer_token4] = ACTIONS(3809), + [sym_float] = ACTIONS(3807), + [anon_sym_await] = ACTIONS(3809), + [anon_sym_api] = ACTIONS(3809), + [sym_true] = ACTIONS(3809), + [sym_false] = ACTIONS(3809), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3809), + [anon_sym_include] = ACTIONS(3809), + [anon_sym_DEF] = ACTIONS(3809), + [anon_sym_IF] = ACTIONS(3809), + [anon_sym_cdef] = ACTIONS(3809), + [anon_sym_cpdef] = ACTIONS(3809), + [anon_sym_new] = ACTIONS(3809), + [anon_sym_ctypedef] = ACTIONS(3809), + [anon_sym_public] = ACTIONS(3809), + [anon_sym_packed] = ACTIONS(3809), + [anon_sym_inline] = ACTIONS(3809), + [anon_sym_readonly] = ACTIONS(3809), + [anon_sym_sizeof] = ACTIONS(3809), + [sym_string_start] = ACTIONS(3807), }, - [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), + [1494] = { + [ts_builtin_sym_end] = ACTIONS(3811), + [sym_identifier] = ACTIONS(3813), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_import] = ACTIONS(3813), + [anon_sym_cimport] = ACTIONS(3813), + [anon_sym_from] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3811), + [anon_sym_STAR] = ACTIONS(3811), + [anon_sym_print] = ACTIONS(3813), + [anon_sym_assert] = ACTIONS(3813), + [anon_sym_return] = ACTIONS(3813), + [anon_sym_del] = ACTIONS(3813), + [anon_sym_raise] = ACTIONS(3813), + [anon_sym_pass] = ACTIONS(3813), + [anon_sym_break] = ACTIONS(3813), + [anon_sym_continue] = ACTIONS(3813), + [anon_sym_if] = ACTIONS(3813), + [anon_sym_match] = ACTIONS(3813), + [anon_sym_async] = ACTIONS(3813), + [anon_sym_for] = ACTIONS(3813), + [anon_sym_while] = ACTIONS(3813), + [anon_sym_try] = ACTIONS(3813), + [anon_sym_with] = ACTIONS(3813), + [anon_sym_def] = ACTIONS(3813), + [anon_sym_global] = ACTIONS(3813), + [anon_sym_nonlocal] = ACTIONS(3813), + [anon_sym_exec] = ACTIONS(3813), + [anon_sym_type] = ACTIONS(3813), + [anon_sym_class] = ACTIONS(3813), + [anon_sym_LBRACK] = ACTIONS(3811), + [anon_sym_AT] = ACTIONS(3811), + [anon_sym_DASH] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3811), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_AMP] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3811), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_lambda] = ACTIONS(3813), + [anon_sym_yield] = ACTIONS(3813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3811), + [anon_sym_None] = ACTIONS(3813), + [anon_sym_0x] = ACTIONS(3811), + [anon_sym_0X] = ACTIONS(3811), + [anon_sym_0o] = ACTIONS(3811), + [anon_sym_0O] = ACTIONS(3811), + [anon_sym_0b] = ACTIONS(3811), + [anon_sym_0B] = ACTIONS(3811), + [aux_sym_integer_token4] = ACTIONS(3813), + [sym_float] = ACTIONS(3811), + [anon_sym_await] = ACTIONS(3813), + [anon_sym_api] = ACTIONS(3813), + [sym_true] = ACTIONS(3813), + [sym_false] = ACTIONS(3813), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3813), + [anon_sym_include] = ACTIONS(3813), + [anon_sym_DEF] = ACTIONS(3813), + [anon_sym_IF] = ACTIONS(3813), + [anon_sym_cdef] = ACTIONS(3813), + [anon_sym_cpdef] = ACTIONS(3813), + [anon_sym_new] = ACTIONS(3813), + [anon_sym_ctypedef] = ACTIONS(3813), + [anon_sym_public] = ACTIONS(3813), + [anon_sym_packed] = ACTIONS(3813), + [anon_sym_inline] = ACTIONS(3813), + [anon_sym_readonly] = ACTIONS(3813), + [anon_sym_sizeof] = ACTIONS(3813), + [sym_string_start] = ACTIONS(3811), }, - [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), + [1495] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5469), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1496] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5461), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1497] = { + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym_import] = ACTIONS(3503), + [anon_sym_cimport] = ACTIONS(3503), + [anon_sym_from] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [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(3505), + [anon_sym_AT] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_lambda] = ACTIONS(3503), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [anon_sym_None] = ACTIONS(3503), + [anon_sym_0x] = ACTIONS(3505), + [anon_sym_0X] = ACTIONS(3505), + [anon_sym_0o] = ACTIONS(3505), + [anon_sym_0O] = ACTIONS(3505), + [anon_sym_0b] = ACTIONS(3505), + [anon_sym_0B] = ACTIONS(3505), + [aux_sym_integer_token4] = ACTIONS(3503), + [sym_float] = ACTIONS(3505), + [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(3505), }, - [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), + [1498] = { + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3507), + [anon_sym_SEMI] = ACTIONS(3509), + [anon_sym_import] = ACTIONS(3507), + [anon_sym_cimport] = ACTIONS(3507), + [anon_sym_from] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_print] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_del] = ACTIONS(3507), + [anon_sym_raise] = ACTIONS(3507), + [anon_sym_pass] = ACTIONS(3507), + [anon_sym_break] = ACTIONS(3507), + [anon_sym_continue] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_async] = ACTIONS(3507), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_def] = ACTIONS(3507), + [anon_sym_global] = ACTIONS(3507), + [anon_sym_nonlocal] = ACTIONS(3507), + [anon_sym_exec] = ACTIONS(3507), + [anon_sym_type] = ACTIONS(3507), + [anon_sym_class] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_AT] = ACTIONS(3509), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3507), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_lambda] = ACTIONS(3507), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), + [anon_sym_None] = ACTIONS(3507), + [anon_sym_0x] = ACTIONS(3509), + [anon_sym_0X] = ACTIONS(3509), + [anon_sym_0o] = ACTIONS(3509), + [anon_sym_0O] = ACTIONS(3509), + [anon_sym_0b] = ACTIONS(3509), + [anon_sym_0B] = ACTIONS(3509), + [aux_sym_integer_token4] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [anon_sym_await] = ACTIONS(3507), + [anon_sym_api] = ACTIONS(3507), + [sym_true] = ACTIONS(3507), + [sym_false] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3507), + [anon_sym_include] = ACTIONS(3507), + [anon_sym_DEF] = ACTIONS(3507), + [anon_sym_IF] = ACTIONS(3507), + [anon_sym_cdef] = ACTIONS(3507), + [anon_sym_cpdef] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_ctypedef] = ACTIONS(3507), + [anon_sym_public] = ACTIONS(3507), + [anon_sym_packed] = ACTIONS(3507), + [anon_sym_inline] = ACTIONS(3507), + [anon_sym_readonly] = ACTIONS(3507), + [anon_sym_sizeof] = ACTIONS(3507), + [sym_string_start] = ACTIONS(3509), }, - [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), + [1499] = { + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3511), + [anon_sym_SEMI] = ACTIONS(3513), + [anon_sym_import] = ACTIONS(3511), + [anon_sym_cimport] = ACTIONS(3511), + [anon_sym_from] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3513), + [anon_sym_print] = ACTIONS(3511), + [anon_sym_assert] = ACTIONS(3511), + [anon_sym_return] = ACTIONS(3511), + [anon_sym_del] = ACTIONS(3511), + [anon_sym_raise] = ACTIONS(3511), + [anon_sym_pass] = ACTIONS(3511), + [anon_sym_break] = ACTIONS(3511), + [anon_sym_continue] = ACTIONS(3511), + [anon_sym_if] = ACTIONS(3511), + [anon_sym_match] = ACTIONS(3511), + [anon_sym_async] = ACTIONS(3511), + [anon_sym_for] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3511), + [anon_sym_try] = ACTIONS(3511), + [anon_sym_with] = ACTIONS(3511), + [anon_sym_def] = ACTIONS(3511), + [anon_sym_global] = ACTIONS(3511), + [anon_sym_nonlocal] = ACTIONS(3511), + [anon_sym_exec] = ACTIONS(3511), + [anon_sym_type] = ACTIONS(3511), + [anon_sym_class] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_AT] = ACTIONS(3513), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_TILDE] = ACTIONS(3513), + [anon_sym_LT] = ACTIONS(3513), + [anon_sym_lambda] = ACTIONS(3511), + [anon_sym_yield] = ACTIONS(3511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), + [anon_sym_None] = ACTIONS(3511), + [anon_sym_0x] = ACTIONS(3513), + [anon_sym_0X] = ACTIONS(3513), + [anon_sym_0o] = ACTIONS(3513), + [anon_sym_0O] = ACTIONS(3513), + [anon_sym_0b] = ACTIONS(3513), + [anon_sym_0B] = ACTIONS(3513), + [aux_sym_integer_token4] = ACTIONS(3511), + [sym_float] = ACTIONS(3513), + [anon_sym_await] = ACTIONS(3511), + [anon_sym_api] = ACTIONS(3511), + [sym_true] = ACTIONS(3511), + [sym_false] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3511), + [anon_sym_include] = ACTIONS(3511), + [anon_sym_DEF] = ACTIONS(3511), + [anon_sym_IF] = ACTIONS(3511), + [anon_sym_cdef] = ACTIONS(3511), + [anon_sym_cpdef] = ACTIONS(3511), + [anon_sym_new] = ACTIONS(3511), + [anon_sym_ctypedef] = ACTIONS(3511), + [anon_sym_public] = ACTIONS(3511), + [anon_sym_packed] = ACTIONS(3511), + [anon_sym_inline] = ACTIONS(3511), + [anon_sym_readonly] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3511), + [sym_string_start] = ACTIONS(3513), + }, + [1500] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4945), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -173284,8 +170174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -173294,2138 +170184,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1501] = { + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3515), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_import] = ACTIONS(3515), + [anon_sym_cimport] = ACTIONS(3515), + [anon_sym_from] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_print] = ACTIONS(3515), + [anon_sym_assert] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_del] = ACTIONS(3515), + [anon_sym_raise] = ACTIONS(3515), + [anon_sym_pass] = ACTIONS(3515), + [anon_sym_break] = ACTIONS(3515), + [anon_sym_continue] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_async] = ACTIONS(3515), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_with] = ACTIONS(3515), + [anon_sym_def] = ACTIONS(3515), + [anon_sym_global] = ACTIONS(3515), + [anon_sym_nonlocal] = ACTIONS(3515), + [anon_sym_exec] = ACTIONS(3515), + [anon_sym_type] = ACTIONS(3515), + [anon_sym_class] = ACTIONS(3515), + [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(3515), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_lambda] = ACTIONS(3515), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), + [anon_sym_None] = ACTIONS(3515), + [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(3515), + [sym_float] = ACTIONS(3517), + [anon_sym_await] = ACTIONS(3515), + [anon_sym_api] = ACTIONS(3515), + [sym_true] = ACTIONS(3515), + [sym_false] = ACTIONS(3515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3515), + [anon_sym_include] = ACTIONS(3515), + [anon_sym_DEF] = ACTIONS(3515), + [anon_sym_IF] = ACTIONS(3515), + [anon_sym_cdef] = ACTIONS(3515), + [anon_sym_cpdef] = ACTIONS(3515), + [anon_sym_new] = ACTIONS(3515), + [anon_sym_ctypedef] = ACTIONS(3515), + [anon_sym_public] = ACTIONS(3515), + [anon_sym_packed] = ACTIONS(3515), + [anon_sym_inline] = ACTIONS(3515), + [anon_sym_readonly] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3515), + [sym_string_start] = ACTIONS(3517), }, - [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), + [1502] = { + [ts_builtin_sym_end] = ACTIONS(3815), + [sym_identifier] = ACTIONS(3817), + [anon_sym_SEMI] = ACTIONS(3815), + [anon_sym_import] = ACTIONS(3817), + [anon_sym_cimport] = ACTIONS(3817), + [anon_sym_from] = ACTIONS(3817), + [anon_sym_LPAREN] = ACTIONS(3815), + [anon_sym_STAR] = ACTIONS(3815), + [anon_sym_print] = ACTIONS(3817), + [anon_sym_assert] = ACTIONS(3817), + [anon_sym_return] = ACTIONS(3817), + [anon_sym_del] = ACTIONS(3817), + [anon_sym_raise] = ACTIONS(3817), + [anon_sym_pass] = ACTIONS(3817), + [anon_sym_break] = ACTIONS(3817), + [anon_sym_continue] = ACTIONS(3817), + [anon_sym_if] = ACTIONS(3817), + [anon_sym_match] = ACTIONS(3817), + [anon_sym_async] = ACTIONS(3817), + [anon_sym_for] = ACTIONS(3817), + [anon_sym_while] = ACTIONS(3817), + [anon_sym_try] = ACTIONS(3817), + [anon_sym_with] = ACTIONS(3817), + [anon_sym_def] = ACTIONS(3817), + [anon_sym_global] = ACTIONS(3817), + [anon_sym_nonlocal] = ACTIONS(3817), + [anon_sym_exec] = ACTIONS(3817), + [anon_sym_type] = ACTIONS(3817), + [anon_sym_class] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(3815), + [anon_sym_AT] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_LBRACE] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_not] = ACTIONS(3817), + [anon_sym_AMP] = ACTIONS(3815), + [anon_sym_TILDE] = ACTIONS(3815), + [anon_sym_LT] = ACTIONS(3815), + [anon_sym_lambda] = ACTIONS(3817), + [anon_sym_yield] = ACTIONS(3817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3815), + [anon_sym_None] = ACTIONS(3817), + [anon_sym_0x] = ACTIONS(3815), + [anon_sym_0X] = ACTIONS(3815), + [anon_sym_0o] = ACTIONS(3815), + [anon_sym_0O] = ACTIONS(3815), + [anon_sym_0b] = ACTIONS(3815), + [anon_sym_0B] = ACTIONS(3815), + [aux_sym_integer_token4] = ACTIONS(3817), + [sym_float] = ACTIONS(3815), + [anon_sym_await] = ACTIONS(3817), + [anon_sym_api] = ACTIONS(3817), + [sym_true] = ACTIONS(3817), + [sym_false] = ACTIONS(3817), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3817), + [anon_sym_include] = ACTIONS(3817), + [anon_sym_DEF] = ACTIONS(3817), + [anon_sym_IF] = ACTIONS(3817), + [anon_sym_cdef] = ACTIONS(3817), + [anon_sym_cpdef] = ACTIONS(3817), + [anon_sym_new] = ACTIONS(3817), + [anon_sym_ctypedef] = ACTIONS(3817), + [anon_sym_public] = ACTIONS(3817), + [anon_sym_packed] = ACTIONS(3817), + [anon_sym_inline] = ACTIONS(3817), + [anon_sym_readonly] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3817), + [sym_string_start] = ACTIONS(3815), }, - [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), + [1503] = { + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_import] = ACTIONS(3519), + [anon_sym_cimport] = ACTIONS(3519), + [anon_sym_from] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3521), + [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(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(3519), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3521), + [anon_sym_lambda] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [anon_sym_None] = ACTIONS(3519), + [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(3519), + [sym_float] = ACTIONS(3521), + [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_new] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_string_start] = ACTIONS(1728), + [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(3521), }, - [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), + [1504] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5538), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(3819), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1505] = { + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_import] = ACTIONS(3523), + [anon_sym_cimport] = ACTIONS(3523), + [anon_sym_from] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3525), + [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(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(3523), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_lambda] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), + [anon_sym_None] = ACTIONS(3523), + [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(3523), + [sym_float] = ACTIONS(3525), + [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(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), + [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(3525), }, - [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), + [1506] = { + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3527), + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_import] = ACTIONS(3527), + [anon_sym_cimport] = ACTIONS(3527), + [anon_sym_from] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3529), + [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(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(3527), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_lambda] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), + [anon_sym_None] = ACTIONS(3527), + [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(3527), + [sym_float] = ACTIONS(3529), + [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_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), + [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(3529), }, - [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), + [1507] = { + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3531), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_import] = ACTIONS(3531), + [anon_sym_cimport] = ACTIONS(3531), + [anon_sym_from] = ACTIONS(3531), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [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(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(3531), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_lambda] = ACTIONS(3531), + [anon_sym_yield] = ACTIONS(3531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), + [anon_sym_None] = ACTIONS(3531), + [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(3531), + [sym_float] = ACTIONS(3533), + [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(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), + [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(3533), }, - [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), + [1508] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5700), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1509] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4612), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -175444,8 +170822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -175454,122 +170832,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1510] = { + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3535), + [anon_sym_SEMI] = ACTIONS(3537), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_cimport] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(3537), + [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(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(3535), + [anon_sym_AMP] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_LT] = ACTIONS(3537), + [anon_sym_lambda] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), + [anon_sym_None] = ACTIONS(3535), + [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(3535), + [sym_float] = ACTIONS(3537), + [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(3537), }, - [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), + [1511] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5559), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -175588,8 +170966,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -175598,151 +170976,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1512] = { + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [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_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(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2997), + [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(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), + [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(2997), }, - [1567] = { + [1513] = { + [ts_builtin_sym_end] = ACTIONS(3821), + [sym_identifier] = ACTIONS(3823), + [anon_sym_SEMI] = ACTIONS(3821), + [anon_sym_import] = ACTIONS(3823), + [anon_sym_cimport] = ACTIONS(3823), + [anon_sym_from] = ACTIONS(3823), + [anon_sym_LPAREN] = ACTIONS(3821), + [anon_sym_STAR] = ACTIONS(3821), + [anon_sym_print] = ACTIONS(3823), + [anon_sym_assert] = ACTIONS(3823), + [anon_sym_return] = ACTIONS(3823), + [anon_sym_del] = ACTIONS(3823), + [anon_sym_raise] = ACTIONS(3823), + [anon_sym_pass] = ACTIONS(3823), + [anon_sym_break] = ACTIONS(3823), + [anon_sym_continue] = ACTIONS(3823), + [anon_sym_if] = ACTIONS(3823), + [anon_sym_match] = ACTIONS(3823), + [anon_sym_async] = ACTIONS(3823), + [anon_sym_for] = ACTIONS(3823), + [anon_sym_while] = ACTIONS(3823), + [anon_sym_try] = ACTIONS(3823), + [anon_sym_with] = ACTIONS(3823), + [anon_sym_def] = ACTIONS(3823), + [anon_sym_global] = ACTIONS(3823), + [anon_sym_nonlocal] = ACTIONS(3823), + [anon_sym_exec] = ACTIONS(3823), + [anon_sym_type] = ACTIONS(3823), + [anon_sym_class] = ACTIONS(3823), + [anon_sym_LBRACK] = ACTIONS(3821), + [anon_sym_AT] = ACTIONS(3821), + [anon_sym_DASH] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_PLUS] = ACTIONS(3821), + [anon_sym_not] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(3821), + [anon_sym_TILDE] = ACTIONS(3821), + [anon_sym_LT] = ACTIONS(3821), + [anon_sym_lambda] = ACTIONS(3823), + [anon_sym_yield] = ACTIONS(3823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3821), + [anon_sym_None] = ACTIONS(3823), + [anon_sym_0x] = ACTIONS(3821), + [anon_sym_0X] = ACTIONS(3821), + [anon_sym_0o] = ACTIONS(3821), + [anon_sym_0O] = ACTIONS(3821), + [anon_sym_0b] = ACTIONS(3821), + [anon_sym_0B] = ACTIONS(3821), + [aux_sym_integer_token4] = ACTIONS(3823), + [sym_float] = ACTIONS(3821), + [anon_sym_await] = ACTIONS(3823), + [anon_sym_api] = ACTIONS(3823), + [sym_true] = ACTIONS(3823), + [sym_false] = ACTIONS(3823), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3823), + [anon_sym_include] = ACTIONS(3823), + [anon_sym_DEF] = ACTIONS(3823), + [anon_sym_IF] = ACTIONS(3823), + [anon_sym_cdef] = ACTIONS(3823), + [anon_sym_cpdef] = ACTIONS(3823), + [anon_sym_new] = ACTIONS(3823), + [anon_sym_ctypedef] = ACTIONS(3823), + [anon_sym_public] = ACTIONS(3823), + [anon_sym_packed] = ACTIONS(3823), + [anon_sym_inline] = ACTIONS(3823), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_sizeof] = ACTIONS(3823), + [sym_string_start] = ACTIONS(3821), + }, + [1514] = { [ts_builtin_sym_end] = ACTIONS(3825), [sym_identifier] = ACTIONS(3827), [anon_sym_SEMI] = ACTIONS(3825), @@ -175814,7 +171192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3827), [sym_string_start] = ACTIONS(3825), }, - [1568] = { + [1515] = { [ts_builtin_sym_end] = ACTIONS(3829), [sym_identifier] = ACTIONS(3831), [anon_sym_SEMI] = ACTIONS(3829), @@ -175886,7 +171264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3831), [sym_string_start] = ACTIONS(3829), }, - [1569] = { + [1516] = { [ts_builtin_sym_end] = ACTIONS(3833), [sym_identifier] = ACTIONS(3835), [anon_sym_SEMI] = ACTIONS(3833), @@ -175958,1346 +171336,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1517] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5417), [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_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1518] = { + [ts_builtin_sym_end] = ACTIONS(3837), + [sym_identifier] = ACTIONS(3839), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_import] = ACTIONS(3839), + [anon_sym_cimport] = ACTIONS(3839), + [anon_sym_from] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3837), + [anon_sym_STAR] = ACTIONS(3837), + [anon_sym_print] = ACTIONS(3839), + [anon_sym_assert] = ACTIONS(3839), + [anon_sym_return] = ACTIONS(3839), + [anon_sym_del] = ACTIONS(3839), + [anon_sym_raise] = ACTIONS(3839), + [anon_sym_pass] = ACTIONS(3839), + [anon_sym_break] = ACTIONS(3839), + [anon_sym_continue] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_async] = ACTIONS(3839), + [anon_sym_for] = ACTIONS(3839), + [anon_sym_while] = ACTIONS(3839), + [anon_sym_try] = ACTIONS(3839), + [anon_sym_with] = ACTIONS(3839), + [anon_sym_def] = ACTIONS(3839), + [anon_sym_global] = ACTIONS(3839), + [anon_sym_nonlocal] = ACTIONS(3839), + [anon_sym_exec] = ACTIONS(3839), + [anon_sym_type] = ACTIONS(3839), + [anon_sym_class] = ACTIONS(3839), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_AT] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(3837), + [anon_sym_PLUS] = ACTIONS(3837), + [anon_sym_not] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_lambda] = ACTIONS(3839), + [anon_sym_yield] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3837), + [anon_sym_None] = ACTIONS(3839), + [anon_sym_0x] = ACTIONS(3837), + [anon_sym_0X] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(3837), + [anon_sym_0O] = ACTIONS(3837), + [anon_sym_0b] = ACTIONS(3837), + [anon_sym_0B] = ACTIONS(3837), + [aux_sym_integer_token4] = ACTIONS(3839), + [sym_float] = ACTIONS(3837), + [anon_sym_await] = ACTIONS(3839), + [anon_sym_api] = ACTIONS(3839), + [sym_true] = ACTIONS(3839), + [sym_false] = ACTIONS(3839), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3839), + [anon_sym_include] = ACTIONS(3839), + [anon_sym_DEF] = ACTIONS(3839), + [anon_sym_IF] = ACTIONS(3839), + [anon_sym_cdef] = ACTIONS(3839), + [anon_sym_cpdef] = ACTIONS(3839), + [anon_sym_new] = ACTIONS(3839), + [anon_sym_ctypedef] = ACTIONS(3839), + [anon_sym_public] = ACTIONS(3839), + [anon_sym_packed] = ACTIONS(3839), + [anon_sym_inline] = ACTIONS(3839), + [anon_sym_readonly] = ACTIONS(3839), + [anon_sym_sizeof] = ACTIONS(3839), + [sym_string_start] = ACTIONS(3837), }, - [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), + [1519] = { + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [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_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(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2997), + [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(2997), }, - [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), + [1520] = { + [ts_builtin_sym_end] = ACTIONS(3841), + [sym_identifier] = ACTIONS(3843), + [anon_sym_SEMI] = ACTIONS(3841), + [anon_sym_import] = ACTIONS(3843), + [anon_sym_cimport] = ACTIONS(3843), + [anon_sym_from] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(3841), + [anon_sym_print] = ACTIONS(3843), + [anon_sym_assert] = ACTIONS(3843), + [anon_sym_return] = ACTIONS(3843), + [anon_sym_del] = ACTIONS(3843), + [anon_sym_raise] = ACTIONS(3843), + [anon_sym_pass] = ACTIONS(3843), + [anon_sym_break] = ACTIONS(3843), + [anon_sym_continue] = ACTIONS(3843), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_async] = ACTIONS(3843), + [anon_sym_for] = ACTIONS(3843), + [anon_sym_while] = ACTIONS(3843), + [anon_sym_try] = ACTIONS(3843), + [anon_sym_with] = ACTIONS(3843), + [anon_sym_def] = ACTIONS(3843), + [anon_sym_global] = ACTIONS(3843), + [anon_sym_nonlocal] = ACTIONS(3843), + [anon_sym_exec] = ACTIONS(3843), + [anon_sym_type] = ACTIONS(3843), + [anon_sym_class] = ACTIONS(3843), + [anon_sym_LBRACK] = ACTIONS(3841), + [anon_sym_AT] = ACTIONS(3841), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_not] = ACTIONS(3843), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_TILDE] = ACTIONS(3841), + [anon_sym_LT] = ACTIONS(3841), + [anon_sym_lambda] = ACTIONS(3843), + [anon_sym_yield] = ACTIONS(3843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [anon_sym_None] = ACTIONS(3843), + [anon_sym_0x] = ACTIONS(3841), + [anon_sym_0X] = ACTIONS(3841), + [anon_sym_0o] = ACTIONS(3841), + [anon_sym_0O] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3841), + [anon_sym_0B] = ACTIONS(3841), + [aux_sym_integer_token4] = ACTIONS(3843), + [sym_float] = ACTIONS(3841), + [anon_sym_await] = ACTIONS(3843), + [anon_sym_api] = ACTIONS(3843), + [sym_true] = ACTIONS(3843), + [sym_false] = ACTIONS(3843), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3843), + [anon_sym_include] = ACTIONS(3843), + [anon_sym_DEF] = ACTIONS(3843), + [anon_sym_IF] = ACTIONS(3843), + [anon_sym_cdef] = ACTIONS(3843), + [anon_sym_cpdef] = ACTIONS(3843), + [anon_sym_new] = ACTIONS(3843), + [anon_sym_ctypedef] = ACTIONS(3843), + [anon_sym_public] = ACTIONS(3843), + [anon_sym_packed] = ACTIONS(3843), + [anon_sym_inline] = ACTIONS(3843), + [anon_sym_readonly] = ACTIONS(3843), + [anon_sym_sizeof] = ACTIONS(3843), + [sym_string_start] = ACTIONS(3841), }, - [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), + [1521] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5297), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_string_start] = ACTIONS(1728), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1522] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5340), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1523] = { + [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_new] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_string_start] = ACTIONS(1728), + [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), }, - [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), + [1524] = { + [ts_builtin_sym_end] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_import] = ACTIONS(3047), + [anon_sym_cimport] = ACTIONS(3047), + [anon_sym_from] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_print] = ACTIONS(3047), + [anon_sym_assert] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_del] = ACTIONS(3047), + [anon_sym_raise] = ACTIONS(3047), + [anon_sym_pass] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_def] = ACTIONS(3047), + [anon_sym_global] = ACTIONS(3047), + [anon_sym_nonlocal] = ACTIONS(3047), + [anon_sym_exec] = ACTIONS(3047), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_AT] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_not] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3049), + [anon_sym_None] = ACTIONS(3047), + [anon_sym_0x] = ACTIONS(3049), + [anon_sym_0X] = ACTIONS(3049), + [anon_sym_0o] = ACTIONS(3049), + [anon_sym_0O] = ACTIONS(3049), + [anon_sym_0b] = ACTIONS(3049), + [anon_sym_0B] = ACTIONS(3049), + [aux_sym_integer_token4] = ACTIONS(3047), + [sym_float] = ACTIONS(3049), + [anon_sym_await] = ACTIONS(3047), + [anon_sym_api] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3047), + [anon_sym_include] = ACTIONS(3047), + [anon_sym_DEF] = ACTIONS(3047), + [anon_sym_IF] = ACTIONS(3047), + [anon_sym_cdef] = ACTIONS(3047), + [anon_sym_cpdef] = ACTIONS(3047), + [anon_sym_new] = ACTIONS(3047), + [anon_sym_ctypedef] = ACTIONS(3047), + [anon_sym_public] = ACTIONS(3047), + [anon_sym_packed] = ACTIONS(3047), + [anon_sym_inline] = ACTIONS(3047), + [anon_sym_readonly] = ACTIONS(3047), + [anon_sym_sizeof] = ACTIONS(3047), + [sym_string_start] = ACTIONS(3049), }, - [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), + [1525] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5358), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -177316,8 +171974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -177326,50 +171984,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1526] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5256), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -177388,8 +172046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -177398,194 +172056,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1527] = { + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [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_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(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2997), + [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(2997), }, - [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), + [1528] = { + [ts_builtin_sym_end] = ACTIONS(3001), + [sym_identifier] = ACTIONS(2999), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_cimport] = ACTIONS(2999), + [anon_sym_from] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_print] = ACTIONS(2999), + [anon_sym_assert] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_del] = ACTIONS(2999), + [anon_sym_raise] = ACTIONS(2999), + [anon_sym_pass] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_def] = ACTIONS(2999), + [anon_sym_global] = ACTIONS(2999), + [anon_sym_nonlocal] = ACTIONS(2999), + [anon_sym_exec] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_not] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_lambda] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), + [anon_sym_None] = ACTIONS(2999), + [anon_sym_0x] = ACTIONS(3001), + [anon_sym_0X] = ACTIONS(3001), + [anon_sym_0o] = ACTIONS(3001), + [anon_sym_0O] = ACTIONS(3001), + [anon_sym_0b] = ACTIONS(3001), + [anon_sym_0B] = ACTIONS(3001), + [aux_sym_integer_token4] = ACTIONS(2999), + [sym_float] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_api] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2999), + [anon_sym_include] = ACTIONS(2999), + [anon_sym_DEF] = ACTIONS(2999), + [anon_sym_IF] = ACTIONS(2999), + [anon_sym_cdef] = ACTIONS(2999), + [anon_sym_cpdef] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_ctypedef] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_packed] = ACTIONS(2999), + [anon_sym_inline] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2999), + [sym_string_start] = ACTIONS(3001), }, - [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), + [1529] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4946), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -177604,8 +172262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -177614,3298 +172272,3082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1530] = { + [ts_builtin_sym_end] = ACTIONS(3845), + [sym_identifier] = ACTIONS(3847), + [anon_sym_SEMI] = ACTIONS(3845), + [anon_sym_import] = ACTIONS(3847), + [anon_sym_cimport] = ACTIONS(3847), + [anon_sym_from] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3845), + [anon_sym_print] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_del] = ACTIONS(3847), + [anon_sym_raise] = ACTIONS(3847), + [anon_sym_pass] = ACTIONS(3847), + [anon_sym_break] = ACTIONS(3847), + [anon_sym_continue] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_async] = ACTIONS(3847), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_def] = ACTIONS(3847), + [anon_sym_global] = ACTIONS(3847), + [anon_sym_nonlocal] = ACTIONS(3847), + [anon_sym_exec] = ACTIONS(3847), + [anon_sym_type] = ACTIONS(3847), + [anon_sym_class] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3845), + [anon_sym_AT] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3845), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_not] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3845), + [anon_sym_TILDE] = ACTIONS(3845), + [anon_sym_LT] = ACTIONS(3845), + [anon_sym_lambda] = ACTIONS(3847), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3845), + [anon_sym_None] = ACTIONS(3847), + [anon_sym_0x] = ACTIONS(3845), + [anon_sym_0X] = ACTIONS(3845), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0O] = ACTIONS(3845), + [anon_sym_0b] = ACTIONS(3845), + [anon_sym_0B] = ACTIONS(3845), + [aux_sym_integer_token4] = ACTIONS(3847), + [sym_float] = ACTIONS(3845), + [anon_sym_await] = ACTIONS(3847), + [anon_sym_api] = ACTIONS(3847), + [sym_true] = ACTIONS(3847), + [sym_false] = ACTIONS(3847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3847), + [anon_sym_include] = ACTIONS(3847), + [anon_sym_DEF] = ACTIONS(3847), + [anon_sym_IF] = ACTIONS(3847), + [anon_sym_cdef] = ACTIONS(3847), + [anon_sym_cpdef] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_ctypedef] = ACTIONS(3847), + [anon_sym_public] = ACTIONS(3847), + [anon_sym_packed] = ACTIONS(3847), + [anon_sym_inline] = ACTIONS(3847), + [anon_sym_readonly] = ACTIONS(3847), + [anon_sym_sizeof] = ACTIONS(3847), + [sym_string_start] = ACTIONS(3845), }, - [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), + [1531] = { + [ts_builtin_sym_end] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3007), + [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3007), + [anon_sym_cimport] = ACTIONS(3007), + [anon_sym_from] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_print] = ACTIONS(3007), + [anon_sym_assert] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_del] = ACTIONS(3007), + [anon_sym_raise] = ACTIONS(3007), + [anon_sym_pass] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_async] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_try] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3007), + [anon_sym_def] = ACTIONS(3007), + [anon_sym_global] = ACTIONS(3007), + [anon_sym_nonlocal] = ACTIONS(3007), + [anon_sym_exec] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_class] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_AT] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_not] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_lambda] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3009), + [anon_sym_None] = ACTIONS(3007), + [anon_sym_0x] = ACTIONS(3009), + [anon_sym_0X] = ACTIONS(3009), + [anon_sym_0o] = ACTIONS(3009), + [anon_sym_0O] = ACTIONS(3009), + [anon_sym_0b] = ACTIONS(3009), + [anon_sym_0B] = ACTIONS(3009), + [aux_sym_integer_token4] = ACTIONS(3007), + [sym_float] = ACTIONS(3009), + [anon_sym_await] = ACTIONS(3007), + [anon_sym_api] = ACTIONS(3007), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3007), + [anon_sym_include] = ACTIONS(3007), + [anon_sym_DEF] = ACTIONS(3007), + [anon_sym_IF] = ACTIONS(3007), + [anon_sym_cdef] = ACTIONS(3007), + [anon_sym_cpdef] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_ctypedef] = ACTIONS(3007), + [anon_sym_public] = ACTIONS(3007), + [anon_sym_packed] = ACTIONS(3007), + [anon_sym_inline] = ACTIONS(3007), + [anon_sym_readonly] = ACTIONS(3007), + [anon_sym_sizeof] = ACTIONS(3007), + [sym_string_start] = ACTIONS(3009), }, - [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), + [1532] = { + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_identifier] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_cimport] = ACTIONS(3011), + [anon_sym_from] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_print] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_del] = ACTIONS(3011), + [anon_sym_raise] = ACTIONS(3011), + [anon_sym_pass] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_def] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_nonlocal] = ACTIONS(3011), + [anon_sym_exec] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_lambda] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_None] = ACTIONS(3011), + [anon_sym_0x] = ACTIONS(3013), + [anon_sym_0X] = ACTIONS(3013), + [anon_sym_0o] = ACTIONS(3013), + [anon_sym_0O] = ACTIONS(3013), + [anon_sym_0b] = ACTIONS(3013), + [anon_sym_0B] = ACTIONS(3013), + [aux_sym_integer_token4] = ACTIONS(3011), + [sym_float] = ACTIONS(3013), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_api] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3011), + [anon_sym_include] = ACTIONS(3011), + [anon_sym_DEF] = ACTIONS(3011), + [anon_sym_IF] = ACTIONS(3011), + [anon_sym_cdef] = ACTIONS(3011), + [anon_sym_cpdef] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_ctypedef] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_packed] = ACTIONS(3011), + [anon_sym_inline] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3011), + [sym_string_start] = ACTIONS(3013), }, - [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), + [1533] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3015), + [anon_sym_SEMI] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3015), + [anon_sym_cimport] = ACTIONS(3015), + [anon_sym_from] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_del] = ACTIONS(3015), + [anon_sym_raise] = ACTIONS(3015), + [anon_sym_pass] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_async] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_while] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3015), + [anon_sym_with] = ACTIONS(3015), + [anon_sym_def] = ACTIONS(3015), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_nonlocal] = ACTIONS(3015), + [anon_sym_exec] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_None] = ACTIONS(3015), + [anon_sym_0x] = ACTIONS(3017), + [anon_sym_0X] = ACTIONS(3017), + [anon_sym_0o] = ACTIONS(3017), + [anon_sym_0O] = ACTIONS(3017), + [anon_sym_0b] = ACTIONS(3017), + [anon_sym_0B] = ACTIONS(3017), + [aux_sym_integer_token4] = ACTIONS(3015), + [sym_float] = ACTIONS(3017), + [anon_sym_await] = ACTIONS(3015), + [anon_sym_api] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3015), + [anon_sym_include] = ACTIONS(3015), + [anon_sym_DEF] = ACTIONS(3015), + [anon_sym_IF] = ACTIONS(3015), + [anon_sym_cdef] = ACTIONS(3015), + [anon_sym_cpdef] = ACTIONS(3015), + [anon_sym_new] = ACTIONS(3015), + [anon_sym_ctypedef] = ACTIONS(3015), + [anon_sym_public] = ACTIONS(3015), + [anon_sym_packed] = ACTIONS(3015), + [anon_sym_inline] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3015), + [sym_string_start] = ACTIONS(3017), }, - [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), + [1534] = { + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3019), + [anon_sym_SEMI] = ACTIONS(3021), + [anon_sym_import] = ACTIONS(3019), + [anon_sym_cimport] = ACTIONS(3019), + [anon_sym_from] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_print] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_del] = ACTIONS(3019), + [anon_sym_raise] = ACTIONS(3019), + [anon_sym_pass] = ACTIONS(3019), + [anon_sym_break] = ACTIONS(3019), + [anon_sym_continue] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_while] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3019), + [anon_sym_with] = ACTIONS(3019), + [anon_sym_def] = ACTIONS(3019), + [anon_sym_global] = ACTIONS(3019), + [anon_sym_nonlocal] = ACTIONS(3019), + [anon_sym_exec] = ACTIONS(3019), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_class] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_lambda] = ACTIONS(3019), + [anon_sym_yield] = ACTIONS(3019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), + [anon_sym_None] = ACTIONS(3019), + [anon_sym_0x] = ACTIONS(3021), + [anon_sym_0X] = ACTIONS(3021), + [anon_sym_0o] = ACTIONS(3021), + [anon_sym_0O] = ACTIONS(3021), + [anon_sym_0b] = ACTIONS(3021), + [anon_sym_0B] = ACTIONS(3021), + [aux_sym_integer_token4] = ACTIONS(3019), + [sym_float] = ACTIONS(3021), + [anon_sym_await] = ACTIONS(3019), + [anon_sym_api] = ACTIONS(3019), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3019), + [anon_sym_include] = ACTIONS(3019), + [anon_sym_DEF] = ACTIONS(3019), + [anon_sym_IF] = ACTIONS(3019), + [anon_sym_cdef] = ACTIONS(3019), + [anon_sym_cpdef] = ACTIONS(3019), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_ctypedef] = ACTIONS(3019), + [anon_sym_public] = ACTIONS(3019), + [anon_sym_packed] = ACTIONS(3019), + [anon_sym_inline] = ACTIONS(3019), + [anon_sym_readonly] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3019), + [sym_string_start] = ACTIONS(3021), }, - [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), + [1535] = { + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(3025), + [anon_sym_import] = ACTIONS(3023), + [anon_sym_cimport] = ACTIONS(3023), + [anon_sym_from] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_print] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_del] = ACTIONS(3023), + [anon_sym_raise] = ACTIONS(3023), + [anon_sym_pass] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_def] = ACTIONS(3023), + [anon_sym_global] = ACTIONS(3023), + [anon_sym_nonlocal] = ACTIONS(3023), + [anon_sym_exec] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_not] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_lambda] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), + [anon_sym_None] = ACTIONS(3023), + [anon_sym_0x] = ACTIONS(3025), + [anon_sym_0X] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3025), + [anon_sym_0O] = ACTIONS(3025), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0B] = ACTIONS(3025), + [aux_sym_integer_token4] = ACTIONS(3023), + [sym_float] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3023), + [anon_sym_api] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3023), + [anon_sym_include] = ACTIONS(3023), + [anon_sym_DEF] = ACTIONS(3023), + [anon_sym_IF] = ACTIONS(3023), + [anon_sym_cdef] = ACTIONS(3023), + [anon_sym_cpdef] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_ctypedef] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_packed] = ACTIONS(3023), + [anon_sym_inline] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3023), + [sym_string_start] = ACTIONS(3025), + }, + [1536] = { + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_import] = ACTIONS(3027), + [anon_sym_cimport] = ACTIONS(3027), + [anon_sym_from] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_print] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_del] = ACTIONS(3027), + [anon_sym_raise] = ACTIONS(3027), + [anon_sym_pass] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_def] = ACTIONS(3027), + [anon_sym_global] = ACTIONS(3027), + [anon_sym_nonlocal] = ACTIONS(3027), + [anon_sym_exec] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_lambda] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_None] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3029), + [anon_sym_0X] = ACTIONS(3029), + [anon_sym_0o] = ACTIONS(3029), + [anon_sym_0O] = ACTIONS(3029), + [anon_sym_0b] = ACTIONS(3029), + [anon_sym_0B] = ACTIONS(3029), + [aux_sym_integer_token4] = ACTIONS(3027), + [sym_float] = ACTIONS(3029), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3027), + [anon_sym_include] = ACTIONS(3027), + [anon_sym_DEF] = ACTIONS(3027), + [anon_sym_IF] = ACTIONS(3027), + [anon_sym_cdef] = ACTIONS(3027), + [anon_sym_cpdef] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_ctypedef] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_packed] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3027), + [sym_string_start] = ACTIONS(3029), + }, + [1537] = { + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3043), + [anon_sym_import] = ACTIONS(3043), + [anon_sym_cimport] = ACTIONS(3043), + [anon_sym_from] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_print] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_del] = ACTIONS(3043), + [anon_sym_raise] = ACTIONS(3043), + [anon_sym_pass] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_async] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_finally] = ACTIONS(3043), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_def] = ACTIONS(3043), + [anon_sym_global] = ACTIONS(3043), + [anon_sym_nonlocal] = ACTIONS(3043), + [anon_sym_exec] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_class] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_AT] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), + [anon_sym_None] = ACTIONS(3043), + [anon_sym_0x] = ACTIONS(3045), + [anon_sym_0X] = ACTIONS(3045), + [anon_sym_0o] = ACTIONS(3045), + [anon_sym_0O] = ACTIONS(3045), + [anon_sym_0b] = ACTIONS(3045), + [anon_sym_0B] = ACTIONS(3045), + [aux_sym_integer_token4] = ACTIONS(3043), + [sym_float] = ACTIONS(3045), + [anon_sym_await] = ACTIONS(3043), + [anon_sym_api] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3043), + [anon_sym_include] = ACTIONS(3043), + [anon_sym_DEF] = ACTIONS(3043), + [anon_sym_IF] = ACTIONS(3043), + [anon_sym_cdef] = ACTIONS(3043), + [anon_sym_cpdef] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_ctypedef] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3043), + [anon_sym_packed] = ACTIONS(3043), + [anon_sym_inline] = ACTIONS(3043), + [anon_sym_readonly] = ACTIONS(3043), + [anon_sym_sizeof] = ACTIONS(3043), + [sym_string_start] = ACTIONS(3045), + }, + [1538] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1539] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5537), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1540] = { + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(3051), + [anon_sym_cimport] = ACTIONS(3051), + [anon_sym_from] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_print] = ACTIONS(3051), + [anon_sym_assert] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_del] = ACTIONS(3051), + [anon_sym_raise] = ACTIONS(3051), + [anon_sym_pass] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3051), + [anon_sym_async] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_with] = ACTIONS(3051), + [anon_sym_def] = ACTIONS(3051), + [anon_sym_global] = ACTIONS(3051), + [anon_sym_nonlocal] = ACTIONS(3051), + [anon_sym_exec] = ACTIONS(3051), + [anon_sym_type] = ACTIONS(3051), + [anon_sym_class] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_AT] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_not] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_lambda] = ACTIONS(3051), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), + [anon_sym_None] = ACTIONS(3051), + [anon_sym_0x] = ACTIONS(3053), + [anon_sym_0X] = ACTIONS(3053), + [anon_sym_0o] = ACTIONS(3053), + [anon_sym_0O] = ACTIONS(3053), + [anon_sym_0b] = ACTIONS(3053), + [anon_sym_0B] = ACTIONS(3053), + [aux_sym_integer_token4] = ACTIONS(3051), + [sym_float] = ACTIONS(3053), + [anon_sym_await] = ACTIONS(3051), + [anon_sym_api] = ACTIONS(3051), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3051), + [anon_sym_include] = ACTIONS(3051), + [anon_sym_DEF] = ACTIONS(3051), + [anon_sym_IF] = ACTIONS(3051), + [anon_sym_cdef] = ACTIONS(3051), + [anon_sym_cpdef] = ACTIONS(3051), + [anon_sym_new] = ACTIONS(3051), + [anon_sym_ctypedef] = ACTIONS(3051), + [anon_sym_public] = ACTIONS(3051), + [anon_sym_packed] = ACTIONS(3051), + [anon_sym_inline] = ACTIONS(3051), + [anon_sym_readonly] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3051), + [sym_string_start] = ACTIONS(3053), + }, + [1541] = { + [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(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_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), }, - [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), + [1542] = { + [ts_builtin_sym_end] = ACTIONS(3061), + [sym_identifier] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3059), + [anon_sym_cimport] = ACTIONS(3059), + [anon_sym_from] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_print] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_del] = ACTIONS(3059), + [anon_sym_raise] = ACTIONS(3059), + [anon_sym_pass] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_async] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_with] = ACTIONS(3059), + [anon_sym_def] = ACTIONS(3059), + [anon_sym_global] = ACTIONS(3059), + [anon_sym_nonlocal] = ACTIONS(3059), + [anon_sym_exec] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_lambda] = ACTIONS(3059), + [anon_sym_yield] = ACTIONS(3059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_None] = ACTIONS(3059), + [anon_sym_0x] = ACTIONS(3061), + [anon_sym_0X] = ACTIONS(3061), + [anon_sym_0o] = ACTIONS(3061), + [anon_sym_0O] = ACTIONS(3061), + [anon_sym_0b] = ACTIONS(3061), + [anon_sym_0B] = ACTIONS(3061), + [aux_sym_integer_token4] = ACTIONS(3059), + [sym_float] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3059), + [anon_sym_include] = ACTIONS(3059), + [anon_sym_DEF] = ACTIONS(3059), + [anon_sym_IF] = ACTIONS(3059), + [anon_sym_cdef] = ACTIONS(3059), + [anon_sym_cpdef] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_ctypedef] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_packed] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_readonly] = ACTIONS(3059), + [anon_sym_sizeof] = ACTIONS(3059), + [sym_string_start] = ACTIONS(3061), }, - [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), + [1543] = { + [ts_builtin_sym_end] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_import] = ACTIONS(3063), + [anon_sym_cimport] = ACTIONS(3063), + [anon_sym_from] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_print] = ACTIONS(3063), + [anon_sym_assert] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_del] = ACTIONS(3063), + [anon_sym_raise] = ACTIONS(3063), + [anon_sym_pass] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_match] = ACTIONS(3063), + [anon_sym_async] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [anon_sym_with] = ACTIONS(3063), + [anon_sym_def] = ACTIONS(3063), + [anon_sym_global] = ACTIONS(3063), + [anon_sym_nonlocal] = ACTIONS(3063), + [anon_sym_exec] = ACTIONS(3063), + [anon_sym_type] = ACTIONS(3063), + [anon_sym_class] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_not] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_lambda] = ACTIONS(3063), + [anon_sym_yield] = ACTIONS(3063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), + [anon_sym_None] = ACTIONS(3063), + [anon_sym_0x] = ACTIONS(3065), + [anon_sym_0X] = ACTIONS(3065), + [anon_sym_0o] = ACTIONS(3065), + [anon_sym_0O] = ACTIONS(3065), + [anon_sym_0b] = ACTIONS(3065), + [anon_sym_0B] = ACTIONS(3065), + [aux_sym_integer_token4] = ACTIONS(3063), + [sym_float] = ACTIONS(3065), + [anon_sym_await] = ACTIONS(3063), + [anon_sym_api] = ACTIONS(3063), + [sym_true] = ACTIONS(3063), + [sym_false] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3063), + [anon_sym_include] = ACTIONS(3063), + [anon_sym_DEF] = ACTIONS(3063), + [anon_sym_IF] = ACTIONS(3063), + [anon_sym_cdef] = ACTIONS(3063), + [anon_sym_cpdef] = ACTIONS(3063), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_ctypedef] = ACTIONS(3063), + [anon_sym_public] = ACTIONS(3063), + [anon_sym_packed] = ACTIONS(3063), + [anon_sym_inline] = ACTIONS(3063), + [anon_sym_readonly] = ACTIONS(3063), + [anon_sym_sizeof] = ACTIONS(3063), + [sym_string_start] = ACTIONS(3065), }, - [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), + [1544] = { + [ts_builtin_sym_end] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3411), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_cimport] = ACTIONS(3411), + [anon_sym_from] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_STAR] = ACTIONS(3413), + [anon_sym_print] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_return] = ACTIONS(3411), + [anon_sym_del] = ACTIONS(3411), + [anon_sym_raise] = ACTIONS(3411), + [anon_sym_pass] = ACTIONS(3411), + [anon_sym_break] = ACTIONS(3411), + [anon_sym_continue] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3411), + [anon_sym_with] = ACTIONS(3411), + [anon_sym_def] = ACTIONS(3411), + [anon_sym_global] = ACTIONS(3411), + [anon_sym_nonlocal] = ACTIONS(3411), + [anon_sym_exec] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_not] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_lambda] = ACTIONS(3411), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), + [anon_sym_None] = ACTIONS(3411), + [anon_sym_0x] = ACTIONS(3413), + [anon_sym_0X] = ACTIONS(3413), + [anon_sym_0o] = ACTIONS(3413), + [anon_sym_0O] = ACTIONS(3413), + [anon_sym_0b] = ACTIONS(3413), + [anon_sym_0B] = ACTIONS(3413), + [aux_sym_integer_token4] = ACTIONS(3411), + [sym_float] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_api] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3411), + [anon_sym_include] = ACTIONS(3411), + [anon_sym_DEF] = ACTIONS(3411), + [anon_sym_IF] = ACTIONS(3411), + [anon_sym_cdef] = ACTIONS(3411), + [anon_sym_cpdef] = ACTIONS(3411), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_ctypedef] = ACTIONS(3411), + [anon_sym_public] = ACTIONS(3411), + [anon_sym_packed] = ACTIONS(3411), + [anon_sym_inline] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3411), + [sym_string_start] = ACTIONS(3413), }, - [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), + [1545] = { + [ts_builtin_sym_end] = ACTIONS(3069), + [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(3067), + [anon_sym_cimport] = ACTIONS(3067), + [anon_sym_from] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_print] = ACTIONS(3067), + [anon_sym_assert] = ACTIONS(3067), + [anon_sym_return] = ACTIONS(3067), + [anon_sym_del] = ACTIONS(3067), + [anon_sym_raise] = ACTIONS(3067), + [anon_sym_pass] = ACTIONS(3067), + [anon_sym_break] = ACTIONS(3067), + [anon_sym_continue] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3067), + [anon_sym_match] = ACTIONS(3067), + [anon_sym_async] = ACTIONS(3067), + [anon_sym_for] = ACTIONS(3067), + [anon_sym_while] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3067), + [anon_sym_with] = ACTIONS(3067), + [anon_sym_def] = ACTIONS(3067), + [anon_sym_global] = ACTIONS(3067), + [anon_sym_nonlocal] = ACTIONS(3067), + [anon_sym_exec] = ACTIONS(3067), + [anon_sym_type] = ACTIONS(3067), + [anon_sym_class] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_AT] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_not] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(3067), + [anon_sym_yield] = ACTIONS(3067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3069), + [anon_sym_None] = ACTIONS(3067), + [anon_sym_0x] = ACTIONS(3069), + [anon_sym_0X] = ACTIONS(3069), + [anon_sym_0o] = ACTIONS(3069), + [anon_sym_0O] = ACTIONS(3069), + [anon_sym_0b] = ACTIONS(3069), + [anon_sym_0B] = ACTIONS(3069), + [aux_sym_integer_token4] = ACTIONS(3067), + [sym_float] = ACTIONS(3069), + [anon_sym_await] = ACTIONS(3067), + [anon_sym_api] = ACTIONS(3067), + [sym_true] = ACTIONS(3067), + [sym_false] = ACTIONS(3067), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3067), + [anon_sym_include] = ACTIONS(3067), + [anon_sym_DEF] = ACTIONS(3067), + [anon_sym_IF] = ACTIONS(3067), + [anon_sym_cdef] = ACTIONS(3067), + [anon_sym_cpdef] = ACTIONS(3067), + [anon_sym_new] = ACTIONS(3067), + [anon_sym_ctypedef] = ACTIONS(3067), + [anon_sym_public] = ACTIONS(3067), + [anon_sym_packed] = ACTIONS(3067), + [anon_sym_inline] = ACTIONS(3067), + [anon_sym_readonly] = ACTIONS(3067), + [anon_sym_sizeof] = ACTIONS(3067), + [sym_string_start] = ACTIONS(3069), + }, + [1546] = { + [ts_builtin_sym_end] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_cimport] = ACTIONS(3415), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_print] = ACTIONS(3415), + [anon_sym_assert] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_del] = ACTIONS(3415), + [anon_sym_raise] = ACTIONS(3415), + [anon_sym_pass] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_match] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_def] = ACTIONS(3415), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_nonlocal] = ACTIONS(3415), + [anon_sym_exec] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_lambda] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), + [anon_sym_None] = ACTIONS(3415), + [anon_sym_0x] = ACTIONS(3417), + [anon_sym_0X] = ACTIONS(3417), + [anon_sym_0o] = ACTIONS(3417), + [anon_sym_0O] = ACTIONS(3417), + [anon_sym_0b] = ACTIONS(3417), + [anon_sym_0B] = ACTIONS(3417), + [aux_sym_integer_token4] = ACTIONS(3415), + [sym_float] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_api] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3415), + [anon_sym_include] = ACTIONS(3415), + [anon_sym_DEF] = ACTIONS(3415), + [anon_sym_IF] = ACTIONS(3415), + [anon_sym_cdef] = ACTIONS(3415), + [anon_sym_cpdef] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_ctypedef] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_packed] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3415), + [sym_string_start] = ACTIONS(3417), + }, + [1547] = { + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3543), + [anon_sym_SEMI] = ACTIONS(3545), + [anon_sym_import] = ACTIONS(3543), + [anon_sym_cimport] = ACTIONS(3543), + [anon_sym_from] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3545), + [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(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(3543), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3545), + [anon_sym_LT] = ACTIONS(3545), + [anon_sym_lambda] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), + [anon_sym_None] = ACTIONS(3543), + [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(3543), + [sym_float] = ACTIONS(3545), + [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(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), + [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(3545), }, - [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), + [1548] = { + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_import] = ACTIONS(3547), + [anon_sym_cimport] = ACTIONS(3547), + [anon_sym_from] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [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(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(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3549), + [anon_sym_lambda] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), + [anon_sym_None] = ACTIONS(3547), + [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(3547), + [sym_float] = ACTIONS(3549), + [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(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), + [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(3549), }, - [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), + [1549] = { + [ts_builtin_sym_end] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_cimport] = ACTIONS(3419), + [anon_sym_from] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_print] = ACTIONS(3419), + [anon_sym_assert] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_del] = ACTIONS(3419), + [anon_sym_raise] = ACTIONS(3419), + [anon_sym_pass] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_def] = ACTIONS(3419), + [anon_sym_global] = ACTIONS(3419), + [anon_sym_nonlocal] = ACTIONS(3419), + [anon_sym_exec] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_lambda] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), + [anon_sym_None] = ACTIONS(3419), + [anon_sym_0x] = ACTIONS(3421), + [anon_sym_0X] = ACTIONS(3421), + [anon_sym_0o] = ACTIONS(3421), + [anon_sym_0O] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3421), + [anon_sym_0B] = ACTIONS(3421), + [aux_sym_integer_token4] = ACTIONS(3419), + [sym_float] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_api] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3419), + [anon_sym_include] = ACTIONS(3419), + [anon_sym_DEF] = ACTIONS(3419), + [anon_sym_IF] = ACTIONS(3419), + [anon_sym_cdef] = ACTIONS(3419), + [anon_sym_cpdef] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_ctypedef] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_packed] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_sizeof] = ACTIONS(3419), + [sym_string_start] = ACTIONS(3421), }, - [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), + [1550] = { + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym_import] = ACTIONS(3551), + [anon_sym_cimport] = ACTIONS(3551), + [anon_sym_from] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [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(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(3551), + [anon_sym_AMP] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_LT] = ACTIONS(3553), + [anon_sym_lambda] = ACTIONS(3551), + [anon_sym_yield] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [anon_sym_None] = ACTIONS(3551), + [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(3551), + [sym_float] = ACTIONS(3553), + [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(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), + [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(3553), }, - [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), + [1551] = { + [ts_builtin_sym_end] = ACTIONS(3425), + [sym_identifier] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_cimport] = ACTIONS(3423), + [anon_sym_from] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_print] = ACTIONS(3423), + [anon_sym_assert] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_del] = ACTIONS(3423), + [anon_sym_raise] = ACTIONS(3423), + [anon_sym_pass] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_match] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_def] = ACTIONS(3423), + [anon_sym_global] = ACTIONS(3423), + [anon_sym_nonlocal] = ACTIONS(3423), + [anon_sym_exec] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_lambda] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), + [anon_sym_None] = ACTIONS(3423), + [anon_sym_0x] = ACTIONS(3425), + [anon_sym_0X] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0O] = ACTIONS(3425), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0B] = ACTIONS(3425), + [aux_sym_integer_token4] = ACTIONS(3423), + [sym_float] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_api] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3423), + [anon_sym_include] = ACTIONS(3423), + [anon_sym_DEF] = ACTIONS(3423), + [anon_sym_IF] = ACTIONS(3423), + [anon_sym_cdef] = ACTIONS(3423), + [anon_sym_cpdef] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_ctypedef] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_packed] = ACTIONS(3423), + [anon_sym_inline] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_sizeof] = ACTIONS(3423), + [sym_string_start] = ACTIONS(3425), }, - [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), + [1552] = { + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym_import] = ACTIONS(3555), + [anon_sym_cimport] = ACTIONS(3555), + [anon_sym_from] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3557), + [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(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(3555), + [anon_sym_AMP] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_LT] = ACTIONS(3557), + [anon_sym_lambda] = ACTIONS(3555), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [anon_sym_None] = ACTIONS(3555), + [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(3555), + [sym_float] = ACTIONS(3557), + [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(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), + [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(3557), }, - [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), + [1553] = { + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3559), + [anon_sym_SEMI] = ACTIONS(3561), + [anon_sym_import] = ACTIONS(3559), + [anon_sym_cimport] = ACTIONS(3559), + [anon_sym_from] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3561), + [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(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(3559), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3561), + [anon_sym_LT] = ACTIONS(3561), + [anon_sym_lambda] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + [anon_sym_None] = ACTIONS(3559), + [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(3559), + [sym_float] = ACTIONS(3561), + [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(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), + [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(3561), }, - [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), + [1554] = { + [ts_builtin_sym_end] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_cimport] = ACTIONS(3427), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_print] = ACTIONS(3427), + [anon_sym_assert] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_del] = ACTIONS(3427), + [anon_sym_raise] = ACTIONS(3427), + [anon_sym_pass] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_match] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_def] = ACTIONS(3427), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_nonlocal] = ACTIONS(3427), + [anon_sym_exec] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [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(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_lambda] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), + [anon_sym_None] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3429), + [anon_sym_0X] = ACTIONS(3429), + [anon_sym_0o] = ACTIONS(3429), + [anon_sym_0O] = ACTIONS(3429), + [anon_sym_0b] = ACTIONS(3429), + [anon_sym_0B] = ACTIONS(3429), + [aux_sym_integer_token4] = ACTIONS(3427), + [sym_float] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_api] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3427), + [anon_sym_include] = ACTIONS(3427), + [anon_sym_DEF] = ACTIONS(3427), + [anon_sym_IF] = ACTIONS(3427), + [anon_sym_cdef] = ACTIONS(3427), + [anon_sym_cpdef] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_ctypedef] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_packed] = ACTIONS(3427), + [anon_sym_inline] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3427), + [sym_string_start] = ACTIONS(3429), }, - [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), + [1555] = { + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_cimport] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_STAR] = ACTIONS(3433), + [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_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(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_lambda] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), + [anon_sym_None] = ACTIONS(3431), + [anon_sym_0x] = ACTIONS(3433), + [anon_sym_0X] = ACTIONS(3433), + [anon_sym_0o] = ACTIONS(3433), + [anon_sym_0O] = ACTIONS(3433), + [anon_sym_0b] = ACTIONS(3433), + [anon_sym_0B] = ACTIONS(3433), + [aux_sym_integer_token4] = ACTIONS(3431), + [sym_float] = ACTIONS(3433), + [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(3433), }, - [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), + [1556] = { + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3563), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_import] = ACTIONS(3563), + [anon_sym_cimport] = ACTIONS(3563), + [anon_sym_from] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3565), + [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(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(3563), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_TILDE] = ACTIONS(3565), + [anon_sym_LT] = ACTIONS(3565), + [anon_sym_lambda] = ACTIONS(3563), + [anon_sym_yield] = ACTIONS(3563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), + [anon_sym_None] = ACTIONS(3563), + [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(3563), + [sym_float] = ACTIONS(3565), + [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(3565), }, - [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), + [1557] = { + [ts_builtin_sym_end] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3071), + [anon_sym_cimport] = ACTIONS(3071), + [anon_sym_from] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3071), + [anon_sym_assert] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_del] = ACTIONS(3071), + [anon_sym_raise] = ACTIONS(3071), + [anon_sym_pass] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3071), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3071), + [anon_sym_def] = ACTIONS(3071), + [anon_sym_global] = ACTIONS(3071), + [anon_sym_nonlocal] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(3071), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [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(3071), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3071), + [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(3071), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3071), + [anon_sym_api] = ACTIONS(3071), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3071), + [anon_sym_include] = ACTIONS(3071), + [anon_sym_DEF] = ACTIONS(3071), + [anon_sym_IF] = ACTIONS(3071), + [anon_sym_cdef] = ACTIONS(3071), + [anon_sym_cpdef] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_ctypedef] = ACTIONS(3071), + [anon_sym_public] = ACTIONS(3071), + [anon_sym_packed] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_readonly] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(3071), + [sym_string_start] = ACTIONS(3073), }, - [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), + [1558] = { + [ts_builtin_sym_end] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3075), + [anon_sym_cimport] = ACTIONS(3075), + [anon_sym_from] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [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(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(3075), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_lambda] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), + [anon_sym_None] = ACTIONS(3075), + [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(3075), + [sym_float] = ACTIONS(3077), + [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(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), + [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(3077), }, - [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), + [1559] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_cimport] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [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(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_lambda] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_None] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3081), + [anon_sym_0X] = ACTIONS(3081), + [anon_sym_0o] = ACTIONS(3081), + [anon_sym_0O] = ACTIONS(3081), + [anon_sym_0b] = ACTIONS(3081), + [anon_sym_0B] = ACTIONS(3081), + [aux_sym_integer_token4] = ACTIONS(3079), + [sym_float] = ACTIONS(3081), + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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(3081), }, - [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), + [1560] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3083), + [anon_sym_cimport] = ACTIONS(3083), + [anon_sym_from] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_print] = ACTIONS(3083), + [anon_sym_assert] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_del] = ACTIONS(3083), + [anon_sym_raise] = ACTIONS(3083), + [anon_sym_pass] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_async] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3083), + [anon_sym_def] = ACTIONS(3083), + [anon_sym_global] = ACTIONS(3083), + [anon_sym_nonlocal] = ACTIONS(3083), + [anon_sym_exec] = ACTIONS(3083), + [anon_sym_type] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [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(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_lambda] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_None] = ACTIONS(3083), + [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(3083), + [sym_float] = ACTIONS(3085), + [anon_sym_await] = ACTIONS(3083), + [anon_sym_api] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3083), + [anon_sym_include] = ACTIONS(3083), + [anon_sym_DEF] = ACTIONS(3083), + [anon_sym_IF] = ACTIONS(3083), + [anon_sym_cdef] = ACTIONS(3083), + [anon_sym_cpdef] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_ctypedef] = ACTIONS(3083), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_packed] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym_readonly] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(3083), + [sym_string_start] = ACTIONS(3085), }, - [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), + [1561] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_cimport] = ACTIONS(3087), + [anon_sym_from] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [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(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(3087), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_lambda] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_None] = ACTIONS(3087), + [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(3087), + [sym_float] = ACTIONS(3089), + [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(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), + [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(3089), }, - [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), + [1562] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3091), + [anon_sym_cimport] = ACTIONS(3091), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_del] = ACTIONS(3091), + [anon_sym_raise] = ACTIONS(3091), + [anon_sym_pass] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_with] = ACTIONS(3091), + [anon_sym_def] = ACTIONS(3091), + [anon_sym_global] = ACTIONS(3091), + [anon_sym_nonlocal] = ACTIONS(3091), + [anon_sym_exec] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_lambda] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [anon_sym_None] = ACTIONS(3091), + [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(3091), + [sym_float] = ACTIONS(3093), + [anon_sym_await] = ACTIONS(3091), + [anon_sym_api] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(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), + [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(3093), }, - [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), + [1563] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_import] = ACTIONS(3095), + [anon_sym_cimport] = ACTIONS(3095), + [anon_sym_from] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [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(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(3095), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_None] = ACTIONS(3095), + [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(3095), + [sym_float] = ACTIONS(3097), + [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(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), + [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(3097), }, - [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), + [1564] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5257), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1565] = { + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3099), + [anon_sym_cimport] = ACTIONS(3099), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [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(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(3099), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_lambda] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [anon_sym_None] = ACTIONS(3099), + [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(3099), + [sym_float] = ACTIONS(3101), + [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(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), + [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(3101), }, - [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), + [1566] = { + [ts_builtin_sym_end] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3071), + [anon_sym_cimport] = ACTIONS(3071), + [anon_sym_from] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(3071), + [anon_sym_assert] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_del] = ACTIONS(3071), + [anon_sym_raise] = ACTIONS(3071), + [anon_sym_pass] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3071), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3071), + [anon_sym_def] = ACTIONS(3071), + [anon_sym_global] = ACTIONS(3071), + [anon_sym_nonlocal] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(3071), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [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(3071), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3073), + [anon_sym_None] = ACTIONS(3071), + [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(3071), + [sym_float] = ACTIONS(3073), + [anon_sym_await] = ACTIONS(3071), + [anon_sym_api] = ACTIONS(3071), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3071), + [anon_sym_include] = ACTIONS(3071), + [anon_sym_DEF] = ACTIONS(3071), + [anon_sym_IF] = ACTIONS(3071), + [anon_sym_cdef] = ACTIONS(3071), + [anon_sym_cpdef] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_ctypedef] = ACTIONS(3071), + [anon_sym_public] = ACTIONS(3071), + [anon_sym_packed] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_readonly] = ACTIONS(3071), + [anon_sym_sizeof] = ACTIONS(3071), + [sym_string_start] = ACTIONS(3073), + }, + [1567] = { + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3103), + [anon_sym_cimport] = ACTIONS(3103), + [anon_sym_from] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [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(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_lambda] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [anon_sym_None] = ACTIONS(3103), + [anon_sym_0x] = ACTIONS(3105), + [anon_sym_0X] = ACTIONS(3105), + [anon_sym_0o] = ACTIONS(3105), + [anon_sym_0O] = ACTIONS(3105), + [anon_sym_0b] = ACTIONS(3105), + [anon_sym_0B] = ACTIONS(3105), + [aux_sym_integer_token4] = ACTIONS(3103), + [sym_float] = ACTIONS(3105), + [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(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), + [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(3105), }, - [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), + [1568] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5412), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [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), + [1569] = { + [ts_builtin_sym_end] = ACTIONS(3109), + [sym_identifier] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_cimport] = ACTIONS(3107), + [anon_sym_from] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_print] = ACTIONS(3107), + [anon_sym_assert] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_del] = ACTIONS(3107), + [anon_sym_raise] = ACTIONS(3107), + [anon_sym_pass] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_match] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_def] = ACTIONS(3107), + [anon_sym_global] = ACTIONS(3107), + [anon_sym_nonlocal] = ACTIONS(3107), + [anon_sym_exec] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_AT] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [anon_sym_None] = ACTIONS(3107), + [anon_sym_0x] = ACTIONS(3109), + [anon_sym_0X] = ACTIONS(3109), + [anon_sym_0o] = ACTIONS(3109), + [anon_sym_0O] = ACTIONS(3109), + [anon_sym_0b] = ACTIONS(3109), + [anon_sym_0B] = ACTIONS(3109), + [aux_sym_integer_token4] = ACTIONS(3107), + [sym_float] = ACTIONS(3109), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_api] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3107), + [anon_sym_include] = ACTIONS(3107), + [anon_sym_DEF] = ACTIONS(3107), + [anon_sym_IF] = ACTIONS(3107), + [anon_sym_cdef] = ACTIONS(3107), + [anon_sym_cpdef] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_ctypedef] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_packed] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3107), + [sym_string_start] = ACTIONS(3109), }, - [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), + [1570] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_cimport] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [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(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_lambda] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_None] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3081), + [anon_sym_0X] = ACTIONS(3081), + [anon_sym_0o] = ACTIONS(3081), + [anon_sym_0O] = ACTIONS(3081), + [anon_sym_0b] = ACTIONS(3081), + [anon_sym_0B] = ACTIONS(3081), + [aux_sym_integer_token4] = ACTIONS(3079), + [sym_float] = ACTIONS(3081), + [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(3081), }, - [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), + [1571] = { + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_import] = ACTIONS(3111), + [anon_sym_cimport] = ACTIONS(3111), + [anon_sym_from] = ACTIONS(3111), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3111), + [anon_sym_assert] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_del] = ACTIONS(3111), + [anon_sym_raise] = ACTIONS(3111), + [anon_sym_pass] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_match] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3111), + [anon_sym_def] = ACTIONS(3111), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_nonlocal] = ACTIONS(3111), + [anon_sym_exec] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_lambda] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_None] = ACTIONS(3111), + [anon_sym_0x] = ACTIONS(3113), + [anon_sym_0X] = ACTIONS(3113), + [anon_sym_0o] = ACTIONS(3113), + [anon_sym_0O] = ACTIONS(3113), + [anon_sym_0b] = ACTIONS(3113), + [anon_sym_0B] = ACTIONS(3113), + [aux_sym_integer_token4] = ACTIONS(3111), + [sym_float] = ACTIONS(3113), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_api] = ACTIONS(3111), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3111), + [anon_sym_include] = ACTIONS(3111), + [anon_sym_DEF] = ACTIONS(3111), + [anon_sym_IF] = ACTIONS(3111), + [anon_sym_cdef] = ACTIONS(3111), + [anon_sym_cpdef] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_ctypedef] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_packed] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3111), + [sym_string_start] = ACTIONS(3113), }, - [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), + [1572] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5274), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(3067), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -180916,284 +175358,932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1573] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5438), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1574] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3087), + [anon_sym_cimport] = ACTIONS(3087), + [anon_sym_from] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [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(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(3087), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_lambda] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_None] = ACTIONS(3087), + [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(3087), + [sym_float] = ACTIONS(3089), + [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(3089), }, - [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), + [1575] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3355), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1576] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5558), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1577] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1578] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3358), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1579] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1580] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3359), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1581] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4146), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1582] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3361), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1583] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4147), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1584] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3362), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1585] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3370), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -181204,140 +176294,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1586] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1587] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -181348,68 +176438,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1588] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -181420,68 +176510,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1589] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3386), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [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_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -181492,934 +176582,6695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1590] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5482), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1591] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1592] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3391), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1593] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1594] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1595] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4251), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1596] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4253), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [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), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1597] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4254), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1598] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1599] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4255), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1600] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4258), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1601] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4260), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [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), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1602] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1603] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3300), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1604] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3304), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1605] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1606] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3356), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1607] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4159), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1608] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3364), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1609] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4160), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1610] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1611] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1612] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1613] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1614] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1615] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3051), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1616] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1617] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1618] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1619] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3075), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1620] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1621] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1622] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3179), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1623] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1624] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3188), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1625] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3480), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1626] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3557), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1627] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3590), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1628] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3579), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1629] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3529), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1630] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3576), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1631] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1632] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3405), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1633] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3410), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1634] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3418), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1635] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3436), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1636] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3422), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1637] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3423), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1638] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3434), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3691), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1639] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3607), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1640] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3594), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1641] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3596), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1642] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1643] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3597), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1644] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3598), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1645] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3601), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1646] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3314), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1647] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1648] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3342), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1649] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1650] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3343), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1651] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1652] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1653] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3541), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1654] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3591), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1655] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3488), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1656] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1657] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3484), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1658] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1659] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3478), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1660] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1661] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3533), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1662] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2984), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1663] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1664] = { + [ts_builtin_sym_end] = ACTIONS(3117), + [sym_identifier] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_import] = ACTIONS(3115), + [anon_sym_cimport] = ACTIONS(3115), + [anon_sym_from] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_del] = ACTIONS(3115), + [anon_sym_raise] = ACTIONS(3115), + [anon_sym_pass] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_def] = ACTIONS(3115), + [anon_sym_global] = ACTIONS(3115), + [anon_sym_nonlocal] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_AT] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_lambda] = ACTIONS(3115), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [anon_sym_None] = ACTIONS(3115), + [anon_sym_0x] = ACTIONS(3117), + [anon_sym_0X] = ACTIONS(3117), + [anon_sym_0o] = ACTIONS(3117), + [anon_sym_0O] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3117), + [anon_sym_0B] = ACTIONS(3117), + [aux_sym_integer_token4] = ACTIONS(3115), + [sym_float] = ACTIONS(3117), + [anon_sym_await] = ACTIONS(3115), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3115), + [anon_sym_include] = ACTIONS(3115), + [anon_sym_DEF] = ACTIONS(3115), + [anon_sym_IF] = ACTIONS(3115), + [anon_sym_cdef] = ACTIONS(3115), + [anon_sym_cpdef] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_ctypedef] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_packed] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3115), + [sym_string_start] = ACTIONS(3117), + }, + [1665] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4610), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1666] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5485), + [sym_primary_expression] = STATE(2796), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3057), + [sym_subscript] = STATE(3057), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(3889), + [anon_sym_match] = ACTIONS(3889), + [anon_sym_async] = ACTIONS(3889), + [anon_sym_exec] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(3891), + [anon_sym_api] = ACTIONS(3889), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1667] = { + [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), + }, + [1668] = { + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_cimport] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_print] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_del] = ACTIONS(3123), + [anon_sym_raise] = ACTIONS(3123), + [anon_sym_pass] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_def] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_nonlocal] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_lambda] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [anon_sym_None] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3125), + [anon_sym_0X] = ACTIONS(3125), + [anon_sym_0o] = ACTIONS(3125), + [anon_sym_0O] = ACTIONS(3125), + [anon_sym_0b] = ACTIONS(3125), + [anon_sym_0B] = ACTIONS(3125), + [aux_sym_integer_token4] = ACTIONS(3123), + [sym_float] = ACTIONS(3125), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_api] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3123), + [anon_sym_include] = ACTIONS(3123), + [anon_sym_DEF] = ACTIONS(3123), + [anon_sym_IF] = ACTIONS(3123), + [anon_sym_cdef] = ACTIONS(3123), + [anon_sym_cpdef] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_ctypedef] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_packed] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_string_start] = ACTIONS(3125), + }, + [1669] = { + [ts_builtin_sym_end] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_cimport] = ACTIONS(3435), + [anon_sym_from] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3437), + [anon_sym_print] = ACTIONS(3435), + [anon_sym_assert] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_del] = ACTIONS(3435), + [anon_sym_raise] = ACTIONS(3435), + [anon_sym_pass] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_match] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_def] = ACTIONS(3435), + [anon_sym_global] = ACTIONS(3435), + [anon_sym_nonlocal] = ACTIONS(3435), + [anon_sym_exec] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_lambda] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), + [anon_sym_None] = ACTIONS(3435), + [anon_sym_0x] = ACTIONS(3437), + [anon_sym_0X] = ACTIONS(3437), + [anon_sym_0o] = ACTIONS(3437), + [anon_sym_0O] = ACTIONS(3437), + [anon_sym_0b] = ACTIONS(3437), + [anon_sym_0B] = ACTIONS(3437), + [aux_sym_integer_token4] = ACTIONS(3435), + [sym_float] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_api] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3435), + [anon_sym_include] = ACTIONS(3435), + [anon_sym_DEF] = ACTIONS(3435), + [anon_sym_IF] = ACTIONS(3435), + [anon_sym_cdef] = ACTIONS(3435), + [anon_sym_cpdef] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_ctypedef] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_packed] = ACTIONS(3435), + [anon_sym_inline] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_sizeof] = ACTIONS(3435), + [sym_string_start] = ACTIONS(3437), + }, + [1670] = { + [ts_builtin_sym_end] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_cimport] = ACTIONS(3439), + [anon_sym_from] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_print] = ACTIONS(3439), + [anon_sym_assert] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_del] = ACTIONS(3439), + [anon_sym_raise] = ACTIONS(3439), + [anon_sym_pass] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_def] = ACTIONS(3439), + [anon_sym_global] = ACTIONS(3439), + [anon_sym_nonlocal] = ACTIONS(3439), + [anon_sym_exec] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_lambda] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), + [anon_sym_None] = ACTIONS(3439), + [anon_sym_0x] = ACTIONS(3441), + [anon_sym_0X] = ACTIONS(3441), + [anon_sym_0o] = ACTIONS(3441), + [anon_sym_0O] = ACTIONS(3441), + [anon_sym_0b] = ACTIONS(3441), + [anon_sym_0B] = ACTIONS(3441), + [aux_sym_integer_token4] = ACTIONS(3439), + [sym_float] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_api] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3439), + [anon_sym_include] = ACTIONS(3439), + [anon_sym_DEF] = ACTIONS(3439), + [anon_sym_IF] = ACTIONS(3439), + [anon_sym_cdef] = ACTIONS(3439), + [anon_sym_cpdef] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_ctypedef] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_packed] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_sizeof] = ACTIONS(3439), + [sym_string_start] = ACTIONS(3441), + }, + [1671] = { + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3127), + [anon_sym_cimport] = ACTIONS(3127), + [anon_sym_from] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_print] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_del] = ACTIONS(3127), + [anon_sym_raise] = ACTIONS(3127), + [anon_sym_pass] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_def] = ACTIONS(3127), + [anon_sym_global] = ACTIONS(3127), + [anon_sym_nonlocal] = ACTIONS(3127), + [anon_sym_exec] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_lambda] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [anon_sym_None] = ACTIONS(3127), + [anon_sym_0x] = ACTIONS(3129), + [anon_sym_0X] = ACTIONS(3129), + [anon_sym_0o] = ACTIONS(3129), + [anon_sym_0O] = ACTIONS(3129), + [anon_sym_0b] = ACTIONS(3129), + [anon_sym_0B] = ACTIONS(3129), + [aux_sym_integer_token4] = ACTIONS(3127), + [sym_float] = ACTIONS(3129), + [anon_sym_await] = ACTIONS(3127), + [anon_sym_api] = ACTIONS(3127), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3127), + [anon_sym_include] = ACTIONS(3127), + [anon_sym_DEF] = ACTIONS(3127), + [anon_sym_IF] = ACTIONS(3127), + [anon_sym_cdef] = ACTIONS(3127), + [anon_sym_cpdef] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_ctypedef] = ACTIONS(3127), + [anon_sym_public] = ACTIONS(3127), + [anon_sym_packed] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3127), + [sym_string_start] = ACTIONS(3129), + }, + [1672] = { + [ts_builtin_sym_end] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_import] = ACTIONS(3131), + [anon_sym_cimport] = ACTIONS(3131), + [anon_sym_from] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_print] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_del] = ACTIONS(3131), + [anon_sym_raise] = ACTIONS(3131), + [anon_sym_pass] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_async] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_def] = ACTIONS(3131), + [anon_sym_global] = ACTIONS(3131), + [anon_sym_nonlocal] = ACTIONS(3131), + [anon_sym_exec] = ACTIONS(3131), + [anon_sym_type] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_lambda] = ACTIONS(3131), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_None] = ACTIONS(3131), + [anon_sym_0x] = ACTIONS(3133), + [anon_sym_0X] = ACTIONS(3133), + [anon_sym_0o] = ACTIONS(3133), + [anon_sym_0O] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3133), + [anon_sym_0B] = ACTIONS(3133), + [aux_sym_integer_token4] = ACTIONS(3131), + [sym_float] = ACTIONS(3133), + [anon_sym_await] = ACTIONS(3131), + [anon_sym_api] = ACTIONS(3131), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3131), + [anon_sym_include] = ACTIONS(3131), + [anon_sym_DEF] = ACTIONS(3131), + [anon_sym_IF] = ACTIONS(3131), + [anon_sym_cdef] = ACTIONS(3131), + [anon_sym_cpdef] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_ctypedef] = ACTIONS(3131), + [anon_sym_public] = ACTIONS(3131), + [anon_sym_packed] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym_readonly] = ACTIONS(3131), + [anon_sym_sizeof] = ACTIONS(3131), + [sym_string_start] = ACTIONS(3133), + }, + [1673] = { + [ts_builtin_sym_end] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3135), + [anon_sym_cimport] = ACTIONS(3135), + [anon_sym_from] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_print] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_del] = ACTIONS(3135), + [anon_sym_raise] = ACTIONS(3135), + [anon_sym_pass] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_def] = ACTIONS(3135), + [anon_sym_global] = ACTIONS(3135), + [anon_sym_nonlocal] = ACTIONS(3135), + [anon_sym_exec] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_class] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_lambda] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), + [anon_sym_None] = ACTIONS(3135), + [anon_sym_0x] = ACTIONS(3137), + [anon_sym_0X] = ACTIONS(3137), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0O] = ACTIONS(3137), + [anon_sym_0b] = ACTIONS(3137), + [anon_sym_0B] = ACTIONS(3137), + [aux_sym_integer_token4] = ACTIONS(3135), + [sym_float] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3135), + [anon_sym_api] = ACTIONS(3135), + [sym_true] = ACTIONS(3135), + [sym_false] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3135), + [anon_sym_include] = ACTIONS(3135), + [anon_sym_DEF] = ACTIONS(3135), + [anon_sym_IF] = ACTIONS(3135), + [anon_sym_cdef] = ACTIONS(3135), + [anon_sym_cpdef] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_ctypedef] = ACTIONS(3135), + [anon_sym_public] = ACTIONS(3135), + [anon_sym_packed] = ACTIONS(3135), + [anon_sym_inline] = ACTIONS(3135), + [anon_sym_readonly] = ACTIONS(3135), + [anon_sym_sizeof] = ACTIONS(3135), + [sym_string_start] = ACTIONS(3137), + }, + [1674] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5328), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1675] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5413), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1676] = { + [ts_builtin_sym_end] = ACTIONS(3893), + [sym_identifier] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_import] = ACTIONS(3895), + [anon_sym_cimport] = ACTIONS(3895), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(3893), + [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_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(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(3895), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3893), + [anon_sym_lambda] = ACTIONS(3895), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3893), + [anon_sym_None] = ACTIONS(3895), + [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(3895), + [sym_float] = ACTIONS(3893), + [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(3893), + }, + [1677] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5420), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1678] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4961), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1679] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5562), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1680] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5452), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1681] = { + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_cimport] = ACTIONS(3149), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [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(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(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_lambda] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), + [anon_sym_None] = ACTIONS(3149), + [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(3149), + [sym_float] = ACTIONS(3151), + [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(3151), + }, + [1682] = { + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_cimport] = ACTIONS(3153), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [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(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(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_lambda] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_None] = ACTIONS(3153), + [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(3153), + [sym_float] = ACTIONS(3155), + [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), @@ -182435,89 +183286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3155), }, - [1661] = { + [1683] = { + [ts_builtin_sym_end] = ACTIONS(3159), [sym_identifier] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3159), [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_LPAREN] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3159), [anon_sym_print] = ACTIONS(3157), [anon_sym_assert] = ACTIONS(3157), [anon_sym_return] = ACTIONS(3157), @@ -182539,27 +183318,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), [anon_sym_not] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), [anon_sym_lambda] = ACTIONS(3157), [anon_sym_yield] = ACTIONS(3157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), [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), + [anon_sym_0x] = ACTIONS(3159), + [anon_sym_0X] = ACTIONS(3159), + [anon_sym_0o] = ACTIONS(3159), + [anon_sym_0O] = ACTIONS(3159), + [anon_sym_0b] = ACTIONS(3159), + [anon_sym_0B] = ACTIONS(3159), [aux_sym_integer_token4] = ACTIONS(3157), - [sym_float] = ACTIONS(3155), + [sym_float] = ACTIONS(3159), [anon_sym_await] = ACTIONS(3157), [anon_sym_api] = ACTIONS(3157), [sym_true] = ACTIONS(3157), @@ -182579,89 +183358,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3157), [anon_sym_readonly] = ACTIONS(3157), [anon_sym_sizeof] = ACTIONS(3157), - [sym__dedent] = ACTIONS(3155), - [sym_string_start] = ACTIONS(3155), + [sym_string_start] = ACTIONS(3159), }, - [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), + [1684] = { + [ts_builtin_sym_end] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_cimport] = ACTIONS(3161), + [anon_sym_from] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_print] = ACTIONS(3161), + [anon_sym_assert] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_del] = ACTIONS(3161), + [anon_sym_raise] = ACTIONS(3161), + [anon_sym_pass] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_match] = ACTIONS(3161), + [anon_sym_async] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3161), + [anon_sym_def] = ACTIONS(3161), + [anon_sym_global] = ACTIONS(3161), + [anon_sym_nonlocal] = ACTIONS(3161), + [anon_sym_exec] = ACTIONS(3161), + [anon_sym_type] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_lambda] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_None] = ACTIONS(3161), + [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(3161), + [sym_float] = ACTIONS(3163), + [anon_sym_await] = ACTIONS(3161), + [anon_sym_api] = ACTIONS(3161), + [sym_true] = ACTIONS(3161), + [sym_false] = ACTIONS(3161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3161), + [anon_sym_include] = ACTIONS(3161), + [anon_sym_DEF] = ACTIONS(3161), + [anon_sym_IF] = ACTIONS(3161), + [anon_sym_cdef] = ACTIONS(3161), + [anon_sym_cpdef] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_ctypedef] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_packed] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_readonly] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3161), + [sym_string_start] = ACTIONS(3163), }, - [1663] = { + [1685] = { + [ts_builtin_sym_end] = ACTIONS(3167), [sym_identifier] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3167), [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_LPAREN] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), [anon_sym_print] = ACTIONS(3165), [anon_sym_assert] = ACTIONS(3165), [anon_sym_return] = ACTIONS(3165), @@ -182683,27 +183462,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3165), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), [anon_sym_lambda] = ACTIONS(3165), [anon_sym_yield] = ACTIONS(3165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), [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), + [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(3165), - [sym_float] = ACTIONS(3163), + [sym_float] = ACTIONS(3167), [anon_sym_await] = ACTIONS(3165), [anon_sym_api] = ACTIONS(3165), [sym_true] = ACTIONS(3165), @@ -182723,89 +183502,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3167), }, - [1665] = { + [1686] = { + [ts_builtin_sym_end] = ACTIONS(3171), [sym_identifier] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3171), [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_LPAREN] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), [anon_sym_print] = ACTIONS(3169), [anon_sym_assert] = ACTIONS(3169), [anon_sym_return] = ACTIONS(3169), @@ -182827,27 +183534,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), [anon_sym_not] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), [anon_sym_lambda] = ACTIONS(3169), [anon_sym_yield] = ACTIONS(3169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), [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), + [anon_sym_0x] = ACTIONS(3171), + [anon_sym_0X] = ACTIONS(3171), + [anon_sym_0o] = ACTIONS(3171), + [anon_sym_0O] = ACTIONS(3171), + [anon_sym_0b] = ACTIONS(3171), + [anon_sym_0B] = ACTIONS(3171), [aux_sym_integer_token4] = ACTIONS(3169), - [sym_float] = ACTIONS(3167), + [sym_float] = ACTIONS(3171), [anon_sym_await] = ACTIONS(3169), [anon_sym_api] = ACTIONS(3169), [sym_true] = ACTIONS(3169), @@ -182867,89 +183574,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3169), [anon_sym_readonly] = ACTIONS(3169), [anon_sym_sizeof] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3167), - [sym_string_start] = ACTIONS(3167), + [sym_string_start] = ACTIONS(3171), }, - [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), + [1687] = { + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3567), + [anon_sym_SEMI] = ACTIONS(3569), + [anon_sym_import] = ACTIONS(3567), + [anon_sym_cimport] = ACTIONS(3567), + [anon_sym_from] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3569), + [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(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(3567), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_TILDE] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3569), + [anon_sym_lambda] = ACTIONS(3567), + [anon_sym_yield] = ACTIONS(3567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), + [anon_sym_None] = ACTIONS(3567), + [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(3567), + [sym_float] = ACTIONS(3569), + [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_new] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [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(3569), }, - [1667] = { - [sym_identifier] = ACTIONS(3183), + [1688] = { + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym_import] = ACTIONS(3571), + [anon_sym_cimport] = ACTIONS(3571), + [anon_sym_from] = ACTIONS(3571), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_STAR] = ACTIONS(3573), + [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(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(3571), + [anon_sym_AMP] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_LT] = ACTIONS(3573), + [anon_sym_lambda] = ACTIONS(3571), + [anon_sym_yield] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [anon_sym_None] = ACTIONS(3571), + [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(3571), + [sym_float] = ACTIONS(3573), + [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(3573), + }, + [1689] = { + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3575), + [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_cimport] = ACTIONS(3575), + [anon_sym_from] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3577), + [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(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(3575), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3577), + [anon_sym_LT] = ACTIONS(3577), + [anon_sym_lambda] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_None] = ACTIONS(3575), + [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(3575), + [sym_float] = ACTIONS(3577), + [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(3577), + }, + [1690] = { + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_import] = ACTIONS(3579), + [anon_sym_cimport] = ACTIONS(3579), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3581), + [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(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(3579), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3581), + [anon_sym_LT] = ACTIONS(3581), + [anon_sym_lambda] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), + [anon_sym_None] = ACTIONS(3579), + [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(3579), + [sym_float] = ACTIONS(3581), + [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(3581), + }, + [1691] = { + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3583), + [anon_sym_SEMI] = ACTIONS(3585), + [anon_sym_import] = ACTIONS(3583), + [anon_sym_cimport] = ACTIONS(3583), + [anon_sym_from] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_STAR] = ACTIONS(3585), + [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(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(3583), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3585), + [anon_sym_LT] = ACTIONS(3585), + [anon_sym_lambda] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), + [anon_sym_None] = ACTIONS(3583), + [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(3583), + [sym_float] = ACTIONS(3585), + [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(3585), + }, + [1692] = { + [ts_builtin_sym_end] = ACTIONS(3897), + [sym_identifier] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3897), + [anon_sym_import] = ACTIONS(3899), + [anon_sym_cimport] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_STAR] = ACTIONS(3897), + [anon_sym_print] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_del] = ACTIONS(3899), + [anon_sym_raise] = ACTIONS(3899), + [anon_sym_pass] = ACTIONS(3899), + [anon_sym_break] = ACTIONS(3899), + [anon_sym_continue] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_def] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_nonlocal] = ACTIONS(3899), + [anon_sym_exec] = ACTIONS(3899), + [anon_sym_type] = ACTIONS(3899), + [anon_sym_class] = ACTIONS(3899), + [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(3899), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_lambda] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_None] = ACTIONS(3899), + [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(3899), + [sym_float] = ACTIONS(3897), + [anon_sym_await] = ACTIONS(3899), + [anon_sym_api] = ACTIONS(3899), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3899), + [anon_sym_include] = ACTIONS(3899), + [anon_sym_DEF] = ACTIONS(3899), + [anon_sym_IF] = ACTIONS(3899), + [anon_sym_cdef] = ACTIONS(3899), + [anon_sym_cpdef] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_ctypedef] = ACTIONS(3899), + [anon_sym_public] = ACTIONS(3899), + [anon_sym_packed] = ACTIONS(3899), + [anon_sym_inline] = ACTIONS(3899), + [anon_sym_readonly] = ACTIONS(3899), + [anon_sym_sizeof] = ACTIONS(3899), + [sym_string_start] = ACTIONS(3897), + }, + [1693] = { + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3179), [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3179), + [anon_sym_cimport] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_print] = ACTIONS(3179), + [anon_sym_assert] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_del] = ACTIONS(3179), + [anon_sym_raise] = ACTIONS(3179), + [anon_sym_pass] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3179), + [anon_sym_def] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3179), + [anon_sym_nonlocal] = ACTIONS(3179), + [anon_sym_exec] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [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(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_lambda] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_None] = ACTIONS(3179), + [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(3179), + [sym_float] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3179), + [anon_sym_api] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3179), + [anon_sym_include] = ACTIONS(3179), + [anon_sym_DEF] = ACTIONS(3179), + [anon_sym_IF] = ACTIONS(3179), + [anon_sym_cdef] = ACTIONS(3179), + [anon_sym_cpdef] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_ctypedef] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_packed] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3179), + [anon_sym_sizeof] = ACTIONS(3179), + [sym_string_start] = ACTIONS(3181), + }, + [1694] = { + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), [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_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_print] = ACTIONS(3183), [anon_sym_assert] = ACTIONS(3183), [anon_sym_return] = ACTIONS(3183), @@ -182971,27 +184110,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3183), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), [anon_sym_lambda] = ACTIONS(3183), [anon_sym_yield] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), [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), + [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(3183), - [sym_float] = ACTIONS(3181), + [sym_float] = ACTIONS(3185), [anon_sym_await] = ACTIONS(3183), [anon_sym_api] = ACTIONS(3183), [sym_true] = ACTIONS(3183), @@ -183011,17 +184150,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3183), [anon_sym_readonly] = ACTIONS(3183), [anon_sym_sizeof] = ACTIONS(3183), - [sym__dedent] = ACTIONS(3181), - [sym_string_start] = ACTIONS(3181), + [sym_string_start] = ACTIONS(3185), }, - [1668] = { + [1695] = { + [ts_builtin_sym_end] = ACTIONS(3189), [sym_identifier] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3189), [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_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), [anon_sym_print] = ACTIONS(3187), [anon_sym_assert] = ACTIONS(3187), [anon_sym_return] = ACTIONS(3187), @@ -183043,27 +184182,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3187), [anon_sym_type] = ACTIONS(3187), [anon_sym_class] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), [anon_sym_not] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_lambda] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), [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), + [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(3187), - [sym_float] = ACTIONS(3185), + [sym_float] = ACTIONS(3189), [anon_sym_await] = ACTIONS(3187), [anon_sym_api] = ACTIONS(3187), [sym_true] = ACTIONS(3187), @@ -183083,17 +184222,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3187), [anon_sym_readonly] = ACTIONS(3187), [anon_sym_sizeof] = ACTIONS(3187), - [sym__dedent] = ACTIONS(3185), - [sym_string_start] = ACTIONS(3185), + [sym_string_start] = ACTIONS(3189), }, - [1669] = { + [1696] = { + [ts_builtin_sym_end] = ACTIONS(3193), [sym_identifier] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3193), [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_LPAREN] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), [anon_sym_print] = ACTIONS(3191), [anon_sym_assert] = ACTIONS(3191), [anon_sym_return] = ACTIONS(3191), @@ -183115,27 +184254,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3191), [anon_sym_type] = ACTIONS(3191), [anon_sym_class] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), [anon_sym_not] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), [anon_sym_lambda] = ACTIONS(3191), [anon_sym_yield] = ACTIONS(3191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), [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), + [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(3191), - [sym_float] = ACTIONS(3189), + [sym_float] = ACTIONS(3193), [anon_sym_await] = ACTIONS(3191), [anon_sym_api] = ACTIONS(3191), [sym_true] = ACTIONS(3191), @@ -183155,17 +184294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3191), [anon_sym_readonly] = ACTIONS(3191), [anon_sym_sizeof] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3189), - [sym_string_start] = ACTIONS(3189), + [sym_string_start] = ACTIONS(3193), }, - [1670] = { + [1697] = { + [ts_builtin_sym_end] = ACTIONS(3197), [sym_identifier] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3197), [anon_sym_import] = ACTIONS(3195), [anon_sym_cimport] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -183187,27 +184326,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), [anon_sym_None] = ACTIONS(3195), - [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), + [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(3195), - [sym_float] = ACTIONS(3193), + [sym_float] = ACTIONS(3197), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -183227,17 +184366,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3193), - [sym_string_start] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3197), }, - [1671] = { + [1698] = { + [ts_builtin_sym_end] = ACTIONS(3201), [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3201), [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_LPAREN] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), [anon_sym_print] = ACTIONS(3199), [anon_sym_assert] = ACTIONS(3199), [anon_sym_return] = ACTIONS(3199), @@ -183259,27 +184398,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), [anon_sym_lambda] = ACTIONS(3199), [anon_sym_yield] = ACTIONS(3199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), [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), + [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(3199), - [sym_float] = ACTIONS(3197), + [sym_float] = ACTIONS(3201), [anon_sym_await] = ACTIONS(3199), [anon_sym_api] = ACTIONS(3199), [sym_true] = ACTIONS(3199), @@ -183299,17 +184438,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3199), [anon_sym_readonly] = ACTIONS(3199), [anon_sym_sizeof] = ACTIONS(3199), - [sym__dedent] = ACTIONS(3197), - [sym_string_start] = ACTIONS(3197), + [sym_string_start] = ACTIONS(3201), }, - [1672] = { - [sym_identifier] = ACTIONS(3207), + [1699] = { + [ts_builtin_sym_end] = ACTIONS(3205), + [sym_identifier] = ACTIONS(3203), [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3203), + [anon_sym_cimport] = ACTIONS(3203), + [anon_sym_from] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [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(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(3203), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_lambda] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_None] = ACTIONS(3203), + [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(3203), + [sym_float] = ACTIONS(3205), + [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(3205), + }, + [1700] = { + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), [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_LPAREN] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), [anon_sym_print] = ACTIONS(3207), [anon_sym_assert] = ACTIONS(3207), [anon_sym_return] = ACTIONS(3207), @@ -183331,27 +184542,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3207), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), [anon_sym_lambda] = ACTIONS(3207), [anon_sym_yield] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), [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), + [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(3207), - [sym_float] = ACTIONS(3205), + [sym_float] = ACTIONS(3209), [anon_sym_await] = ACTIONS(3207), [anon_sym_api] = ACTIONS(3207), [sym_true] = ACTIONS(3207), @@ -183371,232 +184582,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3207), [anon_sym_readonly] = ACTIONS(3207), [anon_sym_sizeof] = ACTIONS(3207), - [sym__dedent] = ACTIONS(3205), - [sym_string_start] = ACTIONS(3205), + [sym_string_start] = ACTIONS(3209), }, - [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), + [1701] = { + [ts_builtin_sym_end] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_cimport] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [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(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_lambda] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_None] = ACTIONS(3211), + [anon_sym_0x] = ACTIONS(3213), + [anon_sym_0X] = ACTIONS(3213), + [anon_sym_0o] = ACTIONS(3213), + [anon_sym_0O] = ACTIONS(3213), + [anon_sym_0b] = ACTIONS(3213), + [anon_sym_0B] = ACTIONS(3213), + [aux_sym_integer_token4] = ACTIONS(3211), + [sym_float] = ACTIONS(3213), + [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_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), + [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(3213), }, - [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), + [1702] = { + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_cimport] = ACTIONS(3215), + [anon_sym_from] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_print] = ACTIONS(3215), + [anon_sym_assert] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_del] = ACTIONS(3215), + [anon_sym_raise] = ACTIONS(3215), + [anon_sym_pass] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_with] = ACTIONS(3215), + [anon_sym_def] = ACTIONS(3215), + [anon_sym_global] = ACTIONS(3215), + [anon_sym_nonlocal] = ACTIONS(3215), + [anon_sym_exec] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [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(3215), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_lambda] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_None] = ACTIONS(3215), + [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(3215), + [sym_float] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3215), + [anon_sym_api] = ACTIONS(3215), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3215), + [anon_sym_include] = ACTIONS(3215), + [anon_sym_DEF] = ACTIONS(3215), + [anon_sym_IF] = ACTIONS(3215), + [anon_sym_cdef] = ACTIONS(3215), + [anon_sym_cpdef] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_ctypedef] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_packed] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym_readonly] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3215), + [sym_string_start] = ACTIONS(3217), }, - [1676] = { + [1703] = { + [ts_builtin_sym_end] = ACTIONS(3221), [sym_identifier] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), [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_LPAREN] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), [anon_sym_print] = ACTIONS(3219), [anon_sym_assert] = ACTIONS(3219), [anon_sym_return] = ACTIONS(3219), @@ -183611,7 +184751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -183619,27 +184758,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), [anon_sym_not] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), [anon_sym_lambda] = ACTIONS(3219), [anon_sym_yield] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), [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), + [anon_sym_0x] = ACTIONS(3221), + [anon_sym_0X] = ACTIONS(3221), + [anon_sym_0o] = ACTIONS(3221), + [anon_sym_0O] = ACTIONS(3221), + [anon_sym_0b] = ACTIONS(3221), + [anon_sym_0B] = ACTIONS(3221), [aux_sym_integer_token4] = ACTIONS(3219), - [sym_float] = ACTIONS(3217), + [sym_float] = ACTIONS(3221), [anon_sym_await] = ACTIONS(3219), [anon_sym_api] = ACTIONS(3219), [sym_true] = ACTIONS(3219), @@ -183659,781 +184798,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3221), }, - [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), + [1704] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5301), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -184444,8 +184862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -184454,374 +184872,1023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1705] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_cimport] = ACTIONS(3223), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_print] = ACTIONS(3223), + [anon_sym_assert] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_del] = ACTIONS(3223), + [anon_sym_raise] = ACTIONS(3223), + [anon_sym_pass] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_def] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_nonlocal] = ACTIONS(3223), + [anon_sym_exec] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_lambda] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [anon_sym_None] = ACTIONS(3223), + [anon_sym_0x] = ACTIONS(3225), + [anon_sym_0X] = ACTIONS(3225), + [anon_sym_0o] = ACTIONS(3225), + [anon_sym_0O] = ACTIONS(3225), + [anon_sym_0b] = ACTIONS(3225), + [anon_sym_0B] = ACTIONS(3225), + [aux_sym_integer_token4] = ACTIONS(3223), + [sym_float] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_api] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3223), + [anon_sym_include] = ACTIONS(3223), + [anon_sym_DEF] = ACTIONS(3223), + [anon_sym_IF] = ACTIONS(3223), + [anon_sym_cdef] = ACTIONS(3223), + [anon_sym_cpdef] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_ctypedef] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_packed] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [sym_string_start] = ACTIONS(3225), }, - [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), + [1706] = { + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_cimport] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [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(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(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_lambda] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), + [anon_sym_None] = ACTIONS(3183), + [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(3183), + [sym_float] = ACTIONS(3185), + [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(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), + [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(3185), }, - [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), + [1707] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_cimport] = ACTIONS(3227), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_print] = ACTIONS(3227), + [anon_sym_assert] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_del] = ACTIONS(3227), + [anon_sym_raise] = ACTIONS(3227), + [anon_sym_pass] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_def] = ACTIONS(3227), + [anon_sym_global] = ACTIONS(3227), + [anon_sym_nonlocal] = ACTIONS(3227), + [anon_sym_exec] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_AT] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_not] = ACTIONS(3227), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_lambda] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_None] = ACTIONS(3227), + [anon_sym_0x] = ACTIONS(3229), + [anon_sym_0X] = ACTIONS(3229), + [anon_sym_0o] = ACTIONS(3229), + [anon_sym_0O] = ACTIONS(3229), + [anon_sym_0b] = ACTIONS(3229), + [anon_sym_0B] = ACTIONS(3229), + [aux_sym_integer_token4] = ACTIONS(3227), + [sym_float] = ACTIONS(3229), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_api] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3227), + [anon_sym_include] = ACTIONS(3227), + [anon_sym_DEF] = ACTIONS(3227), + [anon_sym_IF] = ACTIONS(3227), + [anon_sym_cdef] = ACTIONS(3227), + [anon_sym_cpdef] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_ctypedef] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_packed] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_sizeof] = ACTIONS(3227), + [sym_string_start] = ACTIONS(3229), }, - [1693] = { - [sym_identifier] = ACTIONS(3263), + [1708] = { + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_cimport] = ACTIONS(3231), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_del] = ACTIONS(3231), + [anon_sym_raise] = ACTIONS(3231), + [anon_sym_pass] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_def] = ACTIONS(3231), + [anon_sym_global] = ACTIONS(3231), + [anon_sym_nonlocal] = ACTIONS(3231), + [anon_sym_exec] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_not] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_lambda] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_None] = ACTIONS(3231), + [anon_sym_0x] = ACTIONS(3233), + [anon_sym_0X] = ACTIONS(3233), + [anon_sym_0o] = ACTIONS(3233), + [anon_sym_0O] = ACTIONS(3233), + [anon_sym_0b] = ACTIONS(3233), + [anon_sym_0B] = ACTIONS(3233), + [aux_sym_integer_token4] = ACTIONS(3231), + [sym_float] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_api] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3231), + [anon_sym_include] = ACTIONS(3231), + [anon_sym_DEF] = ACTIONS(3231), + [anon_sym_IF] = ACTIONS(3231), + [anon_sym_cdef] = ACTIONS(3231), + [anon_sym_cpdef] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_ctypedef] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_packed] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_sizeof] = ACTIONS(3231), + [sym_string_start] = ACTIONS(3233), + }, + [1709] = { + [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), + }, + [1710] = { + [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), + }, + [1711] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5597), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1712] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5159), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1713] = { + [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), + }, + [1714] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5355), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1715] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5596), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1716] = { + [ts_builtin_sym_end] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_cimport] = ACTIONS(3251), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_print] = ACTIONS(3251), + [anon_sym_assert] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_del] = ACTIONS(3251), + [anon_sym_raise] = ACTIONS(3251), + [anon_sym_pass] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3251), + [anon_sym_def] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3251), + [anon_sym_nonlocal] = ACTIONS(3251), + [anon_sym_exec] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_not] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_lambda] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_None] = ACTIONS(3251), + [anon_sym_0x] = ACTIONS(3253), + [anon_sym_0X] = ACTIONS(3253), + [anon_sym_0o] = ACTIONS(3253), + [anon_sym_0O] = ACTIONS(3253), + [anon_sym_0b] = ACTIONS(3253), + [anon_sym_0B] = ACTIONS(3253), + [aux_sym_integer_token4] = ACTIONS(3251), + [sym_float] = ACTIONS(3253), + [anon_sym_await] = ACTIONS(3251), + [anon_sym_api] = ACTIONS(3251), + [sym_true] = ACTIONS(3251), + [sym_false] = ACTIONS(3251), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_DEF] = ACTIONS(3251), + [anon_sym_IF] = ACTIONS(3251), + [anon_sym_cdef] = ACTIONS(3251), + [anon_sym_cpdef] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_ctypedef] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_packed] = ACTIONS(3251), + [anon_sym_inline] = ACTIONS(3251), + [anon_sym_readonly] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(3251), + [sym_string_start] = ACTIONS(3253), + }, + [1717] = { + [ts_builtin_sym_end] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_cimport] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_print] = ACTIONS(3255), + [anon_sym_assert] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_del] = ACTIONS(3255), + [anon_sym_raise] = ACTIONS(3255), + [anon_sym_pass] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_def] = ACTIONS(3255), + [anon_sym_global] = ACTIONS(3255), + [anon_sym_nonlocal] = ACTIONS(3255), + [anon_sym_exec] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [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(3255), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_lambda] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_None] = ACTIONS(3255), + [anon_sym_0x] = ACTIONS(3257), + [anon_sym_0X] = ACTIONS(3257), + [anon_sym_0o] = ACTIONS(3257), + [anon_sym_0O] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(3257), + [anon_sym_0B] = ACTIONS(3257), + [aux_sym_integer_token4] = ACTIONS(3255), + [sym_float] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_api] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3255), + [anon_sym_include] = ACTIONS(3255), + [anon_sym_DEF] = ACTIONS(3255), + [anon_sym_IF] = ACTIONS(3255), + [anon_sym_cdef] = ACTIONS(3255), + [anon_sym_cpdef] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_ctypedef] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_packed] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_sizeof] = ACTIONS(3255), + [sym_string_start] = ACTIONS(3257), + }, + [1718] = { + [ts_builtin_sym_end] = ACTIONS(3261), + [sym_identifier] = ACTIONS(3259), [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_cimport] = ACTIONS(3259), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [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_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(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(3259), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_lambda] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_None] = ACTIONS(3259), + [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(3259), + [sym_float] = ACTIONS(3261), + [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(3261), + }, + [1719] = { + [ts_builtin_sym_end] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3265), [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_LPAREN] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), [anon_sym_print] = ACTIONS(3263), [anon_sym_assert] = ACTIONS(3263), [anon_sym_return] = ACTIONS(3263), @@ -184843,27 +185910,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), [anon_sym_lambda] = ACTIONS(3263), [anon_sym_yield] = ACTIONS(3263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), [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), + [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(3263), - [sym_float] = ACTIONS(3261), + [sym_float] = ACTIONS(3265), [anon_sym_await] = ACTIONS(3263), [anon_sym_api] = ACTIONS(3263), [sym_true] = ACTIONS(3263), @@ -184883,17 +185950,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3263), [anon_sym_readonly] = ACTIONS(3263), [anon_sym_sizeof] = ACTIONS(3263), - [sym__dedent] = ACTIONS(3261), - [sym_string_start] = ACTIONS(3261), + [sym_string_start] = ACTIONS(3265), }, - [1694] = { + [1720] = { + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym_import] = ACTIONS(3587), + [anon_sym_cimport] = ACTIONS(3587), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [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(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(3587), + [anon_sym_AMP] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_LT] = ACTIONS(3589), + [anon_sym_lambda] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [anon_sym_None] = ACTIONS(3587), + [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(3587), + [sym_float] = ACTIONS(3589), + [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(3589), + }, + [1721] = { + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_import] = ACTIONS(3591), + [anon_sym_cimport] = ACTIONS(3591), + [anon_sym_from] = ACTIONS(3591), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [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(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(3591), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_LT] = ACTIONS(3593), + [anon_sym_lambda] = ACTIONS(3591), + [anon_sym_yield] = ACTIONS(3591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), + [anon_sym_None] = ACTIONS(3591), + [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(3591), + [sym_float] = ACTIONS(3593), + [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(3593), + }, + [1722] = { + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3595), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_import] = ACTIONS(3595), + [anon_sym_cimport] = ACTIONS(3595), + [anon_sym_from] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3597), + [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(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(3595), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_LT] = ACTIONS(3597), + [anon_sym_lambda] = ACTIONS(3595), + [anon_sym_yield] = ACTIONS(3595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_None] = ACTIONS(3595), + [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(3595), + [sym_float] = ACTIONS(3597), + [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(3597), + }, + [1723] = { + [ts_builtin_sym_end] = ACTIONS(3269), [sym_identifier] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3269), [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_LPAREN] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), [anon_sym_print] = ACTIONS(3267), [anon_sym_assert] = ACTIONS(3267), [anon_sym_return] = ACTIONS(3267), @@ -184915,27 +186198,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), [anon_sym_lambda] = ACTIONS(3267), [anon_sym_yield] = ACTIONS(3267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), [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), + [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(3267), - [sym_float] = ACTIONS(3265), + [sym_float] = ACTIONS(3269), [anon_sym_await] = ACTIONS(3267), [anon_sym_api] = ACTIONS(3267), [sym_true] = ACTIONS(3267), @@ -184955,17 +186238,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3267), [anon_sym_readonly] = ACTIONS(3267), [anon_sym_sizeof] = ACTIONS(3267), - [sym__dedent] = ACTIONS(3265), - [sym_string_start] = ACTIONS(3265), + [sym_string_start] = ACTIONS(3269), }, - [1695] = { - [sym_identifier] = ACTIONS(3279), + [1724] = { + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_cimport] = ACTIONS(3271), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [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(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(3271), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_lambda] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3273), + [anon_sym_None] = ACTIONS(3271), + [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(3271), + [sym_float] = ACTIONS(3273), + [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(3273), + }, + [1725] = { + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3275), [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_cimport] = ACTIONS(3275), + [anon_sym_from] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [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(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(3275), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_lambda] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), + [anon_sym_None] = ACTIONS(3275), + [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(3275), + [sym_float] = ACTIONS(3277), + [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(3277), + }, + [1726] = { + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3281), [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_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), [anon_sym_print] = ACTIONS(3279), [anon_sym_assert] = ACTIONS(3279), [anon_sym_return] = ACTIONS(3279), @@ -184987,27 +186414,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), + [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(3277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), [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), + [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(3279), - [sym_float] = ACTIONS(3277), + [sym_float] = ACTIONS(3281), [anon_sym_await] = ACTIONS(3279), [anon_sym_api] = ACTIONS(3279), [sym_true] = ACTIONS(3279), @@ -185027,143 +186454,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3281), }, - [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), + [1727] = { + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_cimport] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [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(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(3283), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_lambda] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), + [anon_sym_None] = ACTIONS(3283), + [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(3283), + [sym_float] = ACTIONS(3285), + [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(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_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(3285), + }, + [1728] = { + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3289), + [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), + [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(3287), + [sym_float] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_api] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3287), + [anon_sym_include] = ACTIONS(3287), + [anon_sym_DEF] = ACTIONS(3287), + [anon_sym_IF] = ACTIONS(3287), + [anon_sym_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), + }, + [1729] = { + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_cimport] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [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(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(3291), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_lambda] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_None] = ACTIONS(3291), + [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(3291), + [sym_float] = ACTIONS(3293), + [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(3293), + }, + [1730] = { + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_cimport] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [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(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(3295), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_lambda] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_None] = ACTIONS(3295), + [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(3295), + [sym_float] = ACTIONS(3297), + [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(3297), + }, + [1731] = { + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_cimport] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [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(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(3299), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_lambda] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_None] = ACTIONS(3299), + [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(3299), + [sym_float] = ACTIONS(3301), + [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(3301), + }, + [1732] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_cimport] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [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(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(3303), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_lambda] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_None] = ACTIONS(3303), + [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(3303), + [sym_float] = ACTIONS(3305), + [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(3305), + }, + [1733] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_cimport] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [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(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(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_lambda] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_None] = ACTIONS(3307), + [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(3307), + [sym_float] = ACTIONS(3309), + [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(3309), + }, + [1734] = { + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_cimport] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [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(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(3311), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_lambda] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_None] = ACTIONS(3311), + [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(3311), + [sym_float] = ACTIONS(3313), + [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(3313), + }, + [1735] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_cimport] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [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(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(3315), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_lambda] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_None] = ACTIONS(3315), + [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(3315), + [sym_float] = ACTIONS(3317), + [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(3317), + }, + [1736] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_cimport] = ACTIONS(3319), + [anon_sym_from] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [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(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(3319), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_lambda] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_None] = ACTIONS(3319), + [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(3319), + [sym_float] = ACTIONS(3321), + [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), @@ -185171,17 +187174,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3319), [anon_sym_readonly] = ACTIONS(3319), [anon_sym_sizeof] = ACTIONS(3319), - [sym__dedent] = ACTIONS(3317), - [sym_string_start] = ACTIONS(3317), + [sym_string_start] = ACTIONS(3321), }, - [1698] = { + [1737] = { + [ts_builtin_sym_end] = ACTIONS(3325), [sym_identifier] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3325), [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_LPAREN] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), [anon_sym_print] = ACTIONS(3323), [anon_sym_assert] = ACTIONS(3323), [anon_sym_return] = ACTIONS(3323), @@ -185203,27 +187206,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3323), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), [anon_sym_lambda] = ACTIONS(3323), [anon_sym_yield] = ACTIONS(3323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), [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), + [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(3323), - [sym_float] = ACTIONS(3321), + [sym_float] = ACTIONS(3325), [anon_sym_await] = ACTIONS(3323), [anon_sym_api] = ACTIONS(3323), [sym_true] = ACTIONS(3323), @@ -185243,17 +187246,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3323), [anon_sym_readonly] = ACTIONS(3323), [anon_sym_sizeof] = ACTIONS(3323), - [sym__dedent] = ACTIONS(3321), - [sym_string_start] = ACTIONS(3321), + [sym_string_start] = ACTIONS(3325), }, - [1699] = { + [1738] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5487), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1739] = { + [ts_builtin_sym_end] = ACTIONS(3329), [sym_identifier] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3329), [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_LPAREN] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), [anon_sym_print] = ACTIONS(3327), [anon_sym_assert] = ACTIONS(3327), [anon_sym_return] = ACTIONS(3327), @@ -185275,27 +187350,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), [anon_sym_lambda] = ACTIONS(3327), [anon_sym_yield] = ACTIONS(3327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), [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), + [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(3327), - [sym_float] = ACTIONS(3325), + [sym_float] = ACTIONS(3329), [anon_sym_await] = ACTIONS(3327), [anon_sym_api] = ACTIONS(3327), [sym_true] = ACTIONS(3327), @@ -185315,17 +187390,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3327), [anon_sym_readonly] = ACTIONS(3327), [anon_sym_sizeof] = ACTIONS(3327), - [sym__dedent] = ACTIONS(3325), - [sym_string_start] = ACTIONS(3325), + [sym_string_start] = ACTIONS(3329), }, - [1700] = { + [1740] = { + [ts_builtin_sym_end] = ACTIONS(3333), [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3333), [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_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), [anon_sym_print] = ACTIONS(3331), [anon_sym_assert] = ACTIONS(3331), [anon_sym_return] = ACTIONS(3331), @@ -185347,27 +187422,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), + [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(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), [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), + [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(3331), - [sym_float] = ACTIONS(3329), + [sym_float] = ACTIONS(3333), [anon_sym_await] = ACTIONS(3331), [anon_sym_api] = ACTIONS(3331), [sym_true] = ACTIONS(3331), @@ -185387,17 +187462,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3331), [anon_sym_readonly] = ACTIONS(3331), [anon_sym_sizeof] = ACTIONS(3331), - [sym__dedent] = ACTIONS(3329), - [sym_string_start] = ACTIONS(3329), + [sym_string_start] = ACTIONS(3333), }, - [1701] = { + [1741] = { + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_import] = ACTIONS(3599), + [anon_sym_cimport] = ACTIONS(3599), + [anon_sym_from] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3601), + [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(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(3599), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_LT] = ACTIONS(3601), + [anon_sym_lambda] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [anon_sym_None] = ACTIONS(3599), + [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(3599), + [sym_float] = ACTIONS(3601), + [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(3601), + }, + [1742] = { + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym_import] = ACTIONS(3603), + [anon_sym_cimport] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_STAR] = ACTIONS(3605), + [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(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(3603), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_LT] = ACTIONS(3605), + [anon_sym_lambda] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [anon_sym_None] = ACTIONS(3603), + [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(3603), + [sym_float] = ACTIONS(3605), + [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(3605), + }, + [1743] = { + [ts_builtin_sym_end] = ACTIONS(3337), [sym_identifier] = ACTIONS(3335), - [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3337), [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_LPAREN] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), [anon_sym_print] = ACTIONS(3335), [anon_sym_assert] = ACTIONS(3335), [anon_sym_return] = ACTIONS(3335), @@ -185419,27 +187638,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), [anon_sym_lambda] = ACTIONS(3335), [anon_sym_yield] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), [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), + [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(3335), - [sym_float] = ACTIONS(3333), + [sym_float] = ACTIONS(3337), [anon_sym_await] = ACTIONS(3335), [anon_sym_api] = ACTIONS(3335), [sym_true] = ACTIONS(3335), @@ -185459,89 +187678,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3337), }, - [1703] = { + [1744] = { + [ts_builtin_sym_end] = ACTIONS(3341), [sym_identifier] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3341), [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_LPAREN] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), [anon_sym_print] = ACTIONS(3339), [anon_sym_assert] = ACTIONS(3339), [anon_sym_return] = ACTIONS(3339), @@ -185563,27 +187710,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), [anon_sym_lambda] = ACTIONS(3339), [anon_sym_yield] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), [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), + [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(3339), - [sym_float] = ACTIONS(3337), + [sym_float] = ACTIONS(3341), [anon_sym_await] = ACTIONS(3339), [anon_sym_api] = ACTIONS(3339), [sym_true] = ACTIONS(3339), @@ -185603,17 +187750,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3339), [anon_sym_readonly] = ACTIONS(3339), [anon_sym_sizeof] = ACTIONS(3339), - [sym__dedent] = ACTIONS(3337), - [sym_string_start] = ACTIONS(3337), + [sym_string_start] = ACTIONS(3341), }, - [1704] = { + [1745] = { + [ts_builtin_sym_end] = ACTIONS(3345), [sym_identifier] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3345), [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_LPAREN] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), [anon_sym_print] = ACTIONS(3343), [anon_sym_assert] = ACTIONS(3343), [anon_sym_return] = ACTIONS(3343), @@ -185635,27 +187782,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3343), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), [anon_sym_lambda] = ACTIONS(3343), [anon_sym_yield] = ACTIONS(3343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), [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), + [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(3343), - [sym_float] = ACTIONS(3341), + [sym_float] = ACTIONS(3345), [anon_sym_await] = ACTIONS(3343), [anon_sym_api] = ACTIONS(3343), [sym_true] = ACTIONS(3343), @@ -185675,161 +187822,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3345), }, - [1707] = { + [1746] = { + [ts_builtin_sym_end] = ACTIONS(3349), [sym_identifier] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3349), [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_LPAREN] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), [anon_sym_print] = ACTIONS(3347), [anon_sym_assert] = ACTIONS(3347), [anon_sym_return] = ACTIONS(3347), @@ -185851,27 +187854,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3347), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), [anon_sym_lambda] = ACTIONS(3347), [anon_sym_yield] = ACTIONS(3347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), [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), + [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(3347), - [sym_float] = ACTIONS(3345), + [sym_float] = ACTIONS(3349), [anon_sym_await] = ACTIONS(3347), [anon_sym_api] = ACTIONS(3347), [sym_true] = ACTIONS(3347), @@ -185891,89 +187894,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3349), }, - [1709] = { + [1747] = { + [ts_builtin_sym_end] = ACTIONS(3353), [sym_identifier] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3353), [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_LPAREN] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3353), [anon_sym_print] = ACTIONS(3351), [anon_sym_assert] = ACTIONS(3351), [anon_sym_return] = ACTIONS(3351), @@ -185995,27 +187926,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3351), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), [anon_sym_lambda] = ACTIONS(3351), [anon_sym_yield] = ACTIONS(3351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), [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), + [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(3351), - [sym_float] = ACTIONS(3349), + [sym_float] = ACTIONS(3353), [anon_sym_await] = ACTIONS(3351), [anon_sym_api] = ACTIONS(3351), [sym_true] = ACTIONS(3351), @@ -186035,161 +187966,1961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3351), [anon_sym_readonly] = ACTIONS(3351), [anon_sym_sizeof] = ACTIONS(3351), - [sym__dedent] = ACTIONS(3349), - [sym_string_start] = ACTIONS(3349), + [sym_string_start] = ACTIONS(3353), }, - [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), + [1748] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4166), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1749] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5448), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [1712] = { + [1750] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4170), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1751] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4172), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1752] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1753] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4175), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1754] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1755] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4178), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1756] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3143), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1757] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(4169), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1758] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5560), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1759] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3417), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1760] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3421), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1761] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3428), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1762] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1763] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3477), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1764] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3458), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1765] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3462), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1766] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4158), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1767] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4154), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1768] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4155), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1769] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1770] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4161), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1771] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1772] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4162), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1773] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3195), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1774] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(4163), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1775] = { + [ts_builtin_sym_end] = ACTIONS(3357), [sym_identifier] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3357), [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_LPAREN] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3357), [anon_sym_print] = ACTIONS(3355), [anon_sym_assert] = ACTIONS(3355), [anon_sym_return] = ACTIONS(3355), @@ -186211,27 +189942,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3355), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), [anon_sym_lambda] = ACTIONS(3355), [anon_sym_yield] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), [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), + [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(3355), - [sym_float] = ACTIONS(3353), + [sym_float] = ACTIONS(3357), [anon_sym_await] = ACTIONS(3355), [anon_sym_api] = ACTIONS(3355), [sym_true] = ACTIONS(3355), @@ -186251,89 +189982,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3357), }, - [1714] = { + [1776] = { + [ts_builtin_sym_end] = ACTIONS(3361), [sym_identifier] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3361), [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_LPAREN] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3361), [anon_sym_print] = ACTIONS(3359), [anon_sym_assert] = ACTIONS(3359), [anon_sym_return] = ACTIONS(3359), @@ -186355,27 +190014,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3359), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), [anon_sym_lambda] = ACTIONS(3359), [anon_sym_yield] = ACTIONS(3359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), [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), + [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(3359), - [sym_float] = ACTIONS(3357), + [sym_float] = ACTIONS(3361), [anon_sym_await] = ACTIONS(3359), [anon_sym_api] = ACTIONS(3359), [sym_true] = ACTIONS(3359), @@ -186395,89 +190054,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3361), }, - [1716] = { + [1777] = { + [ts_builtin_sym_end] = ACTIONS(3365), [sym_identifier] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3365), [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_LPAREN] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3365), [anon_sym_print] = ACTIONS(3363), [anon_sym_assert] = ACTIONS(3363), [anon_sym_return] = ACTIONS(3363), @@ -186499,27 +190086,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3363), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), [anon_sym_lambda] = ACTIONS(3363), [anon_sym_yield] = ACTIONS(3363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), [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), + [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(3363), - [sym_float] = ACTIONS(3361), + [sym_float] = ACTIONS(3365), [anon_sym_await] = ACTIONS(3363), [anon_sym_api] = ACTIONS(3363), [sym_true] = ACTIONS(3363), @@ -186539,17 +190126,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3363), [anon_sym_readonly] = ACTIONS(3363), [anon_sym_sizeof] = ACTIONS(3363), - [sym__dedent] = ACTIONS(3361), - [sym_string_start] = ACTIONS(3361), + [sym_string_start] = ACTIONS(3365), }, - [1717] = { + [1778] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1779] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5466), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3575), + [sym_subscript] = STATE(3575), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(3909), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3911), + [anon_sym_async] = ACTIONS(3911), + [anon_sym_exec] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(3913), + [anon_sym_api] = ACTIONS(3911), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1780] = { + [ts_builtin_sym_end] = ACTIONS(3369), [sym_identifier] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3369), [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_LPAREN] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3369), [anon_sym_print] = ACTIONS(3367), [anon_sym_assert] = ACTIONS(3367), [anon_sym_return] = ACTIONS(3367), @@ -186571,27 +190302,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3367), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), [anon_sym_lambda] = ACTIONS(3367), [anon_sym_yield] = ACTIONS(3367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), [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), + [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(3367), - [sym_float] = ACTIONS(3365), + [sym_float] = ACTIONS(3369), [anon_sym_await] = ACTIONS(3367), [anon_sym_api] = ACTIONS(3367), [sym_true] = ACTIONS(3367), @@ -186611,17 +190342,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3367), [anon_sym_readonly] = ACTIONS(3367), [anon_sym_sizeof] = ACTIONS(3367), - [sym__dedent] = ACTIONS(3365), - [sym_string_start] = ACTIONS(3365), + [sym_string_start] = ACTIONS(3369), }, - [1718] = { + [1781] = { + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3607), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_cimport] = ACTIONS(3607), + [anon_sym_from] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3609), + [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(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(3607), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(3609), + [anon_sym_lambda] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), + [anon_sym_None] = ACTIONS(3607), + [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(3607), + [sym_float] = ACTIONS(3609), + [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(3609), + }, + [1782] = { + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3611), + [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_import] = ACTIONS(3611), + [anon_sym_cimport] = ACTIONS(3611), + [anon_sym_from] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3613), + [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(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(3611), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3613), + [anon_sym_lambda] = ACTIONS(3611), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), + [anon_sym_None] = ACTIONS(3611), + [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(3611), + [sym_float] = ACTIONS(3613), + [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(3613), + }, + [1783] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5466), + [sym_primary_expression] = STATE(2834), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3384), + [sym_subscript] = STATE(3384), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(3917), + [anon_sym_match] = ACTIONS(3917), + [anon_sym_async] = ACTIONS(3917), + [anon_sym_exec] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(3919), + [anon_sym_api] = ACTIONS(3917), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1784] = { + [ts_builtin_sym_end] = ACTIONS(3373), [sym_identifier] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3373), [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_LPAREN] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3373), [anon_sym_print] = ACTIONS(3371), [anon_sym_assert] = ACTIONS(3371), [anon_sym_return] = ACTIONS(3371), @@ -186643,27 +190590,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3371), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), [anon_sym_lambda] = ACTIONS(3371), [anon_sym_yield] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), [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), + [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(3371), - [sym_float] = ACTIONS(3369), + [sym_float] = ACTIONS(3373), [anon_sym_await] = ACTIONS(3371), [anon_sym_api] = ACTIONS(3371), [sym_true] = ACTIONS(3371), @@ -186683,89 +190630,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string_start] = ACTIONS(3373), }, - [1720] = { + [1785] = { + [ts_builtin_sym_end] = ACTIONS(3377), [sym_identifier] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3377), [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_LPAREN] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), [anon_sym_print] = ACTIONS(3375), [anon_sym_assert] = ACTIONS(3375), [anon_sym_return] = ACTIONS(3375), @@ -186787,27 +190662,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3375), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), [anon_sym_lambda] = ACTIONS(3375), [anon_sym_yield] = ACTIONS(3375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), [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), + [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(3375), - [sym_float] = ACTIONS(3373), + [sym_float] = ACTIONS(3377), [anon_sym_await] = ACTIONS(3375), [anon_sym_api] = ACTIONS(3375), [sym_true] = ACTIONS(3375), @@ -186827,1349 +190702,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1786] = { + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3617), + [anon_sym_import] = ACTIONS(3615), + [anon_sym_cimport] = ACTIONS(3615), + [anon_sym_from] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3617), + [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(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(3615), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_lambda] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), + [anon_sym_None] = ACTIONS(3615), + [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(3615), + [sym_float] = ACTIONS(3617), + [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(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), + [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(3617), }, - [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), + [1787] = { + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym_import] = ACTIONS(3619), + [anon_sym_cimport] = ACTIONS(3619), + [anon_sym_from] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [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(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(3619), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_LT] = ACTIONS(3621), + [anon_sym_lambda] = ACTIONS(3619), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [anon_sym_None] = ACTIONS(3619), + [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(3619), + [sym_float] = ACTIONS(3621), + [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(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), + [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(3621), }, - [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), + [1788] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5696), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1789] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5255), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -188188,8 +190982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -188198,554 +190992,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1790] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5172), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1791] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(5447), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), + }, + [1792] = { + [sym_identifier] = ACTIONS(3787), + [anon_sym_SEMI] = ACTIONS(3921), + [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(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), + [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), }, - [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), + [1793] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5200), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1794] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5205), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1795] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1796] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5245), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1797] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5587), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1798] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5720), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -188764,8 +191630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -188774,1382 +191640,2318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1799] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(6948), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5201), + [sym_primary_expression] = STATE(2625), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1800] = { + [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(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), + [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), }, - [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), + [1801] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3121), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1802] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5186), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1803] = { + [sym_identifier] = ACTIONS(3645), + [anon_sym_SEMI] = ACTIONS(3643), + [anon_sym_import] = ACTIONS(3645), + [anon_sym_cimport] = ACTIONS(3645), + [anon_sym_from] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_STAR] = ACTIONS(3643), + [anon_sym_print] = ACTIONS(3645), + [anon_sym_assert] = ACTIONS(3645), + [anon_sym_return] = ACTIONS(3645), + [anon_sym_del] = ACTIONS(3645), + [anon_sym_raise] = ACTIONS(3645), + [anon_sym_pass] = ACTIONS(3645), + [anon_sym_break] = ACTIONS(3645), + [anon_sym_continue] = ACTIONS(3645), + [anon_sym_if] = ACTIONS(3645), + [anon_sym_match] = ACTIONS(3645), + [anon_sym_async] = ACTIONS(3645), + [anon_sym_for] = ACTIONS(3645), + [anon_sym_while] = ACTIONS(3645), + [anon_sym_try] = ACTIONS(3645), + [anon_sym_with] = ACTIONS(3645), + [anon_sym_def] = ACTIONS(3645), + [anon_sym_global] = ACTIONS(3645), + [anon_sym_nonlocal] = ACTIONS(3645), + [anon_sym_exec] = ACTIONS(3645), + [anon_sym_type] = ACTIONS(3645), + [anon_sym_class] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3643), + [anon_sym_AT] = ACTIONS(3643), + [anon_sym_DASH] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_PLUS] = ACTIONS(3643), + [anon_sym_not] = ACTIONS(3645), + [anon_sym_AMP] = ACTIONS(3643), + [anon_sym_TILDE] = ACTIONS(3643), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_lambda] = ACTIONS(3645), + [anon_sym_yield] = ACTIONS(3645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), + [anon_sym_None] = ACTIONS(3645), + [anon_sym_0x] = ACTIONS(3643), + [anon_sym_0X] = ACTIONS(3643), + [anon_sym_0o] = ACTIONS(3643), + [anon_sym_0O] = ACTIONS(3643), + [anon_sym_0b] = ACTIONS(3643), + [anon_sym_0B] = ACTIONS(3643), + [aux_sym_integer_token4] = ACTIONS(3645), + [sym_float] = ACTIONS(3643), + [anon_sym_await] = ACTIONS(3645), + [anon_sym_api] = ACTIONS(3645), + [sym_true] = ACTIONS(3645), + [sym_false] = ACTIONS(3645), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3645), + [anon_sym_include] = ACTIONS(3645), + [anon_sym_DEF] = ACTIONS(3645), + [anon_sym_IF] = ACTIONS(3645), + [anon_sym_cdef] = ACTIONS(3645), + [anon_sym_cpdef] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3645), + [anon_sym_ctypedef] = ACTIONS(3645), + [anon_sym_public] = ACTIONS(3645), + [anon_sym_packed] = ACTIONS(3645), + [anon_sym_inline] = ACTIONS(3645), + [anon_sym_readonly] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3645), + [sym__dedent] = ACTIONS(3643), + [sym_string_start] = ACTIONS(3643), + }, + [1804] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3373), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1805] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3377), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1806] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3378), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1807] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1808] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3385), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1809] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3387), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1810] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3284), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), [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), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1811] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(5233), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1812] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3290), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), [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), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1813] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), [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), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1814] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), [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), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1815] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1816] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3294), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_sizeof] = ACTIONS(1999), - [sym_string_start] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1817] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), [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), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [1767] = { - [ts_builtin_sym_end] = ACTIONS(3897), + [1818] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3298), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1819] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7072), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2628), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1820] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5467), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3496), + [sym_subscript] = STATE(3496), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_async] = ACTIONS(3929), + [anon_sym_exec] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(3931), + [anon_sym_api] = ACTIONS(3929), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1821] = { + [sym_identifier] = ACTIONS(3755), + [anon_sym_SEMI] = ACTIONS(3933), + [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), + }, + [1822] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5410), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1823] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5240), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1824] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1825] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5485), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3537), + [sym_subscript] = STATE(3537), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_async] = ACTIONS(3937), + [anon_sym_exec] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(3939), + [anon_sym_api] = ACTIONS(3937), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1826] = { + [sym_identifier] = ACTIONS(3817), + [anon_sym_SEMI] = ACTIONS(3815), + [anon_sym_import] = ACTIONS(3817), + [anon_sym_cimport] = ACTIONS(3817), + [anon_sym_from] = ACTIONS(3817), + [anon_sym_LPAREN] = ACTIONS(3815), + [anon_sym_STAR] = ACTIONS(3815), + [anon_sym_print] = ACTIONS(3817), + [anon_sym_assert] = ACTIONS(3817), + [anon_sym_return] = ACTIONS(3817), + [anon_sym_del] = ACTIONS(3817), + [anon_sym_raise] = ACTIONS(3817), + [anon_sym_pass] = ACTIONS(3817), + [anon_sym_break] = ACTIONS(3817), + [anon_sym_continue] = ACTIONS(3817), + [anon_sym_if] = ACTIONS(3817), + [anon_sym_match] = ACTIONS(3817), + [anon_sym_async] = ACTIONS(3817), + [anon_sym_for] = ACTIONS(3817), + [anon_sym_while] = ACTIONS(3817), + [anon_sym_try] = ACTIONS(3817), + [anon_sym_with] = ACTIONS(3817), + [anon_sym_def] = ACTIONS(3817), + [anon_sym_global] = ACTIONS(3817), + [anon_sym_nonlocal] = ACTIONS(3817), + [anon_sym_exec] = ACTIONS(3817), + [anon_sym_type] = ACTIONS(3817), + [anon_sym_class] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(3815), + [anon_sym_AT] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_LBRACE] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_not] = ACTIONS(3817), + [anon_sym_AMP] = ACTIONS(3815), + [anon_sym_TILDE] = ACTIONS(3815), + [anon_sym_LT] = ACTIONS(3815), + [anon_sym_lambda] = ACTIONS(3817), + [anon_sym_yield] = ACTIONS(3817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3815), + [anon_sym_None] = ACTIONS(3817), + [anon_sym_0x] = ACTIONS(3815), + [anon_sym_0X] = ACTIONS(3815), + [anon_sym_0o] = ACTIONS(3815), + [anon_sym_0O] = ACTIONS(3815), + [anon_sym_0b] = ACTIONS(3815), + [anon_sym_0B] = ACTIONS(3815), + [aux_sym_integer_token4] = ACTIONS(3817), + [sym_float] = ACTIONS(3815), + [anon_sym_await] = ACTIONS(3817), + [anon_sym_api] = ACTIONS(3817), + [sym_true] = ACTIONS(3817), + [sym_false] = ACTIONS(3817), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3817), + [anon_sym_include] = ACTIONS(3817), + [anon_sym_DEF] = ACTIONS(3817), + [anon_sym_IF] = ACTIONS(3817), + [anon_sym_cdef] = ACTIONS(3817), + [anon_sym_cpdef] = ACTIONS(3817), + [anon_sym_new] = ACTIONS(3817), + [anon_sym_ctypedef] = ACTIONS(3817), + [anon_sym_public] = ACTIONS(3817), + [anon_sym_packed] = ACTIONS(3817), + [anon_sym_inline] = ACTIONS(3817), + [anon_sym_readonly] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3817), + [sym__dedent] = ACTIONS(3815), + [sym_string_start] = ACTIONS(3815), + }, + [1827] = { + [sym_identifier] = ACTIONS(3847), + [anon_sym_SEMI] = ACTIONS(3845), + [anon_sym_import] = ACTIONS(3847), + [anon_sym_cimport] = ACTIONS(3847), + [anon_sym_from] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3845), + [anon_sym_STAR] = ACTIONS(3845), + [anon_sym_print] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_del] = ACTIONS(3847), + [anon_sym_raise] = ACTIONS(3847), + [anon_sym_pass] = ACTIONS(3847), + [anon_sym_break] = ACTIONS(3847), + [anon_sym_continue] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_async] = ACTIONS(3847), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_def] = ACTIONS(3847), + [anon_sym_global] = ACTIONS(3847), + [anon_sym_nonlocal] = ACTIONS(3847), + [anon_sym_exec] = ACTIONS(3847), + [anon_sym_type] = ACTIONS(3847), + [anon_sym_class] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3845), + [anon_sym_AT] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3845), + [anon_sym_PLUS] = ACTIONS(3845), + [anon_sym_not] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3845), + [anon_sym_TILDE] = ACTIONS(3845), + [anon_sym_LT] = ACTIONS(3845), + [anon_sym_lambda] = ACTIONS(3847), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3845), + [anon_sym_None] = ACTIONS(3847), + [anon_sym_0x] = ACTIONS(3845), + [anon_sym_0X] = ACTIONS(3845), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0O] = ACTIONS(3845), + [anon_sym_0b] = ACTIONS(3845), + [anon_sym_0B] = ACTIONS(3845), + [aux_sym_integer_token4] = ACTIONS(3847), + [sym_float] = ACTIONS(3845), + [anon_sym_await] = ACTIONS(3847), + [anon_sym_api] = ACTIONS(3847), + [sym_true] = ACTIONS(3847), + [sym_false] = ACTIONS(3847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3847), + [anon_sym_include] = ACTIONS(3847), + [anon_sym_DEF] = ACTIONS(3847), + [anon_sym_IF] = ACTIONS(3847), + [anon_sym_cdef] = ACTIONS(3847), + [anon_sym_cpdef] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_ctypedef] = ACTIONS(3847), + [anon_sym_public] = ACTIONS(3847), + [anon_sym_packed] = ACTIONS(3847), + [anon_sym_inline] = ACTIONS(3847), + [anon_sym_readonly] = ACTIONS(3847), + [anon_sym_sizeof] = ACTIONS(3847), + [sym__dedent] = ACTIONS(3845), + [sym_string_start] = ACTIONS(3845), + }, + [1828] = { + [ts_builtin_sym_end] = ACTIONS(3941), + [sym_identifier] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_cimport] = ACTIONS(3943), + [anon_sym_from] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_print] = ACTIONS(3943), + [anon_sym_assert] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_del] = ACTIONS(3943), + [anon_sym_raise] = ACTIONS(3943), + [anon_sym_pass] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_match] = ACTIONS(3943), + [anon_sym_async] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3943), + [anon_sym_def] = ACTIONS(3943), + [anon_sym_global] = ACTIONS(3943), + [anon_sym_nonlocal] = ACTIONS(3943), + [anon_sym_exec] = ACTIONS(3943), + [anon_sym_type] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_AT] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_lambda] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3941), + [anon_sym_None] = ACTIONS(3943), + [anon_sym_0x] = ACTIONS(3941), + [anon_sym_0X] = ACTIONS(3941), + [anon_sym_0o] = ACTIONS(3941), + [anon_sym_0O] = ACTIONS(3941), + [anon_sym_0b] = ACTIONS(3941), + [anon_sym_0B] = ACTIONS(3941), + [aux_sym_integer_token4] = ACTIONS(3943), + [sym_float] = ACTIONS(3941), + [anon_sym_await] = ACTIONS(3943), + [anon_sym_api] = ACTIONS(3943), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3943), + [anon_sym_include] = ACTIONS(3943), + [anon_sym_DEF] = ACTIONS(3943), + [anon_sym_IF] = ACTIONS(3943), + [anon_sym_cdef] = ACTIONS(3943), + [anon_sym_cpdef] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_ctypedef] = ACTIONS(3943), + [anon_sym_public] = ACTIONS(3943), + [anon_sym_packed] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym_readonly] = ACTIONS(3943), + [anon_sym_sizeof] = ACTIONS(3943), + [sym_string_start] = ACTIONS(3941), + }, + [1829] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3143), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1830] = { + [ts_builtin_sym_end] = ACTIONS(3945), + [sym_identifier] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym_import] = ACTIONS(3947), + [anon_sym_cimport] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_print] = ACTIONS(3947), + [anon_sym_assert] = ACTIONS(3947), + [anon_sym_return] = ACTIONS(3947), + [anon_sym_del] = ACTIONS(3947), + [anon_sym_raise] = ACTIONS(3947), + [anon_sym_pass] = ACTIONS(3947), + [anon_sym_break] = ACTIONS(3947), + [anon_sym_continue] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3947), + [anon_sym_match] = ACTIONS(3947), + [anon_sym_async] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3947), + [anon_sym_while] = ACTIONS(3947), + [anon_sym_try] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3947), + [anon_sym_def] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_nonlocal] = ACTIONS(3947), + [anon_sym_exec] = ACTIONS(3947), + [anon_sym_type] = ACTIONS(3947), + [anon_sym_class] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_AT] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_not] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_lambda] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3945), + [anon_sym_None] = ACTIONS(3947), + [anon_sym_0x] = ACTIONS(3945), + [anon_sym_0X] = ACTIONS(3945), + [anon_sym_0o] = ACTIONS(3945), + [anon_sym_0O] = ACTIONS(3945), + [anon_sym_0b] = ACTIONS(3945), + [anon_sym_0B] = ACTIONS(3945), + [aux_sym_integer_token4] = ACTIONS(3947), + [sym_float] = ACTIONS(3945), + [anon_sym_await] = ACTIONS(3947), + [anon_sym_api] = ACTIONS(3947), + [sym_true] = ACTIONS(3947), + [sym_false] = ACTIONS(3947), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3947), + [anon_sym_include] = ACTIONS(3947), + [anon_sym_DEF] = ACTIONS(3947), + [anon_sym_IF] = ACTIONS(3947), + [anon_sym_cdef] = ACTIONS(3947), + [anon_sym_cpdef] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3947), + [anon_sym_ctypedef] = ACTIONS(3947), + [anon_sym_public] = ACTIONS(3947), + [anon_sym_packed] = ACTIONS(3947), + [anon_sym_inline] = ACTIONS(3947), + [anon_sym_readonly] = ACTIONS(3947), + [anon_sym_sizeof] = ACTIONS(3947), + [sym_string_start] = ACTIONS(3945), + }, + [1831] = { [sym_identifier] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(3893), [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_LPAREN] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(3893), [anon_sym_print] = ACTIONS(3895), [anon_sym_assert] = ACTIONS(3895), [anon_sym_return] = ACTIONS(3895), @@ -190164,7 +193966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -190172,27 +193973,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3895), - [anon_sym_AMP] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_LT] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_LT] = ACTIONS(3893), [anon_sym_lambda] = ACTIONS(3895), [anon_sym_yield] = ACTIONS(3895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3893), [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), + [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(3895), - [sym_float] = ACTIONS(3897), + [sym_float] = ACTIONS(3893), [anon_sym_await] = ACTIONS(3895), [anon_sym_api] = ACTIONS(3895), [sym_true] = ACTIONS(3895), @@ -190212,585 +194013,1738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3895), [anon_sym_readonly] = ACTIONS(3895), [anon_sym_sizeof] = ACTIONS(3895), + [sym__dedent] = ACTIONS(3893), + [sym_string_start] = ACTIONS(3893), + }, + [1832] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7277), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(5155), + [sym_primary_expression] = STATE(2643), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1614), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1833] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5047), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [1834] = { + [sym_identifier] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3897), + [anon_sym_import] = ACTIONS(3899), + [anon_sym_cimport] = ACTIONS(3899), + [anon_sym_from] = ACTIONS(3899), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_STAR] = ACTIONS(3897), + [anon_sym_print] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_del] = ACTIONS(3899), + [anon_sym_raise] = ACTIONS(3899), + [anon_sym_pass] = ACTIONS(3899), + [anon_sym_break] = ACTIONS(3899), + [anon_sym_continue] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_async] = ACTIONS(3899), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_def] = ACTIONS(3899), + [anon_sym_global] = ACTIONS(3899), + [anon_sym_nonlocal] = ACTIONS(3899), + [anon_sym_exec] = ACTIONS(3899), + [anon_sym_type] = ACTIONS(3899), + [anon_sym_class] = ACTIONS(3899), + [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(3899), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_lambda] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_None] = ACTIONS(3899), + [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(3899), + [sym_float] = ACTIONS(3897), + [anon_sym_await] = ACTIONS(3899), + [anon_sym_api] = ACTIONS(3899), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3899), + [anon_sym_include] = ACTIONS(3899), + [anon_sym_DEF] = ACTIONS(3899), + [anon_sym_IF] = ACTIONS(3899), + [anon_sym_cdef] = ACTIONS(3899), + [anon_sym_cpdef] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_ctypedef] = ACTIONS(3899), + [anon_sym_public] = ACTIONS(3899), + [anon_sym_packed] = ACTIONS(3899), + [anon_sym_inline] = ACTIONS(3899), + [anon_sym_readonly] = ACTIONS(3899), + [anon_sym_sizeof] = ACTIONS(3899), + [sym__dedent] = ACTIONS(3897), [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), + [1835] = { + [ts_builtin_sym_end] = ACTIONS(3949), + [sym_identifier] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_import] = ACTIONS(3951), + [anon_sym_cimport] = ACTIONS(3951), + [anon_sym_from] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_print] = ACTIONS(3951), + [anon_sym_assert] = ACTIONS(3951), + [anon_sym_return] = ACTIONS(3951), + [anon_sym_del] = ACTIONS(3951), + [anon_sym_raise] = ACTIONS(3951), + [anon_sym_pass] = ACTIONS(3951), + [anon_sym_break] = ACTIONS(3951), + [anon_sym_continue] = ACTIONS(3951), + [anon_sym_if] = ACTIONS(3951), + [anon_sym_match] = ACTIONS(3951), + [anon_sym_async] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3951), + [anon_sym_while] = ACTIONS(3951), + [anon_sym_try] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3951), + [anon_sym_def] = ACTIONS(3951), + [anon_sym_global] = ACTIONS(3951), + [anon_sym_nonlocal] = ACTIONS(3951), + [anon_sym_exec] = ACTIONS(3951), + [anon_sym_type] = ACTIONS(3951), + [anon_sym_class] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_AT] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_not] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_lambda] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3949), + [anon_sym_None] = ACTIONS(3951), + [anon_sym_0x] = ACTIONS(3949), + [anon_sym_0X] = ACTIONS(3949), + [anon_sym_0o] = ACTIONS(3949), + [anon_sym_0O] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3949), + [anon_sym_0B] = ACTIONS(3949), + [aux_sym_integer_token4] = ACTIONS(3951), + [sym_float] = ACTIONS(3949), + [anon_sym_await] = ACTIONS(3951), + [anon_sym_api] = ACTIONS(3951), + [sym_true] = ACTIONS(3951), + [sym_false] = ACTIONS(3951), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3951), + [anon_sym_include] = ACTIONS(3951), + [anon_sym_DEF] = ACTIONS(3951), + [anon_sym_IF] = ACTIONS(3951), + [anon_sym_cdef] = ACTIONS(3951), + [anon_sym_cpdef] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3951), + [anon_sym_ctypedef] = ACTIONS(3951), + [anon_sym_public] = ACTIONS(3951), + [anon_sym_packed] = ACTIONS(3951), + [anon_sym_inline] = ACTIONS(3951), + [anon_sym_readonly] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3951), + [sym_string_start] = ACTIONS(3949), + }, + [1836] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4610), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [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), + [1837] = { + [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(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), + [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), }, - [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), + [1838] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5513), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(109), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [1839] = { + [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), }, - [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), + [1840] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(6919), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3508), + [sym_primary_expression] = STATE(2758), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1841] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5271), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1842] = { + [sym_identifier] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_cimport] = ACTIONS(3943), + [anon_sym_from] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_print] = ACTIONS(3943), + [anon_sym_assert] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_del] = ACTIONS(3943), + [anon_sym_raise] = ACTIONS(3943), + [anon_sym_pass] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_match] = ACTIONS(3943), + [anon_sym_async] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3943), + [anon_sym_def] = ACTIONS(3943), + [anon_sym_global] = ACTIONS(3943), + [anon_sym_nonlocal] = ACTIONS(3943), + [anon_sym_exec] = ACTIONS(3943), + [anon_sym_type] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_AT] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_lambda] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3941), + [anon_sym_None] = ACTIONS(3943), + [anon_sym_0x] = ACTIONS(3941), + [anon_sym_0X] = ACTIONS(3941), + [anon_sym_0o] = ACTIONS(3941), + [anon_sym_0O] = ACTIONS(3941), + [anon_sym_0b] = ACTIONS(3941), + [anon_sym_0B] = ACTIONS(3941), + [aux_sym_integer_token4] = ACTIONS(3943), + [sym_float] = ACTIONS(3941), + [anon_sym_await] = ACTIONS(3943), + [anon_sym_api] = ACTIONS(3943), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3943), + [anon_sym_include] = ACTIONS(3943), + [anon_sym_DEF] = ACTIONS(3943), + [anon_sym_IF] = ACTIONS(3943), + [anon_sym_cdef] = ACTIONS(3943), + [anon_sym_cpdef] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_ctypedef] = ACTIONS(3943), + [anon_sym_public] = ACTIONS(3943), + [anon_sym_packed] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym_readonly] = ACTIONS(3943), + [anon_sym_sizeof] = ACTIONS(3943), + [sym__dedent] = ACTIONS(3941), + [sym_string_start] = ACTIONS(3941), }, - [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), + [1843] = { + [sym_identifier] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym_import] = ACTIONS(3947), + [anon_sym_cimport] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_print] = ACTIONS(3947), + [anon_sym_assert] = ACTIONS(3947), + [anon_sym_return] = ACTIONS(3947), + [anon_sym_del] = ACTIONS(3947), + [anon_sym_raise] = ACTIONS(3947), + [anon_sym_pass] = ACTIONS(3947), + [anon_sym_break] = ACTIONS(3947), + [anon_sym_continue] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3947), + [anon_sym_match] = ACTIONS(3947), + [anon_sym_async] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3947), + [anon_sym_while] = ACTIONS(3947), + [anon_sym_try] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3947), + [anon_sym_def] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3947), + [anon_sym_nonlocal] = ACTIONS(3947), + [anon_sym_exec] = ACTIONS(3947), + [anon_sym_type] = ACTIONS(3947), + [anon_sym_class] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_AT] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_not] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_lambda] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3945), + [anon_sym_None] = ACTIONS(3947), + [anon_sym_0x] = ACTIONS(3945), + [anon_sym_0X] = ACTIONS(3945), + [anon_sym_0o] = ACTIONS(3945), + [anon_sym_0O] = ACTIONS(3945), + [anon_sym_0b] = ACTIONS(3945), + [anon_sym_0B] = ACTIONS(3945), + [aux_sym_integer_token4] = ACTIONS(3947), + [sym_float] = ACTIONS(3945), + [anon_sym_await] = ACTIONS(3947), + [anon_sym_api] = ACTIONS(3947), + [sym_true] = ACTIONS(3947), + [sym_false] = ACTIONS(3947), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3947), + [anon_sym_include] = ACTIONS(3947), + [anon_sym_DEF] = ACTIONS(3947), + [anon_sym_IF] = ACTIONS(3947), + [anon_sym_cdef] = ACTIONS(3947), + [anon_sym_cpdef] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3947), + [anon_sym_ctypedef] = ACTIONS(3947), + [anon_sym_public] = ACTIONS(3947), + [anon_sym_packed] = ACTIONS(3947), + [anon_sym_inline] = ACTIONS(3947), + [anon_sym_readonly] = ACTIONS(3947), + [anon_sym_sizeof] = ACTIONS(3947), + [sym__dedent] = ACTIONS(3945), + [sym_string_start] = ACTIONS(3945), }, - [1776] = { + [1844] = { + [sym_identifier] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_import] = ACTIONS(3951), + [anon_sym_cimport] = ACTIONS(3951), + [anon_sym_from] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_print] = ACTIONS(3951), + [anon_sym_assert] = ACTIONS(3951), + [anon_sym_return] = ACTIONS(3951), + [anon_sym_del] = ACTIONS(3951), + [anon_sym_raise] = ACTIONS(3951), + [anon_sym_pass] = ACTIONS(3951), + [anon_sym_break] = ACTIONS(3951), + [anon_sym_continue] = ACTIONS(3951), + [anon_sym_if] = ACTIONS(3951), + [anon_sym_match] = ACTIONS(3951), + [anon_sym_async] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3951), + [anon_sym_while] = ACTIONS(3951), + [anon_sym_try] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3951), + [anon_sym_def] = ACTIONS(3951), + [anon_sym_global] = ACTIONS(3951), + [anon_sym_nonlocal] = ACTIONS(3951), + [anon_sym_exec] = ACTIONS(3951), + [anon_sym_type] = ACTIONS(3951), + [anon_sym_class] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_AT] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_not] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_lambda] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3949), + [anon_sym_None] = ACTIONS(3951), + [anon_sym_0x] = ACTIONS(3949), + [anon_sym_0X] = ACTIONS(3949), + [anon_sym_0o] = ACTIONS(3949), + [anon_sym_0O] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3949), + [anon_sym_0B] = ACTIONS(3949), + [aux_sym_integer_token4] = ACTIONS(3951), + [sym_float] = ACTIONS(3949), + [anon_sym_await] = ACTIONS(3951), + [anon_sym_api] = ACTIONS(3951), + [sym_true] = ACTIONS(3951), + [sym_false] = ACTIONS(3951), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3951), + [anon_sym_include] = ACTIONS(3951), + [anon_sym_DEF] = ACTIONS(3951), + [anon_sym_IF] = ACTIONS(3951), + [anon_sym_cdef] = ACTIONS(3951), + [anon_sym_cpdef] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3951), + [anon_sym_ctypedef] = ACTIONS(3951), + [anon_sym_public] = ACTIONS(3951), + [anon_sym_packed] = ACTIONS(3951), + [anon_sym_inline] = ACTIONS(3951), + [anon_sym_readonly] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3951), + [sym__dedent] = ACTIONS(3949), + [sym_string_start] = ACTIONS(3949), + }, + [1845] = { + [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), + }, + [1846] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5556), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1847] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3409), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1848] = { + [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), + }, + [1849] = { + [sym_identifier] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3385), + [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_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), + [anon_sym_0x] = ACTIONS(3385), + [anon_sym_0X] = ACTIONS(3385), + [anon_sym_0o] = ACTIONS(3385), + [anon_sym_0O] = ACTIONS(3385), + [anon_sym_0b] = ACTIONS(3385), + [anon_sym_0B] = ACTIONS(3385), + [aux_sym_integer_token4] = 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), + }, + [1850] = { + [sym_identifier] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_cimport] = ACTIONS(3391), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3389), + [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_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(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3389), + [anon_sym_None] = ACTIONS(3391), + [anon_sym_0x] = ACTIONS(3389), + [anon_sym_0X] = ACTIONS(3389), + [anon_sym_0o] = ACTIONS(3389), + [anon_sym_0O] = ACTIONS(3389), + [anon_sym_0b] = ACTIONS(3389), + [anon_sym_0B] = ACTIONS(3389), + [aux_sym_integer_token4] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [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(3389), + [sym_string_start] = ACTIONS(3389), + }, + [1851] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1852] = { + [sym_identifier] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_import] = ACTIONS(3541), + [anon_sym_cimport] = ACTIONS(3541), + [anon_sym_from] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_print] = ACTIONS(3541), + [anon_sym_assert] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_del] = ACTIONS(3541), + [anon_sym_raise] = ACTIONS(3541), + [anon_sym_pass] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_match] = ACTIONS(3541), + [anon_sym_async] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_with] = ACTIONS(3541), + [anon_sym_def] = ACTIONS(3541), + [anon_sym_global] = ACTIONS(3541), + [anon_sym_nonlocal] = ACTIONS(3541), + [anon_sym_exec] = ACTIONS(3541), + [anon_sym_type] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_AT] = ACTIONS(3539), + [anon_sym_DASH] = ACTIONS(3539), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3539), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3539), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_lambda] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3539), + [anon_sym_None] = ACTIONS(3541), + [anon_sym_0x] = ACTIONS(3539), + [anon_sym_0X] = ACTIONS(3539), + [anon_sym_0o] = ACTIONS(3539), + [anon_sym_0O] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3539), + [anon_sym_0B] = ACTIONS(3539), + [aux_sym_integer_token4] = ACTIONS(3541), + [sym_float] = ACTIONS(3539), + [anon_sym_await] = ACTIONS(3541), + [anon_sym_api] = ACTIONS(3541), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3541), + [anon_sym_include] = ACTIONS(3541), + [anon_sym_DEF] = ACTIONS(3541), + [anon_sym_IF] = ACTIONS(3541), + [anon_sym_cdef] = ACTIONS(3541), + [anon_sym_cpdef] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_ctypedef] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_packed] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym_readonly] = ACTIONS(3541), + [anon_sym_sizeof] = ACTIONS(3541), + [sym__dedent] = ACTIONS(3539), + [sym_string_start] = ACTIONS(3539), + }, + [1853] = { + [sym_identifier] = ACTIONS(3625), + [anon_sym_SEMI] = ACTIONS(3623), + [anon_sym_import] = ACTIONS(3625), + [anon_sym_cimport] = ACTIONS(3625), + [anon_sym_from] = ACTIONS(3625), + [anon_sym_LPAREN] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3623), + [anon_sym_print] = ACTIONS(3625), + [anon_sym_assert] = ACTIONS(3625), + [anon_sym_return] = ACTIONS(3625), + [anon_sym_del] = ACTIONS(3625), + [anon_sym_raise] = ACTIONS(3625), + [anon_sym_pass] = ACTIONS(3625), + [anon_sym_break] = ACTIONS(3625), + [anon_sym_continue] = ACTIONS(3625), + [anon_sym_if] = ACTIONS(3625), + [anon_sym_match] = ACTIONS(3625), + [anon_sym_async] = ACTIONS(3625), + [anon_sym_for] = ACTIONS(3625), + [anon_sym_while] = ACTIONS(3625), + [anon_sym_try] = ACTIONS(3625), + [anon_sym_with] = ACTIONS(3625), + [anon_sym_def] = ACTIONS(3625), + [anon_sym_global] = ACTIONS(3625), + [anon_sym_nonlocal] = ACTIONS(3625), + [anon_sym_exec] = ACTIONS(3625), + [anon_sym_type] = ACTIONS(3625), + [anon_sym_class] = ACTIONS(3625), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_AT] = ACTIONS(3623), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_TILDE] = ACTIONS(3623), + [anon_sym_LT] = ACTIONS(3623), + [anon_sym_lambda] = ACTIONS(3625), + [anon_sym_yield] = ACTIONS(3625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3623), + [anon_sym_None] = ACTIONS(3625), + [anon_sym_0x] = ACTIONS(3623), + [anon_sym_0X] = ACTIONS(3623), + [anon_sym_0o] = ACTIONS(3623), + [anon_sym_0O] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3623), + [anon_sym_0B] = ACTIONS(3623), + [aux_sym_integer_token4] = ACTIONS(3625), + [sym_float] = ACTIONS(3623), + [anon_sym_await] = ACTIONS(3625), + [anon_sym_api] = ACTIONS(3625), + [sym_true] = ACTIONS(3625), + [sym_false] = ACTIONS(3625), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3625), + [anon_sym_include] = ACTIONS(3625), + [anon_sym_DEF] = ACTIONS(3625), + [anon_sym_IF] = ACTIONS(3625), + [anon_sym_cdef] = ACTIONS(3625), + [anon_sym_cpdef] = ACTIONS(3625), + [anon_sym_new] = ACTIONS(3625), + [anon_sym_ctypedef] = ACTIONS(3625), + [anon_sym_public] = ACTIONS(3625), + [anon_sym_packed] = ACTIONS(3625), + [anon_sym_inline] = ACTIONS(3625), + [anon_sym_readonly] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3625), + [sym__dedent] = ACTIONS(3623), + [sym_string_start] = ACTIONS(3623), + }, + [1854] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5716), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1855] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(6916), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2586), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), + }, + [1856] = { [sym_identifier] = ACTIONS(3655), [anon_sym_SEMI] = ACTIONS(3653), [anon_sym_import] = ACTIONS(3655), @@ -190862,130 +195816,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1857] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7172), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2610), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_not] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_lambda] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(1746), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), }, - [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), + [1858] = { + [sym_identifier] = ACTIONS(3665), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym_import] = ACTIONS(3665), + [anon_sym_cimport] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_print] = ACTIONS(3665), + [anon_sym_assert] = ACTIONS(3665), + [anon_sym_return] = ACTIONS(3665), + [anon_sym_del] = ACTIONS(3665), + [anon_sym_raise] = ACTIONS(3665), + [anon_sym_pass] = ACTIONS(3665), + [anon_sym_break] = ACTIONS(3665), + [anon_sym_continue] = ACTIONS(3665), + [anon_sym_if] = ACTIONS(3665), + [anon_sym_match] = ACTIONS(3665), + [anon_sym_async] = ACTIONS(3665), + [anon_sym_for] = ACTIONS(3665), + [anon_sym_while] = ACTIONS(3665), + [anon_sym_try] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [anon_sym_def] = ACTIONS(3665), + [anon_sym_global] = ACTIONS(3665), + [anon_sym_nonlocal] = ACTIONS(3665), + [anon_sym_exec] = ACTIONS(3665), + [anon_sym_type] = ACTIONS(3665), + [anon_sym_class] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3663), + [anon_sym_AT] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_lambda] = ACTIONS(3665), + [anon_sym_yield] = ACTIONS(3665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [anon_sym_None] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3663), + [anon_sym_0X] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0O] = ACTIONS(3663), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0B] = ACTIONS(3663), + [aux_sym_integer_token4] = ACTIONS(3665), + [sym_float] = ACTIONS(3663), + [anon_sym_await] = ACTIONS(3665), + [anon_sym_api] = ACTIONS(3665), + [sym_true] = ACTIONS(3665), + [sym_false] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3665), + [anon_sym_include] = ACTIONS(3665), + [anon_sym_DEF] = ACTIONS(3665), + [anon_sym_IF] = ACTIONS(3665), + [anon_sym_cdef] = ACTIONS(3665), + [anon_sym_cpdef] = ACTIONS(3665), + [anon_sym_new] = ACTIONS(3665), + [anon_sym_ctypedef] = ACTIONS(3665), + [anon_sym_public] = ACTIONS(3665), + [anon_sym_packed] = ACTIONS(3665), + [anon_sym_inline] = ACTIONS(3665), + [anon_sym_readonly] = ACTIONS(3665), + [anon_sym_sizeof] = ACTIONS(3665), + [sym__dedent] = ACTIONS(3663), + [sym_string_start] = ACTIONS(3663), + }, + [1859] = { + [sym_identifier] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3667), + [anon_sym_import] = ACTIONS(3669), + [anon_sym_cimport] = ACTIONS(3669), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_STAR] = ACTIONS(3667), + [anon_sym_print] = ACTIONS(3669), + [anon_sym_assert] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_del] = ACTIONS(3669), + [anon_sym_raise] = ACTIONS(3669), + [anon_sym_pass] = ACTIONS(3669), + [anon_sym_break] = ACTIONS(3669), + [anon_sym_continue] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_async] = ACTIONS(3669), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [anon_sym_with] = ACTIONS(3669), + [anon_sym_def] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_nonlocal] = ACTIONS(3669), + [anon_sym_exec] = ACTIONS(3669), + [anon_sym_type] = ACTIONS(3669), + [anon_sym_class] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3667), + [anon_sym_AT] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(3667), + [anon_sym_not] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3667), + [anon_sym_TILDE] = ACTIONS(3667), + [anon_sym_LT] = ACTIONS(3667), + [anon_sym_lambda] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), + [anon_sym_None] = ACTIONS(3669), + [anon_sym_0x] = ACTIONS(3667), + [anon_sym_0X] = ACTIONS(3667), + [anon_sym_0o] = ACTIONS(3667), + [anon_sym_0O] = ACTIONS(3667), + [anon_sym_0b] = ACTIONS(3667), + [anon_sym_0B] = ACTIONS(3667), + [aux_sym_integer_token4] = ACTIONS(3669), + [sym_float] = ACTIONS(3667), + [anon_sym_await] = ACTIONS(3669), + [anon_sym_api] = ACTIONS(3669), + [sym_true] = ACTIONS(3669), + [sym_false] = ACTIONS(3669), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3669), + [anon_sym_include] = ACTIONS(3669), + [anon_sym_DEF] = ACTIONS(3669), + [anon_sym_IF] = ACTIONS(3669), + [anon_sym_cdef] = ACTIONS(3669), + [anon_sym_cpdef] = ACTIONS(3669), + [anon_sym_new] = ACTIONS(3669), + [anon_sym_ctypedef] = ACTIONS(3669), + [anon_sym_public] = ACTIONS(3669), + [anon_sym_packed] = ACTIONS(3669), + [anon_sym_inline] = ACTIONS(3669), + [anon_sym_readonly] = ACTIONS(3669), + [anon_sym_sizeof] = ACTIONS(3669), + [sym__dedent] = ACTIONS(3667), + [sym_string_start] = ACTIONS(3667), + }, + [1860] = { + [sym_identifier] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_import] = ACTIONS(3673), + [anon_sym_cimport] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3673), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_print] = ACTIONS(3673), + [anon_sym_assert] = ACTIONS(3673), + [anon_sym_return] = ACTIONS(3673), + [anon_sym_del] = ACTIONS(3673), + [anon_sym_raise] = ACTIONS(3673), + [anon_sym_pass] = ACTIONS(3673), + [anon_sym_break] = ACTIONS(3673), + [anon_sym_continue] = ACTIONS(3673), + [anon_sym_if] = ACTIONS(3673), + [anon_sym_match] = ACTIONS(3673), + [anon_sym_async] = ACTIONS(3673), + [anon_sym_for] = ACTIONS(3673), + [anon_sym_while] = ACTIONS(3673), + [anon_sym_try] = ACTIONS(3673), + [anon_sym_with] = ACTIONS(3673), + [anon_sym_def] = ACTIONS(3673), + [anon_sym_global] = ACTIONS(3673), + [anon_sym_nonlocal] = ACTIONS(3673), + [anon_sym_exec] = ACTIONS(3673), + [anon_sym_type] = ACTIONS(3673), + [anon_sym_class] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_AT] = ACTIONS(3671), + [anon_sym_DASH] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3671), + [anon_sym_not] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3671), + [anon_sym_TILDE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_lambda] = ACTIONS(3673), + [anon_sym_yield] = ACTIONS(3673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), + [anon_sym_None] = ACTIONS(3673), + [anon_sym_0x] = ACTIONS(3671), + [anon_sym_0X] = ACTIONS(3671), + [anon_sym_0o] = ACTIONS(3671), + [anon_sym_0O] = ACTIONS(3671), + [anon_sym_0b] = ACTIONS(3671), + [anon_sym_0B] = ACTIONS(3671), + [aux_sym_integer_token4] = ACTIONS(3673), + [sym_float] = ACTIONS(3671), + [anon_sym_await] = ACTIONS(3673), + [anon_sym_api] = ACTIONS(3673), + [sym_true] = ACTIONS(3673), + [sym_false] = ACTIONS(3673), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3673), + [anon_sym_include] = ACTIONS(3673), + [anon_sym_DEF] = ACTIONS(3673), + [anon_sym_IF] = ACTIONS(3673), + [anon_sym_cdef] = ACTIONS(3673), + [anon_sym_cpdef] = ACTIONS(3673), + [anon_sym_new] = ACTIONS(3673), + [anon_sym_ctypedef] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3673), + [anon_sym_packed] = ACTIONS(3673), + [anon_sym_inline] = ACTIONS(3673), + [anon_sym_readonly] = ACTIONS(3673), + [anon_sym_sizeof] = ACTIONS(3673), + [sym__dedent] = ACTIONS(3671), + [sym_string_start] = ACTIONS(3671), + }, + [1861] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7244), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(2802), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1862] = { + [sym_identifier] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(3675), + [anon_sym_import] = ACTIONS(3677), + [anon_sym_cimport] = ACTIONS(3677), + [anon_sym_from] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_STAR] = ACTIONS(3675), + [anon_sym_print] = ACTIONS(3677), + [anon_sym_assert] = ACTIONS(3677), + [anon_sym_return] = ACTIONS(3677), + [anon_sym_del] = ACTIONS(3677), + [anon_sym_raise] = ACTIONS(3677), + [anon_sym_pass] = ACTIONS(3677), + [anon_sym_break] = ACTIONS(3677), + [anon_sym_continue] = ACTIONS(3677), + [anon_sym_if] = ACTIONS(3677), + [anon_sym_match] = ACTIONS(3677), + [anon_sym_async] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3677), + [anon_sym_while] = ACTIONS(3677), + [anon_sym_try] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3677), + [anon_sym_def] = ACTIONS(3677), + [anon_sym_global] = ACTIONS(3677), + [anon_sym_nonlocal] = ACTIONS(3677), + [anon_sym_exec] = ACTIONS(3677), + [anon_sym_type] = ACTIONS(3677), + [anon_sym_class] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_AT] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_not] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3675), + [anon_sym_LT] = ACTIONS(3675), + [anon_sym_lambda] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), + [anon_sym_None] = ACTIONS(3677), + [anon_sym_0x] = ACTIONS(3675), + [anon_sym_0X] = ACTIONS(3675), + [anon_sym_0o] = ACTIONS(3675), + [anon_sym_0O] = ACTIONS(3675), + [anon_sym_0b] = ACTIONS(3675), + [anon_sym_0B] = ACTIONS(3675), + [aux_sym_integer_token4] = ACTIONS(3677), + [sym_float] = ACTIONS(3675), + [anon_sym_await] = ACTIONS(3677), + [anon_sym_api] = ACTIONS(3677), + [sym_true] = ACTIONS(3677), + [sym_false] = ACTIONS(3677), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3677), + [anon_sym_include] = ACTIONS(3677), + [anon_sym_DEF] = ACTIONS(3677), + [anon_sym_IF] = ACTIONS(3677), + [anon_sym_cdef] = ACTIONS(3677), + [anon_sym_cpdef] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3677), + [anon_sym_ctypedef] = ACTIONS(3677), + [anon_sym_public] = ACTIONS(3677), + [anon_sym_packed] = ACTIONS(3677), + [anon_sym_inline] = ACTIONS(3677), + [anon_sym_readonly] = ACTIONS(3677), + [anon_sym_sizeof] = ACTIONS(3677), + [sym__dedent] = ACTIONS(3675), + [sym_string_start] = ACTIONS(3675), + }, + [1863] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7294), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2607), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1798), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_lambda] = ACTIONS(3629), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -190996,1004 +196310,860 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(3177), [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), + [1864] = { + [sym_identifier] = ACTIONS(3681), + [anon_sym_SEMI] = ACTIONS(3679), + [anon_sym_import] = ACTIONS(3681), + [anon_sym_cimport] = ACTIONS(3681), + [anon_sym_from] = ACTIONS(3681), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_print] = ACTIONS(3681), + [anon_sym_assert] = ACTIONS(3681), + [anon_sym_return] = ACTIONS(3681), + [anon_sym_del] = ACTIONS(3681), + [anon_sym_raise] = ACTIONS(3681), + [anon_sym_pass] = ACTIONS(3681), + [anon_sym_break] = ACTIONS(3681), + [anon_sym_continue] = ACTIONS(3681), + [anon_sym_if] = ACTIONS(3681), + [anon_sym_match] = ACTIONS(3681), + [anon_sym_async] = ACTIONS(3681), + [anon_sym_for] = ACTIONS(3681), + [anon_sym_while] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3681), + [anon_sym_with] = ACTIONS(3681), + [anon_sym_def] = ACTIONS(3681), + [anon_sym_global] = ACTIONS(3681), + [anon_sym_nonlocal] = ACTIONS(3681), + [anon_sym_exec] = ACTIONS(3681), + [anon_sym_type] = ACTIONS(3681), + [anon_sym_class] = ACTIONS(3681), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_AT] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_not] = ACTIONS(3681), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(3679), + [anon_sym_lambda] = ACTIONS(3681), + [anon_sym_yield] = ACTIONS(3681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), + [anon_sym_None] = ACTIONS(3681), + [anon_sym_0x] = ACTIONS(3679), + [anon_sym_0X] = ACTIONS(3679), + [anon_sym_0o] = ACTIONS(3679), + [anon_sym_0O] = ACTIONS(3679), + [anon_sym_0b] = ACTIONS(3679), + [anon_sym_0B] = ACTIONS(3679), + [aux_sym_integer_token4] = ACTIONS(3681), + [sym_float] = ACTIONS(3679), + [anon_sym_await] = ACTIONS(3681), + [anon_sym_api] = ACTIONS(3681), + [sym_true] = ACTIONS(3681), + [sym_false] = ACTIONS(3681), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3681), + [anon_sym_include] = ACTIONS(3681), + [anon_sym_DEF] = ACTIONS(3681), + [anon_sym_IF] = ACTIONS(3681), + [anon_sym_cdef] = ACTIONS(3681), + [anon_sym_cpdef] = ACTIONS(3681), + [anon_sym_new] = ACTIONS(3681), + [anon_sym_ctypedef] = ACTIONS(3681), + [anon_sym_public] = ACTIONS(3681), + [anon_sym_packed] = ACTIONS(3681), + [anon_sym_inline] = ACTIONS(3681), + [anon_sym_readonly] = ACTIONS(3681), + [anon_sym_sizeof] = ACTIONS(3681), + [sym__dedent] = ACTIONS(3679), + [sym_string_start] = ACTIONS(3679), }, - [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), + [1865] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7315), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2707), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1866] = { + [sym_identifier] = ACTIONS(3685), + [anon_sym_SEMI] = ACTIONS(3683), + [anon_sym_import] = ACTIONS(3685), + [anon_sym_cimport] = ACTIONS(3685), + [anon_sym_from] = ACTIONS(3685), + [anon_sym_LPAREN] = ACTIONS(3683), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_print] = ACTIONS(3685), + [anon_sym_assert] = ACTIONS(3685), + [anon_sym_return] = ACTIONS(3685), + [anon_sym_del] = ACTIONS(3685), + [anon_sym_raise] = ACTIONS(3685), + [anon_sym_pass] = ACTIONS(3685), + [anon_sym_break] = ACTIONS(3685), + [anon_sym_continue] = ACTIONS(3685), + [anon_sym_if] = ACTIONS(3685), + [anon_sym_match] = ACTIONS(3685), + [anon_sym_async] = ACTIONS(3685), + [anon_sym_for] = ACTIONS(3685), + [anon_sym_while] = ACTIONS(3685), + [anon_sym_try] = ACTIONS(3685), + [anon_sym_with] = ACTIONS(3685), + [anon_sym_def] = ACTIONS(3685), + [anon_sym_global] = ACTIONS(3685), + [anon_sym_nonlocal] = ACTIONS(3685), + [anon_sym_exec] = ACTIONS(3685), + [anon_sym_type] = ACTIONS(3685), + [anon_sym_class] = ACTIONS(3685), + [anon_sym_LBRACK] = ACTIONS(3683), + [anon_sym_AT] = ACTIONS(3683), + [anon_sym_DASH] = ACTIONS(3683), + [anon_sym_LBRACE] = ACTIONS(3683), + [anon_sym_PLUS] = ACTIONS(3683), + [anon_sym_not] = ACTIONS(3685), + [anon_sym_AMP] = ACTIONS(3683), + [anon_sym_TILDE] = ACTIONS(3683), + [anon_sym_LT] = ACTIONS(3683), + [anon_sym_lambda] = ACTIONS(3685), + [anon_sym_yield] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), + [anon_sym_None] = ACTIONS(3685), + [anon_sym_0x] = ACTIONS(3683), + [anon_sym_0X] = ACTIONS(3683), + [anon_sym_0o] = ACTIONS(3683), + [anon_sym_0O] = ACTIONS(3683), + [anon_sym_0b] = ACTIONS(3683), + [anon_sym_0B] = ACTIONS(3683), + [aux_sym_integer_token4] = ACTIONS(3685), + [sym_float] = ACTIONS(3683), + [anon_sym_await] = ACTIONS(3685), + [anon_sym_api] = ACTIONS(3685), + [sym_true] = ACTIONS(3685), + [sym_false] = ACTIONS(3685), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3685), + [anon_sym_include] = ACTIONS(3685), + [anon_sym_DEF] = ACTIONS(3685), + [anon_sym_IF] = ACTIONS(3685), + [anon_sym_cdef] = ACTIONS(3685), + [anon_sym_cpdef] = ACTIONS(3685), + [anon_sym_new] = ACTIONS(3685), + [anon_sym_ctypedef] = ACTIONS(3685), + [anon_sym_public] = ACTIONS(3685), + [anon_sym_packed] = ACTIONS(3685), + [anon_sym_inline] = ACTIONS(3685), + [anon_sym_readonly] = ACTIONS(3685), + [anon_sym_sizeof] = ACTIONS(3685), + [sym__dedent] = ACTIONS(3683), + [sym_string_start] = ACTIONS(3683), }, - [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), + [1867] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [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), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1868] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7336), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2640), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1869] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7192), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2598), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(3639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [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), + [1870] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7033), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4610), + [sym_primary_expression] = STATE(2616), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), + [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), }, - [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), + [1871] = { + [sym_named_expression] = STATE(3250), + [sym__named_expression_lhs] = STATE(7163), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(3250), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2590), + [sym_not_operator] = STATE(3250), + [sym_boolean_operator] = STATE(3250), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(3250), + [sym_lambda] = STATE(3250), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(3250), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(3250), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), }, - [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), + [1872] = { + [sym_named_expression] = STATE(3509), + [sym__named_expression_lhs] = STATE(7335), + [sym_list_splat_pattern] = STATE(3516), + [sym_as_pattern] = STATE(3509), + [sym_expression] = STATE(3508), + [sym_primary_expression] = STATE(2762), + [sym_not_operator] = STATE(3509), + [sym_boolean_operator] = STATE(3509), + [sym_binary_operator] = STATE(3505), + [sym_unary_operator] = STATE(3505), + [sym_comparison_operator] = STATE(3509), + [sym_lambda] = STATE(3509), + [sym_attribute] = STATE(3505), + [sym_subscript] = STATE(3505), + [sym_ellipsis] = STATE(3505), + [sym_call] = STATE(3505), + [sym_list] = STATE(3505), + [sym_set] = STATE(3505), + [sym_tuple] = STATE(3505), + [sym_dictionary] = STATE(3505), + [sym_list_comprehension] = STATE(3505), + [sym_dictionary_comprehension] = STATE(3505), + [sym_set_comprehension] = STATE(3505), + [sym_generator_expression] = STATE(3505), + [sym_parenthesized_expression] = STATE(3505), + [sym_conditional_expression] = STATE(3509), + [sym_concatenated_string] = STATE(3505), + [sym_string] = STATE(3252), + [sym_integer] = STATE(3505), + [sym_none] = STATE(3505), + [sym_await] = STATE(3505), + [sym_new_expression] = STATE(3509), + [sym_sizeof_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [aux_sym_integer_repeat4] = STATE(2686), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_print] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_exec] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_lambda] = ACTIONS(3659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1658), + [anon_sym_None] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1662), + [anon_sym_0X] = ACTIONS(1662), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0O] = ACTIONS(1664), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0B] = ACTIONS(1666), + [aux_sym_integer_token4] = ACTIONS(1668), + [sym_float] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(1758), + [anon_sym_api] = ACTIONS(1756), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_string_start] = ACTIONS(1680), }, - [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), + [1873] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(6987), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(3409), + [sym_primary_expression] = STATE(2647), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), [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_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(3689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [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), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1874] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7039), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2902), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [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_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), [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), + [anon_sym_lambda] = ACTIONS(3705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1875] = { + [sym_named_expression] = STATE(2756), + [sym__named_expression_lhs] = STATE(7050), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(2756), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2641), + [sym_not_operator] = STATE(2756), + [sym_boolean_operator] = STATE(2756), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(2756), + [sym_lambda] = STATE(2756), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1806), [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_PLUS] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(3709), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(3711), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -192004,305 +197174,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3177), [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), + [1876] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7095), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(2761), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), [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_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1877] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7120), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2626), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1878] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7161), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2627), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), [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), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), }, - [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), + [1879] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7186), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2638), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), }, - [1797] = { + [1880] = { + [sym_named_expression] = STATE(3189), + [sym__named_expression_lhs] = STATE(7230), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3189), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2764), + [sym_not_operator] = STATE(3189), + [sym_boolean_operator] = STATE(3189), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3189), + [sym_lambda] = STATE(3189), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3189), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3189), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3713), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_lambda] = ACTIONS(3881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3721), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3707), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1881] = { + [sym_named_expression] = STATE(3269), + [sym__named_expression_lhs] = STATE(7284), + [sym_list_splat_pattern] = STATE(3264), + [sym_as_pattern] = STATE(3269), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2613), + [sym_not_operator] = STATE(3269), + [sym_boolean_operator] = STATE(3269), + [sym_binary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_comparison_operator] = STATE(3269), + [sym_lambda] = STATE(3269), + [sym_attribute] = STATE(3261), + [sym_subscript] = STATE(3261), + [sym_ellipsis] = STATE(3261), + [sym_call] = STATE(3261), + [sym_list] = STATE(3261), + [sym_set] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_dictionary] = STATE(3261), + [sym_list_comprehension] = STATE(3261), + [sym_dictionary_comprehension] = STATE(3261), + [sym_set_comprehension] = STATE(3261), + [sym_generator_expression] = STATE(3261), + [sym_parenthesized_expression] = STATE(3261), + [sym_conditional_expression] = STATE(3269), + [sym_concatenated_string] = STATE(3261), + [sym_string] = STATE(2687), + [sym_integer] = STATE(3261), + [sym_none] = STATE(3261), + [sym_await] = STATE(3261), + [sym_new_expression] = STATE(3269), + [sym_sizeof_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [aux_sym_integer_repeat4] = STATE(2576), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_print] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_exec] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_lambda] = ACTIONS(3903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1594), + [anon_sym_None] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1598), + [anon_sym_0X] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1600), + [anon_sym_0O] = ACTIONS(1600), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0B] = ACTIONS(1602), + [aux_sym_integer_token4] = ACTIONS(1604), + [sym_float] = ACTIONS(1606), + [anon_sym_await] = ACTIONS(3863), + [anon_sym_api] = ACTIONS(1742), + [sym_true] = ACTIONS(1610), + [sym_false] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(1624), + [sym_string_start] = ACTIONS(1626), + }, + [1882] = { + [sym_named_expression] = STATE(3100), + [sym__named_expression_lhs] = STATE(7316), + [sym_list_splat_pattern] = STATE(3059), + [sym_as_pattern] = STATE(3100), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2620), + [sym_not_operator] = STATE(3100), + [sym_boolean_operator] = STATE(3100), + [sym_binary_operator] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_comparison_operator] = STATE(3100), + [sym_lambda] = STATE(3100), + [sym_attribute] = STATE(3044), + [sym_subscript] = STATE(3044), + [sym_ellipsis] = STATE(3044), + [sym_call] = STATE(3044), + [sym_list] = STATE(3044), + [sym_set] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_dictionary] = STATE(3044), + [sym_list_comprehension] = STATE(3044), + [sym_dictionary_comprehension] = STATE(3044), + [sym_set_comprehension] = STATE(3044), + [sym_generator_expression] = STATE(3044), + [sym_parenthesized_expression] = STATE(3044), + [sym_conditional_expression] = STATE(3100), + [sym_concatenated_string] = STATE(3044), + [sym_string] = STATE(2649), + [sym_integer] = STATE(3044), + [sym_none] = STATE(3044), + [sym_await] = STATE(3044), + [sym_new_expression] = STATE(3100), + [sym_sizeof_expression] = STATE(3044), + [sym_cast_expression] = STATE(3044), + [aux_sym_integer_repeat4] = STATE(2569), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(3873), + [anon_sym_lambda] = ACTIONS(3907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1937), + [anon_sym_0X] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0O] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0B] = ACTIONS(1941), + [aux_sym_integer_token4] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(3877), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_sizeof] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1951), + }, + [1883] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1884] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5806), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1885] = { [sym_identifier] = ACTIONS(3735), [anon_sym_SEMI] = ACTIONS(3733), [anon_sym_import] = ACTIONS(3735), @@ -192374,79 +197904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [1886] = { [sym_identifier] = ACTIONS(3739), [anon_sym_SEMI] = ACTIONS(3737), [anon_sym_import] = ACTIONS(3739), @@ -192518,7 +197976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3737), [sym_string_start] = ACTIONS(3737), }, - [1800] = { + [1887] = { [sym_identifier] = ACTIONS(3743), [anon_sym_SEMI] = ACTIONS(3741), [anon_sym_import] = ACTIONS(3743), @@ -192590,7 +198048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3741), [sym_string_start] = ACTIONS(3741), }, - [1801] = { + [1888] = { [sym_identifier] = ACTIONS(3747), [anon_sym_SEMI] = ACTIONS(3745), [anon_sym_import] = ACTIONS(3747), @@ -192662,7 +198120,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3745), [sym_string_start] = ACTIONS(3745), }, - [1802] = { + [1889] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5831), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1890] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5330), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = 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(1092), + [anon_sym_api] = ACTIONS(1070), + [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), + }, + [1891] = { [sym_identifier] = ACTIONS(3751), [anon_sym_SEMI] = ACTIONS(3749), [anon_sym_import] = ACTIONS(3751), @@ -192734,202 +198336,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1892] = { + [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(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), + [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), }, - [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), + [1893] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5361), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(3067), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -192940,212 +198470,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1894] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5362), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(3067), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -193156,68 +198542,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1895] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5414), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1896] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5431), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(3067), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -193228,140 +198686,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1897] = { + [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(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), + [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), }, - [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), + [1898] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5326), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(3067), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(3069), + [anon_sym_lambda] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -193372,420 +198830,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1899] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5338), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -193804,8 +198902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -193814,122 +198912,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1900] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5366), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -193948,8 +198974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -193958,58 +198984,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1901] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5333), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -194020,356 +199046,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1902] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5337), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -194380,8 +199118,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -194390,274 +199128,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1903] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5354), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -194668,8 +199190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -194678,346 +199200,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1904] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5264), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -195028,68 +199262,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(109), [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), + [1905] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5272), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -195100,8 +199334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195110,58 +199344,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1906] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5357), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -195172,8 +199406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195182,58 +199416,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1907] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5387), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -195244,8 +199478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195254,274 +199488,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1908] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5391), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = 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), @@ -195532,8 +199550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195542,122 +199560,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1909] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5425), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -195676,8 +199622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195686,50 +199632,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1910] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5298), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -195748,8 +199694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195758,194 +199704,1274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1911] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4176), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), [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), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1912] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4177), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1913] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3329), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1914] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3330), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1915] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1916] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1917] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3332), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1918] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3333), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1919] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(6921), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(3334), + [sym_primary_expression] = STATE(2632), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_lambda] = ACTIONS(3885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(3731), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3641), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [1920] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4148), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1921] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4149), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1922] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4150), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1923] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1924] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4151), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1925] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1926] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6917), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(4152), + [sym_primary_expression] = STATE(3112), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1927] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5784), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [1928] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5407), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -195964,8 +200990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -195974,50 +201000,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1929] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5275), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196036,8 +201062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196046,122 +201072,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1930] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5276), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196180,8 +201134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196190,50 +201144,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1931] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5305), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), + }, + [1932] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5314), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196252,8 +201278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196262,50 +201288,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1933] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5315), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196324,8 +201350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196334,50 +201360,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1934] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5343), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196396,8 +201422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196406,50 +201432,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1935] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5344), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196468,8 +201494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196478,50 +201504,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1936] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5345), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196540,8 +201566,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196550,50 +201576,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1937] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5371), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196612,8 +201638,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196622,50 +201648,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1938] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5373), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196684,8 +201710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196694,50 +201720,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1939] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5374), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196756,8 +201782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196766,50 +201792,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1940] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5375), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196828,8 +201854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196838,50 +201864,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1941] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5376), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196900,8 +201926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196910,50 +201936,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1942] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5382), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -196972,8 +201998,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -196982,50 +202008,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1943] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5383), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197044,8 +202070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197054,50 +202080,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1944] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5384), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197116,8 +202142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197126,50 +202152,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1945] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5385), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197188,8 +202214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197198,338 +202224,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1946] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5388), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197548,8 +202286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197558,266 +202296,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1947] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5620), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1948] = { + [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_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), + [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), }, - [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), + [1949] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5350), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197836,8 +202502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197846,50 +202512,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1950] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5392), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197908,8 +202574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197918,50 +202584,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1951] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5402), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -197980,8 +202646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -197990,122 +202656,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1952] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5351), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1953] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5393), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198124,8 +202790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198134,50 +202800,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1954] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5394), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198196,8 +202862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198206,50 +202872,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1955] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5265), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198268,8 +202934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198278,50 +202944,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1956] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5266), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198340,8 +203006,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198350,50 +203016,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1957] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5267), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198412,8 +203078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198422,50 +203088,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1958] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5290), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198484,8 +203150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198494,50 +203160,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1959] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5291), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198556,8 +203222,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198566,50 +203232,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1960] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5292), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198628,8 +203294,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198638,50 +203304,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1961] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5293), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198700,8 +203366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198710,50 +203376,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1962] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5295), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198772,8 +203438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198782,50 +203448,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1963] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5307), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -198844,8 +203510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -198854,266 +203520,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1964] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5308), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -199132,8 +203582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -199142,50 +203592,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1965] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5310), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -199204,8 +203654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -199214,50 +203664,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1966] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5311), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -199276,8 +203726,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -199286,122 +203736,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1967] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7079), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5323), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -199420,8 +203798,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), @@ -199430,4234 +203808,6034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1968] = { + [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_new] = ACTIONS(109), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [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), }, - [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), + [1969] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5674), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1970] = { + [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_new] = ACTIONS(109), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [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), }, - [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), + [1971] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5261), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1972] = { + [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_new] = ACTIONS(109), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [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), }, - [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), + [1973] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5683), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1974] = { + [ts_builtin_sym_end] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_cimport] = ACTIONS(3443), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_print] = ACTIONS(3443), + [anon_sym_assert] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_del] = ACTIONS(3443), + [anon_sym_raise] = ACTIONS(3443), + [anon_sym_pass] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_match] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_def] = ACTIONS(3443), + [anon_sym_global] = ACTIONS(3443), + [anon_sym_nonlocal] = ACTIONS(3443), + [anon_sym_exec] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_lambda] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3445), + [anon_sym_None] = ACTIONS(3443), + [anon_sym_0x] = ACTIONS(3445), + [anon_sym_0X] = ACTIONS(3445), + [anon_sym_0o] = ACTIONS(3445), + [anon_sym_0O] = ACTIONS(3445), + [anon_sym_0b] = ACTIONS(3445), + [anon_sym_0B] = ACTIONS(3445), + [aux_sym_integer_token4] = ACTIONS(3443), + [sym_float] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_api] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3443), + [anon_sym_include] = ACTIONS(3443), + [anon_sym_DEF] = ACTIONS(3443), + [anon_sym_IF] = ACTIONS(3443), + [anon_sym_cdef] = ACTIONS(3443), + [anon_sym_cpdef] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_ctypedef] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_packed] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_sizeof] = ACTIONS(3443), + [sym_string_start] = ACTIONS(3445), }, - [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), + [1975] = { + [sym_named_expression] = STATE(3401), + [sym__named_expression_lhs] = STATE(7058), + [sym_list_splat_pattern] = STATE(3416), + [sym_as_pattern] = STATE(3401), + [sym_expression] = STATE(5322), + [sym_primary_expression] = STATE(2744), + [sym_not_operator] = STATE(3401), + [sym_boolean_operator] = STATE(3401), + [sym_binary_operator] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_comparison_operator] = STATE(3401), + [sym_lambda] = STATE(3401), + [sym_attribute] = STATE(3400), + [sym_subscript] = STATE(3400), + [sym_ellipsis] = STATE(3400), + [sym_call] = STATE(3400), + [sym_list] = STATE(3400), + [sym_set] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_dictionary] = STATE(3400), + [sym_list_comprehension] = STATE(3400), + [sym_dictionary_comprehension] = STATE(3400), + [sym_set_comprehension] = STATE(3400), + [sym_generator_expression] = STATE(3400), + [sym_parenthesized_expression] = STATE(3400), + [sym_conditional_expression] = STATE(3401), + [sym_concatenated_string] = STATE(3400), + [sym_string] = STATE(2970), + [sym_integer] = STATE(3400), + [sym_none] = STATE(3400), + [sym_await] = STATE(3400), + [sym_new_expression] = STATE(3401), + [sym_sizeof_expression] = STATE(3400), + [sym_cast_expression] = STATE(3400), + [aux_sym_integer_repeat4] = STATE(2609), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1901), + [anon_sym_0X] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0O] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1905), + [anon_sym_0B] = ACTIONS(1905), + [aux_sym_integer_token4] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1915), }, - [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), + [1976] = { + [sym_identifier] = ACTIONS(3783), + [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_finally] = 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_new] = ACTIONS(109), - [anon_sym_sizeof] = ACTIONS(115), - [sym_string_start] = ACTIONS(117), + [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), }, - [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), + [1977] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5694), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1978] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5703), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1979] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5707), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1980] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5710), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1981] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5715), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1982] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5718), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1983] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5722), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1984] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5725), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1985] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5781), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1986] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5727), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1987] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5729), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1988] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5730), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1989] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5732), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1990] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5735), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1991] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5736), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1992] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5737), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1993] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5739), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1994] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5741), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1995] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5742), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1996] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5745), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1997] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5746), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1998] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5747), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [1999] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5749), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2000] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5750), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2001] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5783), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2002] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5754), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2003] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5755), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2004] = { + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_cimport] = ACTIONS(3447), + [anon_sym_from] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_print] = ACTIONS(3447), + [anon_sym_assert] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_del] = ACTIONS(3447), + [anon_sym_raise] = ACTIONS(3447), + [anon_sym_pass] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_match] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_def] = ACTIONS(3447), + [anon_sym_global] = ACTIONS(3447), + [anon_sym_nonlocal] = ACTIONS(3447), + [anon_sym_exec] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_lambda] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3449), + [anon_sym_None] = ACTIONS(3447), + [anon_sym_0x] = ACTIONS(3449), + [anon_sym_0X] = ACTIONS(3449), + [anon_sym_0o] = ACTIONS(3449), + [anon_sym_0O] = ACTIONS(3449), + [anon_sym_0b] = ACTIONS(3449), + [anon_sym_0B] = ACTIONS(3449), + [aux_sym_integer_token4] = ACTIONS(3447), + [sym_float] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_api] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3447), + [anon_sym_include] = ACTIONS(3447), + [anon_sym_DEF] = ACTIONS(3447), + [anon_sym_IF] = ACTIONS(3447), + [anon_sym_cdef] = ACTIONS(3447), + [anon_sym_cpdef] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_ctypedef] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_packed] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_sizeof] = ACTIONS(3447), + [sym_string_start] = ACTIONS(3449), }, - [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), + [2005] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5758), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2006] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5761), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2007] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5765), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2008] = { + [sym_identifier] = ACTIONS(3793), + [anon_sym_SEMI] = ACTIONS(3791), + [anon_sym_import] = ACTIONS(3793), + [anon_sym_cimport] = ACTIONS(3793), + [anon_sym_from] = ACTIONS(3793), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(3791), + [anon_sym_print] = ACTIONS(3793), + [anon_sym_assert] = ACTIONS(3793), + [anon_sym_return] = ACTIONS(3793), + [anon_sym_del] = ACTIONS(3793), + [anon_sym_raise] = ACTIONS(3793), + [anon_sym_pass] = ACTIONS(3793), + [anon_sym_break] = ACTIONS(3793), + [anon_sym_continue] = ACTIONS(3793), + [anon_sym_if] = ACTIONS(3793), + [anon_sym_match] = ACTIONS(3793), + [anon_sym_async] = ACTIONS(3793), + [anon_sym_for] = ACTIONS(3793), + [anon_sym_while] = ACTIONS(3793), + [anon_sym_try] = ACTIONS(3793), + [anon_sym_with] = ACTIONS(3793), + [anon_sym_def] = ACTIONS(3793), + [anon_sym_global] = ACTIONS(3793), + [anon_sym_nonlocal] = ACTIONS(3793), + [anon_sym_exec] = ACTIONS(3793), + [anon_sym_type] = ACTIONS(3793), + [anon_sym_class] = ACTIONS(3793), + [anon_sym_LBRACK] = ACTIONS(3791), + [anon_sym_AT] = ACTIONS(3791), + [anon_sym_DASH] = ACTIONS(3791), + [anon_sym_LBRACE] = ACTIONS(3791), + [anon_sym_PLUS] = ACTIONS(3791), + [anon_sym_not] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3791), + [anon_sym_TILDE] = ACTIONS(3791), + [anon_sym_LT] = ACTIONS(3791), + [anon_sym_lambda] = ACTIONS(3793), + [anon_sym_yield] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3791), + [anon_sym_None] = ACTIONS(3793), + [anon_sym_0x] = ACTIONS(3791), + [anon_sym_0X] = ACTIONS(3791), + [anon_sym_0o] = ACTIONS(3791), + [anon_sym_0O] = ACTIONS(3791), + [anon_sym_0b] = ACTIONS(3791), + [anon_sym_0B] = ACTIONS(3791), + [aux_sym_integer_token4] = ACTIONS(3793), + [sym_float] = ACTIONS(3791), + [anon_sym_await] = ACTIONS(3793), + [anon_sym_api] = ACTIONS(3793), + [sym_true] = ACTIONS(3793), + [sym_false] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3793), + [anon_sym_include] = ACTIONS(3793), + [anon_sym_DEF] = ACTIONS(3793), + [anon_sym_IF] = ACTIONS(3793), + [anon_sym_cdef] = ACTIONS(3793), + [anon_sym_cpdef] = ACTIONS(3793), + [anon_sym_new] = ACTIONS(3793), + [anon_sym_ctypedef] = ACTIONS(3793), + [anon_sym_public] = ACTIONS(3793), + [anon_sym_packed] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_readonly] = ACTIONS(3793), + [anon_sym_sizeof] = ACTIONS(3793), + [sym__dedent] = ACTIONS(3791), + [sym_string_start] = ACTIONS(3791), + }, + [2009] = { + [sym_identifier] = ACTIONS(3797), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym_import] = ACTIONS(3797), + [anon_sym_cimport] = ACTIONS(3797), + [anon_sym_from] = ACTIONS(3797), + [anon_sym_LPAREN] = ACTIONS(3795), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_print] = ACTIONS(3797), + [anon_sym_assert] = ACTIONS(3797), + [anon_sym_return] = ACTIONS(3797), + [anon_sym_del] = ACTIONS(3797), + [anon_sym_raise] = ACTIONS(3797), + [anon_sym_pass] = ACTIONS(3797), + [anon_sym_break] = ACTIONS(3797), + [anon_sym_continue] = ACTIONS(3797), + [anon_sym_if] = ACTIONS(3797), + [anon_sym_match] = ACTIONS(3797), + [anon_sym_async] = ACTIONS(3797), + [anon_sym_for] = ACTIONS(3797), + [anon_sym_while] = ACTIONS(3797), + [anon_sym_try] = ACTIONS(3797), + [anon_sym_with] = ACTIONS(3797), + [anon_sym_def] = ACTIONS(3797), + [anon_sym_global] = ACTIONS(3797), + [anon_sym_nonlocal] = ACTIONS(3797), + [anon_sym_exec] = ACTIONS(3797), + [anon_sym_type] = ACTIONS(3797), + [anon_sym_class] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(3795), + [anon_sym_AT] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_PLUS] = ACTIONS(3795), + [anon_sym_not] = ACTIONS(3797), + [anon_sym_AMP] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_LT] = ACTIONS(3795), + [anon_sym_lambda] = ACTIONS(3797), + [anon_sym_yield] = ACTIONS(3797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_None] = ACTIONS(3797), + [anon_sym_0x] = ACTIONS(3795), + [anon_sym_0X] = ACTIONS(3795), + [anon_sym_0o] = ACTIONS(3795), + [anon_sym_0O] = ACTIONS(3795), + [anon_sym_0b] = ACTIONS(3795), + [anon_sym_0B] = ACTIONS(3795), + [aux_sym_integer_token4] = ACTIONS(3797), + [sym_float] = ACTIONS(3795), + [anon_sym_await] = ACTIONS(3797), + [anon_sym_api] = ACTIONS(3797), + [sym_true] = ACTIONS(3797), + [sym_false] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3797), + [anon_sym_include] = ACTIONS(3797), + [anon_sym_DEF] = ACTIONS(3797), + [anon_sym_IF] = ACTIONS(3797), + [anon_sym_cdef] = ACTIONS(3797), + [anon_sym_cpdef] = ACTIONS(3797), + [anon_sym_new] = ACTIONS(3797), + [anon_sym_ctypedef] = ACTIONS(3797), + [anon_sym_public] = ACTIONS(3797), + [anon_sym_packed] = ACTIONS(3797), + [anon_sym_inline] = ACTIONS(3797), + [anon_sym_readonly] = ACTIONS(3797), + [anon_sym_sizeof] = ACTIONS(3797), + [sym__dedent] = ACTIONS(3795), + [sym_string_start] = ACTIONS(3795), + }, + [2010] = { + [sym_identifier] = ACTIONS(3801), + [anon_sym_SEMI] = ACTIONS(3799), + [anon_sym_import] = ACTIONS(3801), + [anon_sym_cimport] = ACTIONS(3801), + [anon_sym_from] = ACTIONS(3801), + [anon_sym_LPAREN] = ACTIONS(3799), + [anon_sym_STAR] = ACTIONS(3799), + [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(3799), + [anon_sym_AT] = ACTIONS(3799), + [anon_sym_DASH] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(3799), + [anon_sym_not] = ACTIONS(3801), + [anon_sym_AMP] = ACTIONS(3799), + [anon_sym_TILDE] = ACTIONS(3799), + [anon_sym_LT] = ACTIONS(3799), + [anon_sym_lambda] = ACTIONS(3801), + [anon_sym_yield] = ACTIONS(3801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3799), + [anon_sym_None] = ACTIONS(3801), + [anon_sym_0x] = ACTIONS(3799), + [anon_sym_0X] = ACTIONS(3799), + [anon_sym_0o] = ACTIONS(3799), + [anon_sym_0O] = ACTIONS(3799), + [anon_sym_0b] = ACTIONS(3799), + [anon_sym_0B] = ACTIONS(3799), + [aux_sym_integer_token4] = ACTIONS(3801), + [sym_float] = ACTIONS(3799), + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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(3799), + [sym_string_start] = ACTIONS(3799), }, - [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), + [2011] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5768), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2012] = { + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_cimport] = ACTIONS(3451), + [anon_sym_from] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_print] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_del] = ACTIONS(3451), + [anon_sym_raise] = ACTIONS(3451), + [anon_sym_pass] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_def] = ACTIONS(3451), + [anon_sym_global] = ACTIONS(3451), + [anon_sym_nonlocal] = ACTIONS(3451), + [anon_sym_exec] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_AT] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_lambda] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [anon_sym_None] = ACTIONS(3451), + [anon_sym_0x] = ACTIONS(3453), + [anon_sym_0X] = ACTIONS(3453), + [anon_sym_0o] = ACTIONS(3453), + [anon_sym_0O] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3453), + [anon_sym_0B] = ACTIONS(3453), + [aux_sym_integer_token4] = ACTIONS(3451), + [sym_float] = ACTIONS(3453), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_api] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3451), + [anon_sym_include] = ACTIONS(3451), + [anon_sym_DEF] = ACTIONS(3451), + [anon_sym_IF] = ACTIONS(3451), + [anon_sym_cdef] = ACTIONS(3451), + [anon_sym_cpdef] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_ctypedef] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_packed] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(3451), + [sym_string_start] = ACTIONS(3453), + }, + [2013] = { + [sym_identifier] = ACTIONS(3805), + [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym_import] = ACTIONS(3805), + [anon_sym_cimport] = ACTIONS(3805), + [anon_sym_from] = ACTIONS(3805), + [anon_sym_LPAREN] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_print] = ACTIONS(3805), + [anon_sym_assert] = ACTIONS(3805), + [anon_sym_return] = ACTIONS(3805), + [anon_sym_del] = ACTIONS(3805), + [anon_sym_raise] = ACTIONS(3805), + [anon_sym_pass] = ACTIONS(3805), + [anon_sym_break] = ACTIONS(3805), + [anon_sym_continue] = ACTIONS(3805), + [anon_sym_if] = ACTIONS(3805), + [anon_sym_match] = ACTIONS(3805), + [anon_sym_async] = ACTIONS(3805), + [anon_sym_for] = ACTIONS(3805), + [anon_sym_while] = ACTIONS(3805), + [anon_sym_try] = ACTIONS(3805), + [anon_sym_with] = ACTIONS(3805), + [anon_sym_def] = ACTIONS(3805), + [anon_sym_global] = ACTIONS(3805), + [anon_sym_nonlocal] = ACTIONS(3805), + [anon_sym_exec] = ACTIONS(3805), + [anon_sym_type] = ACTIONS(3805), + [anon_sym_class] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3803), + [anon_sym_AT] = ACTIONS(3803), + [anon_sym_DASH] = ACTIONS(3803), + [anon_sym_LBRACE] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(3803), + [anon_sym_not] = ACTIONS(3805), + [anon_sym_AMP] = ACTIONS(3803), + [anon_sym_TILDE] = ACTIONS(3803), + [anon_sym_LT] = ACTIONS(3803), + [anon_sym_lambda] = ACTIONS(3805), + [anon_sym_yield] = ACTIONS(3805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3803), + [anon_sym_None] = ACTIONS(3805), + [anon_sym_0x] = ACTIONS(3803), + [anon_sym_0X] = ACTIONS(3803), + [anon_sym_0o] = ACTIONS(3803), + [anon_sym_0O] = ACTIONS(3803), + [anon_sym_0b] = ACTIONS(3803), + [anon_sym_0B] = ACTIONS(3803), + [aux_sym_integer_token4] = ACTIONS(3805), + [sym_float] = ACTIONS(3803), + [anon_sym_await] = ACTIONS(3805), + [anon_sym_api] = ACTIONS(3805), + [sym_true] = ACTIONS(3805), + [sym_false] = ACTIONS(3805), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3805), + [anon_sym_include] = ACTIONS(3805), + [anon_sym_DEF] = ACTIONS(3805), + [anon_sym_IF] = ACTIONS(3805), + [anon_sym_cdef] = ACTIONS(3805), + [anon_sym_cpdef] = ACTIONS(3805), + [anon_sym_new] = ACTIONS(3805), + [anon_sym_ctypedef] = ACTIONS(3805), + [anon_sym_public] = ACTIONS(3805), + [anon_sym_packed] = ACTIONS(3805), + [anon_sym_inline] = ACTIONS(3805), + [anon_sym_readonly] = ACTIONS(3805), + [anon_sym_sizeof] = ACTIONS(3805), + [sym__dedent] = ACTIONS(3803), + [sym_string_start] = ACTIONS(3803), + }, + [2014] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5770), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2015] = { + [sym_identifier] = ACTIONS(3809), + [anon_sym_SEMI] = ACTIONS(3807), + [anon_sym_import] = ACTIONS(3809), + [anon_sym_cimport] = ACTIONS(3809), + [anon_sym_from] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3807), + [anon_sym_print] = ACTIONS(3809), + [anon_sym_assert] = ACTIONS(3809), + [anon_sym_return] = ACTIONS(3809), + [anon_sym_del] = ACTIONS(3809), + [anon_sym_raise] = ACTIONS(3809), + [anon_sym_pass] = ACTIONS(3809), + [anon_sym_break] = ACTIONS(3809), + [anon_sym_continue] = ACTIONS(3809), + [anon_sym_if] = ACTIONS(3809), + [anon_sym_match] = ACTIONS(3809), + [anon_sym_async] = ACTIONS(3809), + [anon_sym_for] = ACTIONS(3809), + [anon_sym_while] = ACTIONS(3809), + [anon_sym_try] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [anon_sym_def] = ACTIONS(3809), + [anon_sym_global] = ACTIONS(3809), + [anon_sym_nonlocal] = ACTIONS(3809), + [anon_sym_exec] = ACTIONS(3809), + [anon_sym_type] = ACTIONS(3809), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3807), + [anon_sym_AT] = ACTIONS(3807), + [anon_sym_DASH] = ACTIONS(3807), + [anon_sym_LBRACE] = ACTIONS(3807), + [anon_sym_PLUS] = ACTIONS(3807), + [anon_sym_not] = ACTIONS(3809), + [anon_sym_AMP] = ACTIONS(3807), + [anon_sym_TILDE] = ACTIONS(3807), + [anon_sym_LT] = ACTIONS(3807), + [anon_sym_lambda] = ACTIONS(3809), + [anon_sym_yield] = ACTIONS(3809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3807), + [anon_sym_None] = ACTIONS(3809), + [anon_sym_0x] = ACTIONS(3807), + [anon_sym_0X] = ACTIONS(3807), + [anon_sym_0o] = ACTIONS(3807), + [anon_sym_0O] = ACTIONS(3807), + [anon_sym_0b] = ACTIONS(3807), + [anon_sym_0B] = ACTIONS(3807), + [aux_sym_integer_token4] = ACTIONS(3809), + [sym_float] = ACTIONS(3807), + [anon_sym_await] = ACTIONS(3809), + [anon_sym_api] = ACTIONS(3809), + [sym_true] = ACTIONS(3809), + [sym_false] = ACTIONS(3809), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3809), + [anon_sym_include] = ACTIONS(3809), + [anon_sym_DEF] = ACTIONS(3809), + [anon_sym_IF] = ACTIONS(3809), + [anon_sym_cdef] = ACTIONS(3809), + [anon_sym_cpdef] = ACTIONS(3809), + [anon_sym_new] = ACTIONS(3809), + [anon_sym_ctypedef] = ACTIONS(3809), + [anon_sym_public] = ACTIONS(3809), + [anon_sym_packed] = ACTIONS(3809), + [anon_sym_inline] = ACTIONS(3809), + [anon_sym_readonly] = ACTIONS(3809), + [anon_sym_sizeof] = ACTIONS(3809), + [sym__dedent] = ACTIONS(3807), + [sym_string_start] = ACTIONS(3807), + }, + [2016] = { + [sym_identifier] = ACTIONS(3813), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_import] = ACTIONS(3813), + [anon_sym_cimport] = ACTIONS(3813), + [anon_sym_from] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3811), + [anon_sym_STAR] = ACTIONS(3811), + [anon_sym_print] = ACTIONS(3813), + [anon_sym_assert] = ACTIONS(3813), + [anon_sym_return] = ACTIONS(3813), + [anon_sym_del] = ACTIONS(3813), + [anon_sym_raise] = ACTIONS(3813), + [anon_sym_pass] = ACTIONS(3813), + [anon_sym_break] = ACTIONS(3813), + [anon_sym_continue] = ACTIONS(3813), + [anon_sym_if] = ACTIONS(3813), + [anon_sym_match] = ACTIONS(3813), + [anon_sym_async] = ACTIONS(3813), + [anon_sym_for] = ACTIONS(3813), + [anon_sym_while] = ACTIONS(3813), + [anon_sym_try] = ACTIONS(3813), + [anon_sym_with] = ACTIONS(3813), + [anon_sym_def] = ACTIONS(3813), + [anon_sym_global] = ACTIONS(3813), + [anon_sym_nonlocal] = ACTIONS(3813), + [anon_sym_exec] = ACTIONS(3813), + [anon_sym_type] = ACTIONS(3813), + [anon_sym_class] = ACTIONS(3813), + [anon_sym_LBRACK] = ACTIONS(3811), + [anon_sym_AT] = ACTIONS(3811), + [anon_sym_DASH] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(3811), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_AMP] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3811), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_lambda] = ACTIONS(3813), + [anon_sym_yield] = ACTIONS(3813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3811), + [anon_sym_None] = ACTIONS(3813), + [anon_sym_0x] = ACTIONS(3811), + [anon_sym_0X] = ACTIONS(3811), + [anon_sym_0o] = ACTIONS(3811), + [anon_sym_0O] = ACTIONS(3811), + [anon_sym_0b] = ACTIONS(3811), + [anon_sym_0B] = ACTIONS(3811), + [aux_sym_integer_token4] = ACTIONS(3813), + [sym_float] = ACTIONS(3811), + [anon_sym_await] = ACTIONS(3813), + [anon_sym_api] = ACTIONS(3813), + [sym_true] = ACTIONS(3813), + [sym_false] = ACTIONS(3813), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3813), + [anon_sym_include] = ACTIONS(3813), + [anon_sym_DEF] = ACTIONS(3813), + [anon_sym_IF] = ACTIONS(3813), + [anon_sym_cdef] = ACTIONS(3813), + [anon_sym_cpdef] = ACTIONS(3813), + [anon_sym_new] = ACTIONS(3813), + [anon_sym_ctypedef] = ACTIONS(3813), + [anon_sym_public] = ACTIONS(3813), + [anon_sym_packed] = ACTIONS(3813), + [anon_sym_inline] = ACTIONS(3813), + [anon_sym_readonly] = ACTIONS(3813), + [anon_sym_sizeof] = ACTIONS(3813), + [sym__dedent] = ACTIONS(3811), + [sym_string_start] = ACTIONS(3811), + }, + [2017] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(6947), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5771), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2018] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5581), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2019] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5226), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2020] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5227), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2021] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5228), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2022] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2023] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5229), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2024] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5230), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2025] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5232), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2026] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5540), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2027] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5542), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2028] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5543), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2029] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5065), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2030] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5544), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2031] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5545), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2032] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5547), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2033] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7034), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5098), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2034] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7251), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(2651), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1471), + [anon_sym_0X] = ACTIONS(1471), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2035] = { + [sym_named_expression] = STATE(5026), + [sym__named_expression_lhs] = STATE(7256), + [sym_list_splat_pattern] = STATE(3218), + [sym_as_pattern] = STATE(5026), + [sym_expression] = STATE(5047), + [sym_primary_expression] = STATE(2582), + [sym_not_operator] = STATE(5026), + [sym_boolean_operator] = STATE(5026), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_comparison_operator] = STATE(5026), + [sym_lambda] = STATE(5026), + [sym_attribute] = STATE(3045), + [sym_subscript] = STATE(3045), + [sym_ellipsis] = STATE(3045), + [sym_call] = STATE(3045), + [sym_list] = STATE(3045), + [sym_set] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_dictionary] = STATE(3045), + [sym_list_comprehension] = STATE(3045), + [sym_dictionary_comprehension] = STATE(3045), + [sym_set_comprehension] = STATE(3045), + [sym_generator_expression] = STATE(3045), + [sym_parenthesized_expression] = STATE(3045), + [sym_conditional_expression] = STATE(5026), + [sym_concatenated_string] = STATE(3045), + [sym_string] = STATE(2660), + [sym_integer] = STATE(3045), + [sym_none] = STATE(3045), + [sym_await] = STATE(3045), + [sym_new_expression] = STATE(5026), + [sym_sizeof_expression] = STATE(3045), + [sym_cast_expression] = STATE(3045), + [aux_sym_integer_repeat4] = STATE(2573), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1776), + [anon_sym_None] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1780), + [anon_sym_0X] = ACTIONS(1780), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0O] = ACTIONS(1782), + [anon_sym_0b] = ACTIONS(1784), + [anon_sym_0B] = ACTIONS(1784), + [aux_sym_integer_token4] = ACTIONS(1786), + [sym_float] = ACTIONS(1788), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_string_start] = ACTIONS(1794), + }, + [2036] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5826), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2037] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5827), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2038] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [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_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(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2997), + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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(2997), + [sym_string_start] = ACTIONS(2997), }, - [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), + [2039] = { + [sym_identifier] = ACTIONS(3823), + [anon_sym_SEMI] = ACTIONS(3821), + [anon_sym_import] = ACTIONS(3823), + [anon_sym_cimport] = ACTIONS(3823), + [anon_sym_from] = ACTIONS(3823), + [anon_sym_LPAREN] = ACTIONS(3821), + [anon_sym_STAR] = ACTIONS(3821), + [anon_sym_print] = ACTIONS(3823), + [anon_sym_assert] = ACTIONS(3823), + [anon_sym_return] = ACTIONS(3823), + [anon_sym_del] = ACTIONS(3823), + [anon_sym_raise] = ACTIONS(3823), + [anon_sym_pass] = ACTIONS(3823), + [anon_sym_break] = ACTIONS(3823), + [anon_sym_continue] = ACTIONS(3823), + [anon_sym_if] = ACTIONS(3823), + [anon_sym_match] = ACTIONS(3823), + [anon_sym_async] = ACTIONS(3823), + [anon_sym_for] = ACTIONS(3823), + [anon_sym_while] = ACTIONS(3823), + [anon_sym_try] = ACTIONS(3823), + [anon_sym_with] = ACTIONS(3823), + [anon_sym_def] = ACTIONS(3823), + [anon_sym_global] = ACTIONS(3823), + [anon_sym_nonlocal] = ACTIONS(3823), + [anon_sym_exec] = ACTIONS(3823), + [anon_sym_type] = ACTIONS(3823), + [anon_sym_class] = ACTIONS(3823), + [anon_sym_LBRACK] = ACTIONS(3821), + [anon_sym_AT] = ACTIONS(3821), + [anon_sym_DASH] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_PLUS] = ACTIONS(3821), + [anon_sym_not] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(3821), + [anon_sym_TILDE] = ACTIONS(3821), + [anon_sym_LT] = ACTIONS(3821), + [anon_sym_lambda] = ACTIONS(3823), + [anon_sym_yield] = ACTIONS(3823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3821), + [anon_sym_None] = ACTIONS(3823), + [anon_sym_0x] = ACTIONS(3821), + [anon_sym_0X] = ACTIONS(3821), + [anon_sym_0o] = ACTIONS(3821), + [anon_sym_0O] = ACTIONS(3821), + [anon_sym_0b] = ACTIONS(3821), + [anon_sym_0B] = ACTIONS(3821), + [aux_sym_integer_token4] = ACTIONS(3823), + [sym_float] = ACTIONS(3821), + [anon_sym_await] = ACTIONS(3823), + [anon_sym_api] = ACTIONS(3823), + [sym_true] = ACTIONS(3823), + [sym_false] = ACTIONS(3823), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3823), + [anon_sym_include] = ACTIONS(3823), + [anon_sym_DEF] = ACTIONS(3823), + [anon_sym_IF] = ACTIONS(3823), + [anon_sym_cdef] = ACTIONS(3823), + [anon_sym_cpdef] = ACTIONS(3823), + [anon_sym_new] = ACTIONS(3823), + [anon_sym_ctypedef] = ACTIONS(3823), + [anon_sym_public] = ACTIONS(3823), + [anon_sym_packed] = ACTIONS(3823), + [anon_sym_inline] = ACTIONS(3823), + [anon_sym_readonly] = ACTIONS(3823), + [anon_sym_sizeof] = ACTIONS(3823), + [sym__dedent] = ACTIONS(3821), + [sym_string_start] = ACTIONS(3821), + }, + [2040] = { + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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), }, - [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), + [2041] = { + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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), }, - [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), + [2042] = { + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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), }, - [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), + [2043] = { + [sym_identifier] = ACTIONS(3839), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_import] = ACTIONS(3839), + [anon_sym_cimport] = ACTIONS(3839), + [anon_sym_from] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3837), + [anon_sym_STAR] = ACTIONS(3837), + [anon_sym_print] = ACTIONS(3839), + [anon_sym_assert] = ACTIONS(3839), + [anon_sym_return] = ACTIONS(3839), + [anon_sym_del] = ACTIONS(3839), + [anon_sym_raise] = ACTIONS(3839), + [anon_sym_pass] = ACTIONS(3839), + [anon_sym_break] = ACTIONS(3839), + [anon_sym_continue] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_async] = ACTIONS(3839), + [anon_sym_for] = ACTIONS(3839), + [anon_sym_while] = ACTIONS(3839), + [anon_sym_try] = ACTIONS(3839), + [anon_sym_with] = ACTIONS(3839), + [anon_sym_def] = ACTIONS(3839), + [anon_sym_global] = ACTIONS(3839), + [anon_sym_nonlocal] = ACTIONS(3839), + [anon_sym_exec] = ACTIONS(3839), + [anon_sym_type] = ACTIONS(3839), + [anon_sym_class] = ACTIONS(3839), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_AT] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(3837), + [anon_sym_PLUS] = ACTIONS(3837), + [anon_sym_not] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_LT] = ACTIONS(3837), + [anon_sym_lambda] = ACTIONS(3839), + [anon_sym_yield] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3837), + [anon_sym_None] = ACTIONS(3839), + [anon_sym_0x] = ACTIONS(3837), + [anon_sym_0X] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(3837), + [anon_sym_0O] = ACTIONS(3837), + [anon_sym_0b] = ACTIONS(3837), + [anon_sym_0B] = ACTIONS(3837), + [aux_sym_integer_token4] = ACTIONS(3839), + [sym_float] = ACTIONS(3837), + [anon_sym_await] = ACTIONS(3839), + [anon_sym_api] = ACTIONS(3839), + [sym_true] = ACTIONS(3839), + [sym_false] = ACTIONS(3839), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3839), + [anon_sym_include] = ACTIONS(3839), + [anon_sym_DEF] = ACTIONS(3839), + [anon_sym_IF] = ACTIONS(3839), + [anon_sym_cdef] = ACTIONS(3839), + [anon_sym_cpdef] = ACTIONS(3839), + [anon_sym_new] = ACTIONS(3839), + [anon_sym_ctypedef] = ACTIONS(3839), + [anon_sym_public] = ACTIONS(3839), + [anon_sym_packed] = ACTIONS(3839), + [anon_sym_inline] = ACTIONS(3839), + [anon_sym_readonly] = ACTIONS(3839), + [anon_sym_sizeof] = ACTIONS(3839), + [sym__dedent] = ACTIONS(3837), + [sym_string_start] = ACTIONS(3837), + }, + [2044] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_cimport] = ACTIONS(2995), + [anon_sym_from] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [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_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(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_lambda] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_None] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2997), + [anon_sym_0X] = ACTIONS(2997), + [anon_sym_0o] = ACTIONS(2997), + [anon_sym_0O] = ACTIONS(2997), + [anon_sym_0b] = ACTIONS(2997), + [anon_sym_0B] = ACTIONS(2997), + [aux_sym_integer_token4] = ACTIONS(2995), + [sym_float] = ACTIONS(2997), + [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_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [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(2997), + [sym_string_start] = ACTIONS(2997), }, - [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), + [2045] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4995), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2046] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4996), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2047] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4997), [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_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2048] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4612), [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), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2049] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4998), [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_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2050] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4999), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [anon_sym_0x] = ACTIONS(81), + [anon_sym_0X] = ACTIONS(81), + [anon_sym_0o] = ACTIONS(83), + [anon_sym_0O] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0B] = ACTIONS(85), + [aux_sym_integer_token4] = ACTIONS(87), + [sym_float] = ACTIONS(89), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), [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), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(115), + [sym_string_start] = ACTIONS(117), }, - [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), + [2051] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(5000), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(65), [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_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2193), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -203668,356 +209846,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(2195), [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), + [2052] = { + [sym_identifier] = ACTIONS(3843), + [anon_sym_SEMI] = ACTIONS(3841), + [anon_sym_import] = ACTIONS(3843), + [anon_sym_cimport] = ACTIONS(3843), + [anon_sym_from] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(3841), + [anon_sym_print] = ACTIONS(3843), + [anon_sym_assert] = ACTIONS(3843), + [anon_sym_return] = ACTIONS(3843), + [anon_sym_del] = ACTIONS(3843), + [anon_sym_raise] = ACTIONS(3843), + [anon_sym_pass] = ACTIONS(3843), + [anon_sym_break] = ACTIONS(3843), + [anon_sym_continue] = ACTIONS(3843), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_async] = ACTIONS(3843), + [anon_sym_for] = ACTIONS(3843), + [anon_sym_while] = ACTIONS(3843), + [anon_sym_try] = ACTIONS(3843), + [anon_sym_with] = ACTIONS(3843), + [anon_sym_def] = ACTIONS(3843), + [anon_sym_global] = ACTIONS(3843), + [anon_sym_nonlocal] = ACTIONS(3843), + [anon_sym_exec] = ACTIONS(3843), + [anon_sym_type] = ACTIONS(3843), + [anon_sym_class] = ACTIONS(3843), + [anon_sym_LBRACK] = ACTIONS(3841), + [anon_sym_AT] = ACTIONS(3841), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_not] = ACTIONS(3843), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_TILDE] = ACTIONS(3841), + [anon_sym_LT] = ACTIONS(3841), + [anon_sym_lambda] = ACTIONS(3843), + [anon_sym_yield] = ACTIONS(3843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [anon_sym_None] = ACTIONS(3843), + [anon_sym_0x] = ACTIONS(3841), + [anon_sym_0X] = ACTIONS(3841), + [anon_sym_0o] = ACTIONS(3841), + [anon_sym_0O] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3841), + [anon_sym_0B] = ACTIONS(3841), + [aux_sym_integer_token4] = ACTIONS(3843), + [sym_float] = ACTIONS(3841), + [anon_sym_await] = ACTIONS(3843), + [anon_sym_api] = ACTIONS(3843), + [sym_true] = ACTIONS(3843), + [sym_false] = ACTIONS(3843), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3843), + [anon_sym_include] = ACTIONS(3843), + [anon_sym_DEF] = ACTIONS(3843), + [anon_sym_IF] = ACTIONS(3843), + [anon_sym_cdef] = ACTIONS(3843), + [anon_sym_cpdef] = ACTIONS(3843), + [anon_sym_new] = ACTIONS(3843), + [anon_sym_ctypedef] = ACTIONS(3843), + [anon_sym_public] = ACTIONS(3843), + [anon_sym_packed] = ACTIONS(3843), + [anon_sym_inline] = ACTIONS(3843), + [anon_sym_readonly] = ACTIONS(3843), + [anon_sym_sizeof] = ACTIONS(3843), + [sym__dedent] = ACTIONS(3841), + [sym_string_start] = ACTIONS(3841), }, - [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), + [2053] = { + [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), }, - [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), + [2054] = { + [sym_named_expression] = STATE(4585), + [sym__named_expression_lhs] = STATE(7333), + [sym_list_splat_pattern] = STATE(2689), + [sym_as_pattern] = STATE(4585), + [sym_expression] = STATE(4610), + [sym_primary_expression] = STATE(2588), + [sym_not_operator] = STATE(4585), + [sym_boolean_operator] = STATE(4585), + [sym_binary_operator] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_comparison_operator] = STATE(4585), + [sym_lambda] = STATE(4585), + [sym_attribute] = STATE(2684), + [sym_subscript] = STATE(2684), + [sym_ellipsis] = STATE(2684), + [sym_call] = STATE(2684), + [sym_list] = STATE(2684), + [sym_set] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_dictionary] = STATE(2684), + [sym_list_comprehension] = STATE(2684), + [sym_dictionary_comprehension] = STATE(2684), + [sym_set_comprehension] = STATE(2684), + [sym_generator_expression] = STATE(2684), + [sym_parenthesized_expression] = STATE(2684), + [sym_conditional_expression] = STATE(4585), + [sym_concatenated_string] = STATE(2684), + [sym_string] = STATE(2575), + [sym_integer] = STATE(2684), + [sym_none] = STATE(2684), + [sym_await] = STATE(2684), + [sym_new_expression] = STATE(4585), + [sym_sizeof_expression] = STATE(2684), + [sym_cast_expression] = STATE(2684), + [aux_sym_integer_repeat4] = STATE(2542), + [sym_identifier] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_exec] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1541), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2191), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_lambda] = ACTIONS(2193), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [anon_sym_0x] = ACTIONS(81), @@ -204028,91 +210062,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_api] = ACTIONS(1070), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2195), [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), + [2055] = { + [sym_named_expression] = STATE(3654), + [sym__named_expression_lhs] = STATE(7114), + [sym_list_splat_pattern] = STATE(3109), + [sym_as_pattern] = STATE(3654), + [sym_expression] = STATE(5724), + [sym_primary_expression] = STATE(3014), + [sym_not_operator] = STATE(3654), + [sym_boolean_operator] = STATE(3654), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_comparison_operator] = STATE(3654), + [sym_lambda] = STATE(3654), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_conditional_expression] = STATE(3654), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_new_expression] = STATE(3654), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_print] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_exec] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(3697), + [anon_sym_lambda] = ACTIONS(3699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1985), + [anon_sym_0X] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(3701), + [anon_sym_api] = ACTIONS(1451), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [1961] = { + [2056] = { + [sym_named_expression] = STATE(3005), + [sym__named_expression_lhs] = STATE(7325), + [sym_list_splat_pattern] = STATE(2958), + [sym_as_pattern] = STATE(3005), + [sym_expression] = STATE(5202), + [sym_primary_expression] = STATE(2577), + [sym_not_operator] = STATE(3005), + [sym_boolean_operator] = STATE(3005), + [sym_binary_operator] = STATE(2836), + [sym_unary_operator] = STATE(2836), + [sym_comparison_operator] = STATE(3005), + [sym_lambda] = STATE(3005), + [sym_attribute] = STATE(2836), + [sym_subscript] = STATE(2836), + [sym_ellipsis] = STATE(2836), + [sym_call] = STATE(2836), + [sym_list] = STATE(2836), + [sym_set] = STATE(2836), + [sym_tuple] = STATE(2836), + [sym_dictionary] = STATE(2836), + [sym_list_comprehension] = STATE(2836), + [sym_dictionary_comprehension] = STATE(2836), + [sym_set_comprehension] = STATE(2836), + [sym_generator_expression] = STATE(2836), + [sym_parenthesized_expression] = STATE(2836), + [sym_conditional_expression] = STATE(3005), + [sym_concatenated_string] = STATE(2836), + [sym_string] = STATE(2615), + [sym_integer] = STATE(2836), + [sym_none] = STATE(2836), + [sym_await] = STATE(2836), + [sym_new_expression] = STATE(3005), + [sym_sizeof_expression] = STATE(2836), + [sym_cast_expression] = STATE(2836), + [aux_sym_integer_repeat4] = STATE(2562), + [sym_identifier] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1847), + [anon_sym_0X] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0O] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0B] = ACTIONS(1851), + [aux_sym_integer_token4] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1861), + }, + [2057] = { + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_cimport] = ACTIONS(2811), + [anon_sym_from] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_print] = ACTIONS(2811), + [anon_sym_assert] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_del] = ACTIONS(2811), + [anon_sym_raise] = ACTIONS(2811), + [anon_sym_pass] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_def] = ACTIONS(2811), + [anon_sym_global] = ACTIONS(2811), + [anon_sym_nonlocal] = ACTIONS(2811), + [anon_sym_exec] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_lambda] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), + [anon_sym_None] = ACTIONS(2811), + [anon_sym_0x] = ACTIONS(2809), + [anon_sym_0X] = ACTIONS(2809), + [anon_sym_0o] = ACTIONS(2809), + [anon_sym_0O] = ACTIONS(2809), + [anon_sym_0b] = ACTIONS(2809), + [anon_sym_0B] = ACTIONS(2809), + [aux_sym_integer_token4] = ACTIONS(2811), + [sym_float] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2811), + [anon_sym_include] = ACTIONS(2811), + [anon_sym_DEF] = ACTIONS(2811), + [anon_sym_IF] = ACTIONS(2811), + [anon_sym_cdef] = ACTIONS(2811), + [anon_sym_cpdef] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_ctypedef] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_packed] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2811), + [sym_string_start] = ACTIONS(2809), + }, + [2058] = { + [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), @@ -204179,4039 +210356,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2059] = { + [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), }, - [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), + [2060] = { + [sym_identifier] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_cimport] = ACTIONS(3969), + [anon_sym_from] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_print] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_del] = ACTIONS(3969), + [anon_sym_raise] = ACTIONS(3969), + [anon_sym_pass] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_async] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_def] = ACTIONS(3969), + [anon_sym_global] = ACTIONS(3969), + [anon_sym_nonlocal] = ACTIONS(3969), + [anon_sym_exec] = ACTIONS(3969), + [anon_sym_type] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3971), + [anon_sym_AT] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(3971), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_AMP] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_lambda] = ACTIONS(3969), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3971), + [anon_sym_None] = ACTIONS(3969), + [anon_sym_0x] = ACTIONS(3971), + [anon_sym_0X] = ACTIONS(3971), + [anon_sym_0o] = ACTIONS(3971), + [anon_sym_0O] = ACTIONS(3971), + [anon_sym_0b] = ACTIONS(3971), + [anon_sym_0B] = ACTIONS(3971), + [aux_sym_integer_token4] = ACTIONS(3969), + [sym_float] = ACTIONS(3971), + [anon_sym_await] = ACTIONS(3969), + [anon_sym_api] = ACTIONS(3969), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3969), + [anon_sym_include] = ACTIONS(3969), + [anon_sym_DEF] = ACTIONS(3969), + [anon_sym_IF] = ACTIONS(3969), + [anon_sym_cdef] = ACTIONS(3969), + [anon_sym_cpdef] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_ctypedef] = ACTIONS(3969), + [anon_sym_public] = ACTIONS(3969), + [anon_sym_packed] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym_readonly] = ACTIONS(3969), + [anon_sym_sizeof] = ACTIONS(3969), + [sym__dedent] = ACTIONS(3971), + [sym_string_start] = ACTIONS(3971), }, - [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), + [2061] = { + [sym_identifier] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_cimport] = ACTIONS(3973), + [anon_sym_from] = ACTIONS(3973), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_print] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_del] = ACTIONS(3973), + [anon_sym_raise] = ACTIONS(3973), + [anon_sym_pass] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_async] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_def] = ACTIONS(3973), + [anon_sym_global] = ACTIONS(3973), + [anon_sym_nonlocal] = ACTIONS(3973), + [anon_sym_exec] = ACTIONS(3973), + [anon_sym_type] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_AT] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_lambda] = ACTIONS(3973), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3975), + [anon_sym_None] = ACTIONS(3973), + [anon_sym_0x] = ACTIONS(3975), + [anon_sym_0X] = ACTIONS(3975), + [anon_sym_0o] = ACTIONS(3975), + [anon_sym_0O] = ACTIONS(3975), + [anon_sym_0b] = ACTIONS(3975), + [anon_sym_0B] = ACTIONS(3975), + [aux_sym_integer_token4] = ACTIONS(3973), + [sym_float] = ACTIONS(3975), + [anon_sym_await] = ACTIONS(3973), + [anon_sym_api] = ACTIONS(3973), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3973), + [anon_sym_include] = ACTIONS(3973), + [anon_sym_DEF] = ACTIONS(3973), + [anon_sym_IF] = ACTIONS(3973), + [anon_sym_cdef] = ACTIONS(3973), + [anon_sym_cpdef] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_ctypedef] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_packed] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_readonly] = ACTIONS(3973), + [anon_sym_sizeof] = ACTIONS(3973), + [sym__dedent] = ACTIONS(3975), + [sym_string_start] = ACTIONS(3975), }, - [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] = { + [2062] = { [ts_builtin_sym_end] = ACTIONS(3977), [sym_identifier] = ACTIONS(3979), [anon_sym_import] = ACTIONS(3979), @@ -208282,7 +210642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3979), [sym_string_start] = ACTIONS(3977), }, - [2019] = { + [2063] = { [ts_builtin_sym_end] = ACTIONS(3981), [sym_identifier] = ACTIONS(3983), [anon_sym_import] = ACTIONS(3983), @@ -208353,149 +210713,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2064] = { + [sym_identifier] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_cimport] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_print] = ACTIONS(3985), + [anon_sym_assert] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_del] = ACTIONS(3985), + [anon_sym_raise] = ACTIONS(3985), + [anon_sym_pass] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_match] = ACTIONS(3985), + [anon_sym_async] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3985), + [anon_sym_def] = ACTIONS(3985), + [anon_sym_global] = ACTIONS(3985), + [anon_sym_nonlocal] = ACTIONS(3985), + [anon_sym_exec] = ACTIONS(3985), + [anon_sym_type] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_AT] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_lambda] = ACTIONS(3985), + [anon_sym_yield] = ACTIONS(3985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3987), + [anon_sym_None] = ACTIONS(3985), + [anon_sym_0x] = ACTIONS(3987), + [anon_sym_0X] = ACTIONS(3987), + [anon_sym_0o] = ACTIONS(3987), + [anon_sym_0O] = ACTIONS(3987), + [anon_sym_0b] = ACTIONS(3987), + [anon_sym_0B] = ACTIONS(3987), + [aux_sym_integer_token4] = ACTIONS(3985), + [sym_float] = ACTIONS(3987), + [anon_sym_await] = ACTIONS(3985), + [anon_sym_api] = ACTIONS(3985), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3985), + [anon_sym_include] = ACTIONS(3985), + [anon_sym_DEF] = ACTIONS(3985), + [anon_sym_IF] = ACTIONS(3985), + [anon_sym_cdef] = ACTIONS(3985), + [anon_sym_cpdef] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_ctypedef] = ACTIONS(3985), + [anon_sym_public] = ACTIONS(3985), + [anon_sym_packed] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym_readonly] = ACTIONS(3985), + [anon_sym_sizeof] = ACTIONS(3985), + [sym__dedent] = ACTIONS(3987), + [sym_string_start] = ACTIONS(3987), }, - [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), + [2065] = { + [sym_identifier] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_cimport] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_print] = ACTIONS(3989), + [anon_sym_assert] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_del] = ACTIONS(3989), + [anon_sym_raise] = ACTIONS(3989), + [anon_sym_pass] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_match] = ACTIONS(3989), + [anon_sym_async] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3989), + [anon_sym_def] = ACTIONS(3989), + [anon_sym_global] = ACTIONS(3989), + [anon_sym_nonlocal] = ACTIONS(3989), + [anon_sym_exec] = ACTIONS(3989), + [anon_sym_type] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3991), + [anon_sym_AT] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_lambda] = ACTIONS(3989), + [anon_sym_yield] = ACTIONS(3989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3991), + [anon_sym_None] = ACTIONS(3989), + [anon_sym_0x] = ACTIONS(3991), + [anon_sym_0X] = ACTIONS(3991), + [anon_sym_0o] = ACTIONS(3991), + [anon_sym_0O] = ACTIONS(3991), + [anon_sym_0b] = ACTIONS(3991), + [anon_sym_0B] = ACTIONS(3991), + [aux_sym_integer_token4] = ACTIONS(3989), + [sym_float] = ACTIONS(3991), + [anon_sym_await] = ACTIONS(3989), + [anon_sym_api] = ACTIONS(3989), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3989), + [anon_sym_include] = ACTIONS(3989), + [anon_sym_DEF] = ACTIONS(3989), + [anon_sym_IF] = ACTIONS(3989), + [anon_sym_cdef] = ACTIONS(3989), + [anon_sym_cpdef] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_ctypedef] = ACTIONS(3989), + [anon_sym_public] = ACTIONS(3989), + [anon_sym_packed] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym_readonly] = ACTIONS(3989), + [anon_sym_sizeof] = ACTIONS(3989), + [sym__dedent] = ACTIONS(3991), + [sym_string_start] = ACTIONS(3991), }, - [2022] = { + [2066] = { [ts_builtin_sym_end] = ACTIONS(3993), [sym_identifier] = ACTIONS(3995), [anon_sym_import] = ACTIONS(3995), @@ -208566,220 +210926,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2067] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4310), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), [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_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(3999), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(3999), [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_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), [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), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1059), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2068] = { + [sym_identifier] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_cimport] = ACTIONS(4005), + [anon_sym_from] = ACTIONS(4005), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_print] = ACTIONS(4005), + [anon_sym_assert] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_del] = ACTIONS(4005), + [anon_sym_raise] = ACTIONS(4005), + [anon_sym_pass] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_match] = ACTIONS(4005), + [anon_sym_async] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_with] = ACTIONS(4005), + [anon_sym_def] = ACTIONS(4005), + [anon_sym_global] = ACTIONS(4005), + [anon_sym_nonlocal] = ACTIONS(4005), + [anon_sym_exec] = ACTIONS(4005), + [anon_sym_type] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4007), + [anon_sym_AT] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4007), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_PLUS] = ACTIONS(4007), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_LT] = ACTIONS(4007), + [anon_sym_lambda] = ACTIONS(4005), + [anon_sym_yield] = ACTIONS(4005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4007), + [anon_sym_None] = ACTIONS(4005), + [anon_sym_0x] = ACTIONS(4007), + [anon_sym_0X] = ACTIONS(4007), + [anon_sym_0o] = ACTIONS(4007), + [anon_sym_0O] = ACTIONS(4007), + [anon_sym_0b] = ACTIONS(4007), + [anon_sym_0B] = ACTIONS(4007), + [aux_sym_integer_token4] = ACTIONS(4005), + [sym_float] = ACTIONS(4007), + [anon_sym_await] = ACTIONS(4005), + [anon_sym_api] = ACTIONS(4005), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4005), + [anon_sym_include] = ACTIONS(4005), + [anon_sym_DEF] = ACTIONS(4005), + [anon_sym_IF] = ACTIONS(4005), + [anon_sym_cdef] = ACTIONS(4005), + [anon_sym_cpdef] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_ctypedef] = ACTIONS(4005), + [anon_sym_public] = ACTIONS(4005), + [anon_sym_packed] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym_readonly] = ACTIONS(4005), + [anon_sym_sizeof] = ACTIONS(4005), + [sym__dedent] = ACTIONS(4007), + [sym_string_start] = ACTIONS(4007), }, - [2026] = { + [2069] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2070] = { [ts_builtin_sym_end] = ACTIONS(4009), [sym_identifier] = ACTIONS(4011), [anon_sym_import] = ACTIONS(4011), @@ -208850,291 +211210,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2071] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2072] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2073] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_by] = ACTIONS(1554), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2074] = { + [sym_identifier] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_cimport] = ACTIONS(4013), + [anon_sym_from] = ACTIONS(4013), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_print] = ACTIONS(4013), + [anon_sym_assert] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_del] = ACTIONS(4013), + [anon_sym_raise] = ACTIONS(4013), + [anon_sym_pass] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_match] = ACTIONS(4013), + [anon_sym_async] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_with] = ACTIONS(4013), + [anon_sym_def] = ACTIONS(4013), + [anon_sym_global] = ACTIONS(4013), + [anon_sym_nonlocal] = ACTIONS(4013), + [anon_sym_exec] = ACTIONS(4013), + [anon_sym_type] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_AT] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4015), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4015), + [anon_sym_lambda] = ACTIONS(4013), + [anon_sym_yield] = ACTIONS(4013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4015), + [anon_sym_None] = ACTIONS(4013), + [anon_sym_0x] = ACTIONS(4015), + [anon_sym_0X] = ACTIONS(4015), + [anon_sym_0o] = ACTIONS(4015), + [anon_sym_0O] = ACTIONS(4015), + [anon_sym_0b] = ACTIONS(4015), + [anon_sym_0B] = ACTIONS(4015), + [aux_sym_integer_token4] = ACTIONS(4013), + [sym_float] = ACTIONS(4015), + [anon_sym_await] = ACTIONS(4013), + [anon_sym_api] = ACTIONS(4013), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4013), + [anon_sym_include] = ACTIONS(4013), + [anon_sym_DEF] = ACTIONS(4013), + [anon_sym_IF] = ACTIONS(4013), + [anon_sym_cdef] = ACTIONS(4013), + [anon_sym_cpdef] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_ctypedef] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_packed] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_readonly] = ACTIONS(4013), + [anon_sym_sizeof] = ACTIONS(4013), + [sym__dedent] = ACTIONS(4015), + [sym_string_start] = ACTIONS(4015), }, - [2031] = { + [2075] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2076] = { + [sym_identifier] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_cimport] = ACTIONS(4017), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_LPAREN] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_print] = ACTIONS(4017), + [anon_sym_assert] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_del] = ACTIONS(4017), + [anon_sym_raise] = ACTIONS(4017), + [anon_sym_pass] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_match] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_def] = ACTIONS(4017), + [anon_sym_global] = ACTIONS(4017), + [anon_sym_nonlocal] = ACTIONS(4017), + [anon_sym_exec] = ACTIONS(4017), + [anon_sym_type] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4019), + [anon_sym_AT] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4019), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_PLUS] = ACTIONS(4019), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_AMP] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4019), + [anon_sym_lambda] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_None] = ACTIONS(4017), + [anon_sym_0x] = ACTIONS(4019), + [anon_sym_0X] = ACTIONS(4019), + [anon_sym_0o] = ACTIONS(4019), + [anon_sym_0O] = ACTIONS(4019), + [anon_sym_0b] = ACTIONS(4019), + [anon_sym_0B] = ACTIONS(4019), + [aux_sym_integer_token4] = ACTIONS(4017), + [sym_float] = ACTIONS(4019), + [anon_sym_await] = ACTIONS(4017), + [anon_sym_api] = ACTIONS(4017), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4017), + [anon_sym_include] = ACTIONS(4017), + [anon_sym_DEF] = ACTIONS(4017), + [anon_sym_IF] = ACTIONS(4017), + [anon_sym_cdef] = ACTIONS(4017), + [anon_sym_cpdef] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_ctypedef] = ACTIONS(4017), + [anon_sym_public] = ACTIONS(4017), + [anon_sym_packed] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym_readonly] = ACTIONS(4017), + [anon_sym_sizeof] = ACTIONS(4017), + [sym__dedent] = ACTIONS(4019), + [sym_string_start] = ACTIONS(4019), + }, + [2077] = { [ts_builtin_sym_end] = ACTIONS(4021), [sym_identifier] = ACTIONS(4023), [anon_sym_import] = ACTIONS(4023), @@ -209205,7 +211707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4023), [sym_string_start] = ACTIONS(4021), }, - [2032] = { + [2078] = { [ts_builtin_sym_end] = ACTIONS(4025), [sym_identifier] = ACTIONS(4027), [anon_sym_import] = ACTIONS(4027), @@ -209276,7 +211778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4027), [sym_string_start] = ACTIONS(4025), }, - [2033] = { + [2079] = { [ts_builtin_sym_end] = ACTIONS(4029), [sym_identifier] = ACTIONS(4031), [anon_sym_import] = ACTIONS(4031), @@ -209347,78 +211849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [2080] = { [ts_builtin_sym_end] = ACTIONS(4033), [sym_identifier] = ACTIONS(4035), [anon_sym_import] = ACTIONS(4035), @@ -209489,7 +211920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4035), [sym_string_start] = ACTIONS(4033), }, - [2036] = { + [2081] = { [ts_builtin_sym_end] = ACTIONS(4037), [sym_identifier] = ACTIONS(4039), [anon_sym_import] = ACTIONS(4039), @@ -209560,7 +211991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4039), [sym_string_start] = ACTIONS(4037), }, - [2037] = { + [2082] = { [ts_builtin_sym_end] = ACTIONS(4041), [sym_identifier] = ACTIONS(4043), [anon_sym_import] = ACTIONS(4043), @@ -209631,7 +212062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4043), [sym_string_start] = ACTIONS(4041), }, - [2038] = { + [2083] = { [ts_builtin_sym_end] = ACTIONS(4045), [sym_identifier] = ACTIONS(4047), [anon_sym_import] = ACTIONS(4047), @@ -209702,7 +212133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4047), [sym_string_start] = ACTIONS(4045), }, - [2039] = { + [2084] = { [ts_builtin_sym_end] = ACTIONS(4049), [sym_identifier] = ACTIONS(4051), [anon_sym_import] = ACTIONS(4051), @@ -209773,7 +212204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4051), [sym_string_start] = ACTIONS(4049), }, - [2040] = { + [2085] = { [ts_builtin_sym_end] = ACTIONS(4053), [sym_identifier] = ACTIONS(4055), [anon_sym_import] = ACTIONS(4055), @@ -209844,7 +212275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4055), [sym_string_start] = ACTIONS(4053), }, - [2041] = { + [2086] = { [ts_builtin_sym_end] = ACTIONS(4057), [sym_identifier] = ACTIONS(4059), [anon_sym_import] = ACTIONS(4059), @@ -209915,7 +212346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4059), [sym_string_start] = ACTIONS(4057), }, - [2042] = { + [2087] = { [ts_builtin_sym_end] = ACTIONS(4061), [sym_identifier] = ACTIONS(4063), [anon_sym_import] = ACTIONS(4063), @@ -209986,7 +212417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4063), [sym_string_start] = ACTIONS(4061), }, - [2043] = { + [2088] = { [ts_builtin_sym_end] = ACTIONS(4065), [sym_identifier] = ACTIONS(4067), [anon_sym_import] = ACTIONS(4067), @@ -210057,7 +212488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4067), [sym_string_start] = ACTIONS(4065), }, - [2044] = { + [2089] = { [ts_builtin_sym_end] = ACTIONS(4069), [sym_identifier] = ACTIONS(4071), [anon_sym_import] = ACTIONS(4071), @@ -210128,7 +212559,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4071), [sym_string_start] = ACTIONS(4069), }, - [2045] = { + [2090] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym_string_start] = ACTIONS(2255), + }, + [2091] = { [ts_builtin_sym_end] = ACTIONS(4073), [sym_identifier] = ACTIONS(4075), [anon_sym_import] = ACTIONS(4075), @@ -210199,7 +212701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4075), [sym_string_start] = ACTIONS(4073), }, - [2046] = { + [2092] = { [ts_builtin_sym_end] = ACTIONS(4077), [sym_identifier] = ACTIONS(4079), [anon_sym_import] = ACTIONS(4079), @@ -210270,220 +212772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [2093] = { [ts_builtin_sym_end] = ACTIONS(4081), [sym_identifier] = ACTIONS(4083), [anon_sym_import] = ACTIONS(4083), @@ -210554,7 +212843,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4083), [sym_string_start] = ACTIONS(4081), }, - [2051] = { + [2094] = { + [ts_builtin_sym_end] = ACTIONS(3971), + [sym_identifier] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_cimport] = ACTIONS(3969), + [anon_sym_from] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_print] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_del] = ACTIONS(3969), + [anon_sym_raise] = ACTIONS(3969), + [anon_sym_pass] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_async] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_def] = ACTIONS(3969), + [anon_sym_global] = ACTIONS(3969), + [anon_sym_nonlocal] = ACTIONS(3969), + [anon_sym_exec] = ACTIONS(3969), + [anon_sym_type] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3971), + [anon_sym_AT] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(3971), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_AMP] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_lambda] = ACTIONS(3969), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3971), + [anon_sym_None] = ACTIONS(3969), + [anon_sym_0x] = ACTIONS(3971), + [anon_sym_0X] = ACTIONS(3971), + [anon_sym_0o] = ACTIONS(3971), + [anon_sym_0O] = ACTIONS(3971), + [anon_sym_0b] = ACTIONS(3971), + [anon_sym_0B] = ACTIONS(3971), + [aux_sym_integer_token4] = ACTIONS(3969), + [sym_float] = ACTIONS(3971), + [anon_sym_await] = ACTIONS(3969), + [anon_sym_api] = ACTIONS(3969), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3969), + [anon_sym_include] = ACTIONS(3969), + [anon_sym_DEF] = ACTIONS(3969), + [anon_sym_IF] = ACTIONS(3969), + [anon_sym_cdef] = ACTIONS(3969), + [anon_sym_cpdef] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_ctypedef] = ACTIONS(3969), + [anon_sym_public] = ACTIONS(3969), + [anon_sym_packed] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym_readonly] = ACTIONS(3969), + [anon_sym_sizeof] = ACTIONS(3969), + [sym_string_start] = ACTIONS(3971), + }, + [2095] = { + [ts_builtin_sym_end] = ACTIONS(3975), + [sym_identifier] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_cimport] = ACTIONS(3973), + [anon_sym_from] = ACTIONS(3973), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_print] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_del] = ACTIONS(3973), + [anon_sym_raise] = ACTIONS(3973), + [anon_sym_pass] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_async] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_def] = ACTIONS(3973), + [anon_sym_global] = ACTIONS(3973), + [anon_sym_nonlocal] = ACTIONS(3973), + [anon_sym_exec] = ACTIONS(3973), + [anon_sym_type] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_AT] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_lambda] = ACTIONS(3973), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3975), + [anon_sym_None] = ACTIONS(3973), + [anon_sym_0x] = ACTIONS(3975), + [anon_sym_0X] = ACTIONS(3975), + [anon_sym_0o] = ACTIONS(3975), + [anon_sym_0O] = ACTIONS(3975), + [anon_sym_0b] = ACTIONS(3975), + [anon_sym_0B] = ACTIONS(3975), + [aux_sym_integer_token4] = ACTIONS(3973), + [sym_float] = ACTIONS(3975), + [anon_sym_await] = ACTIONS(3973), + [anon_sym_api] = ACTIONS(3973), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3973), + [anon_sym_include] = ACTIONS(3973), + [anon_sym_DEF] = ACTIONS(3973), + [anon_sym_IF] = ACTIONS(3973), + [anon_sym_cdef] = ACTIONS(3973), + [anon_sym_cpdef] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_ctypedef] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_packed] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_readonly] = ACTIONS(3973), + [anon_sym_sizeof] = ACTIONS(3973), + [sym_string_start] = ACTIONS(3975), + }, + [2096] = { [ts_builtin_sym_end] = ACTIONS(4085), [sym_identifier] = ACTIONS(4087), [anon_sym_import] = ACTIONS(4087), @@ -210625,149 +213056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [2097] = { [ts_builtin_sym_end] = ACTIONS(4089), [sym_identifier] = ACTIONS(4091), [anon_sym_import] = ACTIONS(4091), @@ -210838,7 +213127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4091), [sym_string_start] = ACTIONS(4089), }, - [2055] = { + [2098] = { [ts_builtin_sym_end] = ACTIONS(4093), [sym_identifier] = ACTIONS(4095), [anon_sym_import] = ACTIONS(4095), @@ -210909,78 +213198,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2099] = { + [ts_builtin_sym_end] = ACTIONS(4097), + [sym_identifier] = ACTIONS(4099), + [anon_sym_import] = ACTIONS(4099), + [anon_sym_cimport] = ACTIONS(4099), + [anon_sym_from] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_print] = ACTIONS(4099), + [anon_sym_assert] = ACTIONS(4099), + [anon_sym_return] = ACTIONS(4099), + [anon_sym_del] = ACTIONS(4099), + [anon_sym_raise] = ACTIONS(4099), + [anon_sym_pass] = ACTIONS(4099), + [anon_sym_break] = ACTIONS(4099), + [anon_sym_continue] = ACTIONS(4099), + [anon_sym_if] = ACTIONS(4099), + [anon_sym_match] = ACTIONS(4099), + [anon_sym_async] = ACTIONS(4099), + [anon_sym_for] = ACTIONS(4099), + [anon_sym_while] = ACTIONS(4099), + [anon_sym_try] = ACTIONS(4099), + [anon_sym_with] = ACTIONS(4099), + [anon_sym_def] = ACTIONS(4099), + [anon_sym_global] = ACTIONS(4099), + [anon_sym_nonlocal] = ACTIONS(4099), + [anon_sym_exec] = ACTIONS(4099), + [anon_sym_type] = ACTIONS(4099), + [anon_sym_class] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_not] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(4097), + [anon_sym_TILDE] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_lambda] = ACTIONS(4099), + [anon_sym_yield] = ACTIONS(4099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4097), + [anon_sym_None] = ACTIONS(4099), + [anon_sym_0x] = ACTIONS(4097), + [anon_sym_0X] = ACTIONS(4097), + [anon_sym_0o] = ACTIONS(4097), + [anon_sym_0O] = ACTIONS(4097), + [anon_sym_0b] = ACTIONS(4097), + [anon_sym_0B] = ACTIONS(4097), + [aux_sym_integer_token4] = ACTIONS(4099), + [sym_float] = ACTIONS(4097), + [anon_sym_await] = ACTIONS(4099), + [anon_sym_api] = ACTIONS(4099), + [sym_true] = ACTIONS(4099), + [sym_false] = ACTIONS(4099), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4099), + [anon_sym_include] = ACTIONS(4099), + [anon_sym_DEF] = ACTIONS(4099), + [anon_sym_IF] = ACTIONS(4099), + [anon_sym_cdef] = ACTIONS(4099), + [anon_sym_cpdef] = ACTIONS(4099), + [anon_sym_new] = ACTIONS(4099), + [anon_sym_ctypedef] = ACTIONS(4099), + [anon_sym_public] = ACTIONS(4099), + [anon_sym_packed] = ACTIONS(4099), + [anon_sym_inline] = ACTIONS(4099), + [anon_sym_readonly] = ACTIONS(4099), + [anon_sym_sizeof] = ACTIONS(4099), + [sym_string_start] = ACTIONS(4097), }, - [2057] = { + [2100] = { [ts_builtin_sym_end] = ACTIONS(4101), [sym_identifier] = ACTIONS(4103), [anon_sym_import] = ACTIONS(4103), @@ -211051,433 +213340,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2101] = { + [ts_builtin_sym_end] = ACTIONS(4019), + [sym_identifier] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_cimport] = ACTIONS(4017), + [anon_sym_from] = ACTIONS(4017), + [anon_sym_LPAREN] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_print] = ACTIONS(4017), + [anon_sym_assert] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_del] = ACTIONS(4017), + [anon_sym_raise] = ACTIONS(4017), + [anon_sym_pass] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_match] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_with] = ACTIONS(4017), + [anon_sym_def] = ACTIONS(4017), + [anon_sym_global] = ACTIONS(4017), + [anon_sym_nonlocal] = ACTIONS(4017), + [anon_sym_exec] = ACTIONS(4017), + [anon_sym_type] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4019), + [anon_sym_AT] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4019), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_PLUS] = ACTIONS(4019), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_AMP] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_LT] = ACTIONS(4019), + [anon_sym_lambda] = ACTIONS(4017), + [anon_sym_yield] = ACTIONS(4017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_None] = ACTIONS(4017), + [anon_sym_0x] = ACTIONS(4019), + [anon_sym_0X] = ACTIONS(4019), + [anon_sym_0o] = ACTIONS(4019), + [anon_sym_0O] = ACTIONS(4019), + [anon_sym_0b] = ACTIONS(4019), + [anon_sym_0B] = ACTIONS(4019), + [aux_sym_integer_token4] = ACTIONS(4017), + [sym_float] = ACTIONS(4019), + [anon_sym_await] = ACTIONS(4017), + [anon_sym_api] = ACTIONS(4017), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4017), + [anon_sym_include] = ACTIONS(4017), + [anon_sym_DEF] = ACTIONS(4017), + [anon_sym_IF] = ACTIONS(4017), + [anon_sym_cdef] = ACTIONS(4017), + [anon_sym_cpdef] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_ctypedef] = ACTIONS(4017), + [anon_sym_public] = ACTIONS(4017), + [anon_sym_packed] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym_readonly] = ACTIONS(4017), + [anon_sym_sizeof] = ACTIONS(4017), + [sym_string_start] = ACTIONS(4019), }, - [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), + [2102] = { + [ts_builtin_sym_end] = ACTIONS(4105), + [sym_identifier] = ACTIONS(4107), + [anon_sym_import] = ACTIONS(4107), + [anon_sym_cimport] = ACTIONS(4107), + [anon_sym_from] = ACTIONS(4107), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_STAR] = ACTIONS(4105), + [anon_sym_print] = ACTIONS(4107), + [anon_sym_assert] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_del] = ACTIONS(4107), + [anon_sym_raise] = ACTIONS(4107), + [anon_sym_pass] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_match] = ACTIONS(4107), + [anon_sym_async] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_with] = ACTIONS(4107), + [anon_sym_def] = ACTIONS(4107), + [anon_sym_global] = ACTIONS(4107), + [anon_sym_nonlocal] = ACTIONS(4107), + [anon_sym_exec] = ACTIONS(4107), + [anon_sym_type] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_DASH] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4105), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4105), + [anon_sym_TILDE] = ACTIONS(4105), + [anon_sym_LT] = ACTIONS(4105), + [anon_sym_lambda] = ACTIONS(4107), + [anon_sym_yield] = ACTIONS(4107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4105), + [anon_sym_None] = ACTIONS(4107), + [anon_sym_0x] = ACTIONS(4105), + [anon_sym_0X] = ACTIONS(4105), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0O] = ACTIONS(4105), + [anon_sym_0b] = ACTIONS(4105), + [anon_sym_0B] = ACTIONS(4105), + [aux_sym_integer_token4] = ACTIONS(4107), + [sym_float] = ACTIONS(4105), + [anon_sym_await] = ACTIONS(4107), + [anon_sym_api] = ACTIONS(4107), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4107), + [anon_sym_include] = ACTIONS(4107), + [anon_sym_DEF] = ACTIONS(4107), + [anon_sym_IF] = ACTIONS(4107), + [anon_sym_cdef] = ACTIONS(4107), + [anon_sym_cpdef] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_ctypedef] = ACTIONS(4107), + [anon_sym_public] = ACTIONS(4107), + [anon_sym_packed] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym_readonly] = ACTIONS(4107), + [anon_sym_sizeof] = ACTIONS(4107), + [sym_string_start] = ACTIONS(4105), }, - [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), + [2103] = { + [ts_builtin_sym_end] = ACTIONS(3991), + [sym_identifier] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_cimport] = ACTIONS(3989), + [anon_sym_from] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_print] = ACTIONS(3989), + [anon_sym_assert] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_del] = ACTIONS(3989), + [anon_sym_raise] = ACTIONS(3989), + [anon_sym_pass] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_match] = ACTIONS(3989), + [anon_sym_async] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_with] = ACTIONS(3989), + [anon_sym_def] = ACTIONS(3989), + [anon_sym_global] = ACTIONS(3989), + [anon_sym_nonlocal] = ACTIONS(3989), + [anon_sym_exec] = ACTIONS(3989), + [anon_sym_type] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3991), + [anon_sym_AT] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(3991), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_AMP] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_lambda] = ACTIONS(3989), + [anon_sym_yield] = ACTIONS(3989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3991), + [anon_sym_None] = ACTIONS(3989), + [anon_sym_0x] = ACTIONS(3991), + [anon_sym_0X] = ACTIONS(3991), + [anon_sym_0o] = ACTIONS(3991), + [anon_sym_0O] = ACTIONS(3991), + [anon_sym_0b] = ACTIONS(3991), + [anon_sym_0B] = ACTIONS(3991), + [aux_sym_integer_token4] = ACTIONS(3989), + [sym_float] = ACTIONS(3991), + [anon_sym_await] = ACTIONS(3989), + [anon_sym_api] = ACTIONS(3989), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3989), + [anon_sym_include] = ACTIONS(3989), + [anon_sym_DEF] = ACTIONS(3989), + [anon_sym_IF] = ACTIONS(3989), + [anon_sym_cdef] = ACTIONS(3989), + [anon_sym_cpdef] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_ctypedef] = ACTIONS(3989), + [anon_sym_public] = ACTIONS(3989), + [anon_sym_packed] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym_readonly] = ACTIONS(3989), + [anon_sym_sizeof] = ACTIONS(3989), + [sym_string_start] = ACTIONS(3991), }, - [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), + [2104] = { + [ts_builtin_sym_end] = ACTIONS(4007), + [sym_identifier] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_cimport] = ACTIONS(4005), + [anon_sym_from] = ACTIONS(4005), + [anon_sym_LPAREN] = ACTIONS(4007), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_print] = ACTIONS(4005), + [anon_sym_assert] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_del] = ACTIONS(4005), + [anon_sym_raise] = ACTIONS(4005), + [anon_sym_pass] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_match] = ACTIONS(4005), + [anon_sym_async] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_with] = ACTIONS(4005), + [anon_sym_def] = ACTIONS(4005), + [anon_sym_global] = ACTIONS(4005), + [anon_sym_nonlocal] = ACTIONS(4005), + [anon_sym_exec] = ACTIONS(4005), + [anon_sym_type] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4007), + [anon_sym_AT] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4007), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_PLUS] = ACTIONS(4007), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_LT] = ACTIONS(4007), + [anon_sym_lambda] = ACTIONS(4005), + [anon_sym_yield] = ACTIONS(4005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4007), + [anon_sym_None] = ACTIONS(4005), + [anon_sym_0x] = ACTIONS(4007), + [anon_sym_0X] = ACTIONS(4007), + [anon_sym_0o] = ACTIONS(4007), + [anon_sym_0O] = ACTIONS(4007), + [anon_sym_0b] = ACTIONS(4007), + [anon_sym_0B] = ACTIONS(4007), + [aux_sym_integer_token4] = ACTIONS(4005), + [sym_float] = ACTIONS(4007), + [anon_sym_await] = ACTIONS(4005), + [anon_sym_api] = ACTIONS(4005), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4005), + [anon_sym_include] = ACTIONS(4005), + [anon_sym_DEF] = ACTIONS(4005), + [anon_sym_IF] = ACTIONS(4005), + [anon_sym_cdef] = ACTIONS(4005), + [anon_sym_cpdef] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_ctypedef] = ACTIONS(4005), + [anon_sym_public] = ACTIONS(4005), + [anon_sym_packed] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym_readonly] = ACTIONS(4005), + [anon_sym_sizeof] = ACTIONS(4005), + [sym_string_start] = ACTIONS(4007), }, - [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), + [2105] = { + [ts_builtin_sym_end] = ACTIONS(4015), + [sym_identifier] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_cimport] = ACTIONS(4013), + [anon_sym_from] = ACTIONS(4013), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_print] = ACTIONS(4013), + [anon_sym_assert] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_del] = ACTIONS(4013), + [anon_sym_raise] = ACTIONS(4013), + [anon_sym_pass] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_match] = ACTIONS(4013), + [anon_sym_async] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_with] = ACTIONS(4013), + [anon_sym_def] = ACTIONS(4013), + [anon_sym_global] = ACTIONS(4013), + [anon_sym_nonlocal] = ACTIONS(4013), + [anon_sym_exec] = ACTIONS(4013), + [anon_sym_type] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_AT] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4015), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_LT] = ACTIONS(4015), + [anon_sym_lambda] = ACTIONS(4013), + [anon_sym_yield] = ACTIONS(4013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4015), + [anon_sym_None] = ACTIONS(4013), + [anon_sym_0x] = ACTIONS(4015), + [anon_sym_0X] = ACTIONS(4015), + [anon_sym_0o] = ACTIONS(4015), + [anon_sym_0O] = ACTIONS(4015), + [anon_sym_0b] = ACTIONS(4015), + [anon_sym_0B] = ACTIONS(4015), + [aux_sym_integer_token4] = ACTIONS(4013), + [sym_float] = ACTIONS(4015), + [anon_sym_await] = ACTIONS(4013), + [anon_sym_api] = ACTIONS(4013), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4013), + [anon_sym_include] = ACTIONS(4013), + [anon_sym_DEF] = ACTIONS(4013), + [anon_sym_IF] = ACTIONS(4013), + [anon_sym_cdef] = ACTIONS(4013), + [anon_sym_cpdef] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_ctypedef] = ACTIONS(4013), + [anon_sym_public] = ACTIONS(4013), + [anon_sym_packed] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym_readonly] = ACTIONS(4013), + [anon_sym_sizeof] = ACTIONS(4013), + [sym_string_start] = ACTIONS(4015), }, - [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), + [2106] = { + [ts_builtin_sym_end] = ACTIONS(4109), + [sym_identifier] = ACTIONS(4111), + [anon_sym_import] = ACTIONS(4111), + [anon_sym_cimport] = ACTIONS(4111), + [anon_sym_from] = ACTIONS(4111), + [anon_sym_LPAREN] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_print] = ACTIONS(4111), + [anon_sym_assert] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_del] = ACTIONS(4111), + [anon_sym_raise] = ACTIONS(4111), + [anon_sym_pass] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_match] = ACTIONS(4111), + [anon_sym_async] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_with] = ACTIONS(4111), + [anon_sym_def] = ACTIONS(4111), + [anon_sym_global] = ACTIONS(4111), + [anon_sym_nonlocal] = ACTIONS(4111), + [anon_sym_exec] = ACTIONS(4111), + [anon_sym_type] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_AT] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_lambda] = ACTIONS(4111), + [anon_sym_yield] = ACTIONS(4111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4109), + [anon_sym_None] = ACTIONS(4111), + [anon_sym_0x] = ACTIONS(4109), + [anon_sym_0X] = ACTIONS(4109), + [anon_sym_0o] = ACTIONS(4109), + [anon_sym_0O] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(4109), + [anon_sym_0B] = ACTIONS(4109), + [aux_sym_integer_token4] = ACTIONS(4111), + [sym_float] = ACTIONS(4109), + [anon_sym_await] = ACTIONS(4111), + [anon_sym_api] = ACTIONS(4111), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4111), + [anon_sym_include] = ACTIONS(4111), + [anon_sym_DEF] = ACTIONS(4111), + [anon_sym_IF] = ACTIONS(4111), + [anon_sym_cdef] = ACTIONS(4111), + [anon_sym_cpdef] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_ctypedef] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_packed] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_readonly] = ACTIONS(4111), + [anon_sym_sizeof] = ACTIONS(4111), + [sym_string_start] = ACTIONS(4109), }, - [2064] = { + [2107] = { + [ts_builtin_sym_end] = ACTIONS(4113), + [sym_identifier] = ACTIONS(4115), + [anon_sym_import] = ACTIONS(4115), + [anon_sym_cimport] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_print] = ACTIONS(4115), + [anon_sym_assert] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_del] = ACTIONS(4115), + [anon_sym_raise] = ACTIONS(4115), + [anon_sym_pass] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_match] = ACTIONS(4115), + [anon_sym_async] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_with] = ACTIONS(4115), + [anon_sym_def] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_nonlocal] = ACTIONS(4115), + [anon_sym_exec] = ACTIONS(4115), + [anon_sym_type] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_lambda] = ACTIONS(4115), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4113), + [anon_sym_None] = ACTIONS(4115), + [anon_sym_0x] = ACTIONS(4113), + [anon_sym_0X] = ACTIONS(4113), + [anon_sym_0o] = ACTIONS(4113), + [anon_sym_0O] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(4113), + [anon_sym_0B] = ACTIONS(4113), + [aux_sym_integer_token4] = ACTIONS(4115), + [sym_float] = ACTIONS(4113), + [anon_sym_await] = ACTIONS(4115), + [anon_sym_api] = ACTIONS(4115), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4115), + [anon_sym_include] = ACTIONS(4115), + [anon_sym_DEF] = ACTIONS(4115), + [anon_sym_IF] = ACTIONS(4115), + [anon_sym_cdef] = ACTIONS(4115), + [anon_sym_cpdef] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_ctypedef] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_packed] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_readonly] = ACTIONS(4115), + [anon_sym_sizeof] = ACTIONS(4115), + [sym_string_start] = ACTIONS(4113), + }, + [2108] = { [ts_builtin_sym_end] = ACTIONS(4117), [sym_identifier] = ACTIONS(4119), [anon_sym_import] = ACTIONS(4119), @@ -211548,78 +213908,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2109] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [2066] = { + [2110] = { [ts_builtin_sym_end] = ACTIONS(4121), [sym_identifier] = ACTIONS(4123), [anon_sym_import] = ACTIONS(4123), @@ -211690,78 +214050,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2111] = { + [ts_builtin_sym_end] = ACTIONS(4125), + [sym_identifier] = ACTIONS(4127), + [anon_sym_import] = ACTIONS(4127), + [anon_sym_cimport] = ACTIONS(4127), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_print] = ACTIONS(4127), + [anon_sym_assert] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_del] = ACTIONS(4127), + [anon_sym_raise] = ACTIONS(4127), + [anon_sym_pass] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_match] = ACTIONS(4127), + [anon_sym_async] = ACTIONS(4127), + [anon_sym_for] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_with] = ACTIONS(4127), + [anon_sym_def] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_nonlocal] = ACTIONS(4127), + [anon_sym_exec] = ACTIONS(4127), + [anon_sym_type] = ACTIONS(4127), + [anon_sym_class] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4125), + [anon_sym_not] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_lambda] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4125), + [anon_sym_None] = ACTIONS(4127), + [anon_sym_0x] = ACTIONS(4125), + [anon_sym_0X] = ACTIONS(4125), + [anon_sym_0o] = ACTIONS(4125), + [anon_sym_0O] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(4125), + [anon_sym_0B] = ACTIONS(4125), + [aux_sym_integer_token4] = ACTIONS(4127), + [sym_float] = ACTIONS(4125), + [anon_sym_await] = ACTIONS(4127), + [anon_sym_api] = ACTIONS(4127), + [sym_true] = ACTIONS(4127), + [sym_false] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4127), + [anon_sym_include] = ACTIONS(4127), + [anon_sym_DEF] = ACTIONS(4127), + [anon_sym_IF] = ACTIONS(4127), + [anon_sym_cdef] = ACTIONS(4127), + [anon_sym_cpdef] = ACTIONS(4127), + [anon_sym_new] = ACTIONS(4127), + [anon_sym_ctypedef] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_packed] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_readonly] = ACTIONS(4127), + [anon_sym_sizeof] = ACTIONS(4127), + [sym_string_start] = ACTIONS(4125), }, - [2068] = { + [2112] = { + [ts_builtin_sym_end] = ACTIONS(3753), + [sym_identifier] = ACTIONS(3755), + [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), + }, + [2113] = { [ts_builtin_sym_end] = ACTIONS(4129), [sym_identifier] = ACTIONS(4131), [anon_sym_import] = ACTIONS(4131), @@ -211832,7 +214263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4131), [sym_string_start] = ACTIONS(4129), }, - [2069] = { + [2114] = { [ts_builtin_sym_end] = ACTIONS(4133), [sym_identifier] = ACTIONS(4135), [anon_sym_import] = ACTIONS(4135), @@ -211903,1072 +214334,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2115] = { + [ts_builtin_sym_end] = ACTIONS(4137), + [sym_identifier] = ACTIONS(4139), + [anon_sym_import] = ACTIONS(4139), + [anon_sym_cimport] = ACTIONS(4139), + [anon_sym_from] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_print] = ACTIONS(4139), + [anon_sym_assert] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_del] = ACTIONS(4139), + [anon_sym_raise] = ACTIONS(4139), + [anon_sym_pass] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_match] = ACTIONS(4139), + [anon_sym_async] = ACTIONS(4139), + [anon_sym_for] = ACTIONS(4139), + [anon_sym_while] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_with] = ACTIONS(4139), + [anon_sym_def] = ACTIONS(4139), + [anon_sym_global] = ACTIONS(4139), + [anon_sym_nonlocal] = ACTIONS(4139), + [anon_sym_exec] = ACTIONS(4139), + [anon_sym_type] = ACTIONS(4139), + [anon_sym_class] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_not] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4137), + [anon_sym_TILDE] = ACTIONS(4137), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_lambda] = ACTIONS(4139), + [anon_sym_yield] = ACTIONS(4139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_None] = ACTIONS(4139), + [anon_sym_0x] = ACTIONS(4137), + [anon_sym_0X] = ACTIONS(4137), + [anon_sym_0o] = ACTIONS(4137), + [anon_sym_0O] = ACTIONS(4137), + [anon_sym_0b] = ACTIONS(4137), + [anon_sym_0B] = ACTIONS(4137), + [aux_sym_integer_token4] = ACTIONS(4139), + [sym_float] = ACTIONS(4137), + [anon_sym_await] = ACTIONS(4139), + [anon_sym_api] = ACTIONS(4139), + [sym_true] = ACTIONS(4139), + [sym_false] = ACTIONS(4139), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4139), + [anon_sym_include] = ACTIONS(4139), + [anon_sym_DEF] = ACTIONS(4139), + [anon_sym_IF] = ACTIONS(4139), + [anon_sym_cdef] = ACTIONS(4139), + [anon_sym_cpdef] = ACTIONS(4139), + [anon_sym_new] = ACTIONS(4139), + [anon_sym_ctypedef] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_packed] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_readonly] = ACTIONS(4139), + [anon_sym_sizeof] = ACTIONS(4139), + [sym_string_start] = ACTIONS(4137), }, - [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), + [2116] = { + [ts_builtin_sym_end] = ACTIONS(4141), + [sym_identifier] = ACTIONS(4143), + [anon_sym_import] = ACTIONS(4143), + [anon_sym_cimport] = ACTIONS(4143), + [anon_sym_from] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_print] = ACTIONS(4143), + [anon_sym_assert] = ACTIONS(4143), + [anon_sym_return] = ACTIONS(4143), + [anon_sym_del] = ACTIONS(4143), + [anon_sym_raise] = ACTIONS(4143), + [anon_sym_pass] = ACTIONS(4143), + [anon_sym_break] = ACTIONS(4143), + [anon_sym_continue] = ACTIONS(4143), + [anon_sym_if] = ACTIONS(4143), + [anon_sym_match] = ACTIONS(4143), + [anon_sym_async] = ACTIONS(4143), + [anon_sym_for] = ACTIONS(4143), + [anon_sym_while] = ACTIONS(4143), + [anon_sym_try] = ACTIONS(4143), + [anon_sym_with] = ACTIONS(4143), + [anon_sym_def] = ACTIONS(4143), + [anon_sym_global] = ACTIONS(4143), + [anon_sym_nonlocal] = ACTIONS(4143), + [anon_sym_exec] = ACTIONS(4143), + [anon_sym_type] = ACTIONS(4143), + [anon_sym_class] = ACTIONS(4143), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4141), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4141), + [anon_sym_not] = ACTIONS(4143), + [anon_sym_AMP] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_LT] = ACTIONS(4141), + [anon_sym_lambda] = ACTIONS(4143), + [anon_sym_yield] = ACTIONS(4143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4141), + [anon_sym_None] = ACTIONS(4143), + [anon_sym_0x] = ACTIONS(4141), + [anon_sym_0X] = ACTIONS(4141), + [anon_sym_0o] = ACTIONS(4141), + [anon_sym_0O] = ACTIONS(4141), + [anon_sym_0b] = ACTIONS(4141), + [anon_sym_0B] = ACTIONS(4141), + [aux_sym_integer_token4] = ACTIONS(4143), + [sym_float] = ACTIONS(4141), + [anon_sym_await] = ACTIONS(4143), + [anon_sym_api] = ACTIONS(4143), + [sym_true] = ACTIONS(4143), + [sym_false] = ACTIONS(4143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4143), + [anon_sym_include] = ACTIONS(4143), + [anon_sym_DEF] = ACTIONS(4143), + [anon_sym_IF] = ACTIONS(4143), + [anon_sym_cdef] = ACTIONS(4143), + [anon_sym_cpdef] = ACTIONS(4143), + [anon_sym_new] = ACTIONS(4143), + [anon_sym_ctypedef] = ACTIONS(4143), + [anon_sym_public] = ACTIONS(4143), + [anon_sym_packed] = ACTIONS(4143), + [anon_sym_inline] = ACTIONS(4143), + [anon_sym_readonly] = ACTIONS(4143), + [anon_sym_sizeof] = ACTIONS(4143), + [sym_string_start] = ACTIONS(4141), }, - [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), + [2117] = { + [ts_builtin_sym_end] = ACTIONS(4145), + [sym_identifier] = ACTIONS(4147), + [anon_sym_import] = ACTIONS(4147), + [anon_sym_cimport] = ACTIONS(4147), + [anon_sym_from] = ACTIONS(4147), + [anon_sym_LPAREN] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_print] = ACTIONS(4147), + [anon_sym_assert] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_del] = ACTIONS(4147), + [anon_sym_raise] = ACTIONS(4147), + [anon_sym_pass] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_match] = ACTIONS(4147), + [anon_sym_async] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_with] = ACTIONS(4147), + [anon_sym_def] = ACTIONS(4147), + [anon_sym_global] = ACTIONS(4147), + [anon_sym_nonlocal] = ACTIONS(4147), + [anon_sym_exec] = ACTIONS(4147), + [anon_sym_type] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4145), + [anon_sym_AT] = ACTIONS(4145), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_not] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_TILDE] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_lambda] = ACTIONS(4147), + [anon_sym_yield] = ACTIONS(4147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4145), + [anon_sym_None] = ACTIONS(4147), + [anon_sym_0x] = ACTIONS(4145), + [anon_sym_0X] = ACTIONS(4145), + [anon_sym_0o] = ACTIONS(4145), + [anon_sym_0O] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(4145), + [anon_sym_0B] = ACTIONS(4145), + [aux_sym_integer_token4] = ACTIONS(4147), + [sym_float] = ACTIONS(4145), + [anon_sym_await] = ACTIONS(4147), + [anon_sym_api] = ACTIONS(4147), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4147), + [anon_sym_include] = ACTIONS(4147), + [anon_sym_DEF] = ACTIONS(4147), + [anon_sym_IF] = ACTIONS(4147), + [anon_sym_cdef] = ACTIONS(4147), + [anon_sym_cpdef] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_ctypedef] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_packed] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_readonly] = ACTIONS(4147), + [anon_sym_sizeof] = ACTIONS(4147), + [sym_string_start] = ACTIONS(4145), }, - [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), + [2118] = { + [ts_builtin_sym_end] = ACTIONS(4149), + [sym_identifier] = ACTIONS(4151), + [anon_sym_import] = ACTIONS(4151), + [anon_sym_cimport] = ACTIONS(4151), + [anon_sym_from] = ACTIONS(4151), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_assert] = ACTIONS(4151), + [anon_sym_return] = ACTIONS(4151), + [anon_sym_del] = ACTIONS(4151), + [anon_sym_raise] = ACTIONS(4151), + [anon_sym_pass] = ACTIONS(4151), + [anon_sym_break] = ACTIONS(4151), + [anon_sym_continue] = ACTIONS(4151), + [anon_sym_if] = ACTIONS(4151), + [anon_sym_match] = ACTIONS(4151), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_for] = ACTIONS(4151), + [anon_sym_while] = ACTIONS(4151), + [anon_sym_try] = ACTIONS(4151), + [anon_sym_with] = ACTIONS(4151), + [anon_sym_def] = ACTIONS(4151), + [anon_sym_global] = ACTIONS(4151), + [anon_sym_nonlocal] = ACTIONS(4151), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4151), + [anon_sym_class] = ACTIONS(4151), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_DASH] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4149), + [anon_sym_not] = ACTIONS(4151), + [anon_sym_AMP] = ACTIONS(4149), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4149), + [anon_sym_lambda] = ACTIONS(4151), + [anon_sym_yield] = ACTIONS(4151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4149), + [anon_sym_None] = ACTIONS(4151), + [anon_sym_0x] = ACTIONS(4149), + [anon_sym_0X] = ACTIONS(4149), + [anon_sym_0o] = ACTIONS(4149), + [anon_sym_0O] = ACTIONS(4149), + [anon_sym_0b] = ACTIONS(4149), + [anon_sym_0B] = ACTIONS(4149), + [aux_sym_integer_token4] = ACTIONS(4151), + [sym_float] = ACTIONS(4149), + [anon_sym_await] = ACTIONS(4151), + [anon_sym_api] = ACTIONS(4151), + [sym_true] = ACTIONS(4151), + [sym_false] = ACTIONS(4151), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4151), + [anon_sym_include] = ACTIONS(4151), + [anon_sym_DEF] = ACTIONS(4151), + [anon_sym_IF] = ACTIONS(4151), + [anon_sym_cdef] = ACTIONS(4151), + [anon_sym_cpdef] = ACTIONS(4151), + [anon_sym_new] = ACTIONS(4151), + [anon_sym_ctypedef] = ACTIONS(4151), + [anon_sym_public] = ACTIONS(4151), + [anon_sym_packed] = ACTIONS(4151), + [anon_sym_inline] = ACTIONS(4151), + [anon_sym_readonly] = ACTIONS(4151), + [anon_sym_sizeof] = ACTIONS(4151), + [sym_string_start] = ACTIONS(4149), }, - [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), + [2119] = { + [ts_builtin_sym_end] = ACTIONS(4153), + [sym_identifier] = ACTIONS(4155), + [anon_sym_import] = ACTIONS(4155), + [anon_sym_cimport] = ACTIONS(4155), + [anon_sym_from] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [anon_sym_print] = ACTIONS(4155), + [anon_sym_assert] = ACTIONS(4155), + [anon_sym_return] = ACTIONS(4155), + [anon_sym_del] = ACTIONS(4155), + [anon_sym_raise] = ACTIONS(4155), + [anon_sym_pass] = ACTIONS(4155), + [anon_sym_break] = ACTIONS(4155), + [anon_sym_continue] = ACTIONS(4155), + [anon_sym_if] = ACTIONS(4155), + [anon_sym_match] = ACTIONS(4155), + [anon_sym_async] = ACTIONS(4155), + [anon_sym_for] = ACTIONS(4155), + [anon_sym_while] = ACTIONS(4155), + [anon_sym_try] = ACTIONS(4155), + [anon_sym_with] = ACTIONS(4155), + [anon_sym_def] = ACTIONS(4155), + [anon_sym_global] = ACTIONS(4155), + [anon_sym_nonlocal] = ACTIONS(4155), + [anon_sym_exec] = ACTIONS(4155), + [anon_sym_type] = ACTIONS(4155), + [anon_sym_class] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4153), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_not] = ACTIONS(4155), + [anon_sym_AMP] = ACTIONS(4153), + [anon_sym_TILDE] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_lambda] = ACTIONS(4155), + [anon_sym_yield] = ACTIONS(4155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4153), + [anon_sym_None] = ACTIONS(4155), + [anon_sym_0x] = ACTIONS(4153), + [anon_sym_0X] = ACTIONS(4153), + [anon_sym_0o] = ACTIONS(4153), + [anon_sym_0O] = ACTIONS(4153), + [anon_sym_0b] = ACTIONS(4153), + [anon_sym_0B] = ACTIONS(4153), + [aux_sym_integer_token4] = ACTIONS(4155), + [sym_float] = ACTIONS(4153), + [anon_sym_await] = ACTIONS(4155), + [anon_sym_api] = ACTIONS(4155), + [sym_true] = ACTIONS(4155), + [sym_false] = ACTIONS(4155), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4155), + [anon_sym_include] = ACTIONS(4155), + [anon_sym_DEF] = ACTIONS(4155), + [anon_sym_IF] = ACTIONS(4155), + [anon_sym_cdef] = ACTIONS(4155), + [anon_sym_cpdef] = ACTIONS(4155), + [anon_sym_new] = ACTIONS(4155), + [anon_sym_ctypedef] = ACTIONS(4155), + [anon_sym_public] = ACTIONS(4155), + [anon_sym_packed] = ACTIONS(4155), + [anon_sym_inline] = ACTIONS(4155), + [anon_sym_readonly] = ACTIONS(4155), + [anon_sym_sizeof] = ACTIONS(4155), + [sym_string_start] = ACTIONS(4153), }, - [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), + [2120] = { + [ts_builtin_sym_end] = ACTIONS(4157), + [sym_identifier] = ACTIONS(4159), + [anon_sym_import] = ACTIONS(4159), + [anon_sym_cimport] = ACTIONS(4159), + [anon_sym_from] = ACTIONS(4159), + [anon_sym_LPAREN] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4157), + [anon_sym_print] = ACTIONS(4159), + [anon_sym_assert] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_del] = ACTIONS(4159), + [anon_sym_raise] = ACTIONS(4159), + [anon_sym_pass] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_match] = ACTIONS(4159), + [anon_sym_async] = ACTIONS(4159), + [anon_sym_for] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_with] = ACTIONS(4159), + [anon_sym_def] = ACTIONS(4159), + [anon_sym_global] = ACTIONS(4159), + [anon_sym_nonlocal] = ACTIONS(4159), + [anon_sym_exec] = ACTIONS(4159), + [anon_sym_type] = ACTIONS(4159), + [anon_sym_class] = ACTIONS(4159), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_AT] = ACTIONS(4157), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_not] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4157), + [anon_sym_LT] = ACTIONS(4157), + [anon_sym_lambda] = ACTIONS(4159), + [anon_sym_yield] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), + [anon_sym_None] = ACTIONS(4159), + [anon_sym_0x] = ACTIONS(4157), + [anon_sym_0X] = ACTIONS(4157), + [anon_sym_0o] = ACTIONS(4157), + [anon_sym_0O] = ACTIONS(4157), + [anon_sym_0b] = ACTIONS(4157), + [anon_sym_0B] = ACTIONS(4157), + [aux_sym_integer_token4] = ACTIONS(4159), + [sym_float] = ACTIONS(4157), + [anon_sym_await] = ACTIONS(4159), + [anon_sym_api] = ACTIONS(4159), + [sym_true] = ACTIONS(4159), + [sym_false] = ACTIONS(4159), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4159), + [anon_sym_include] = ACTIONS(4159), + [anon_sym_DEF] = ACTIONS(4159), + [anon_sym_IF] = ACTIONS(4159), + [anon_sym_cdef] = ACTIONS(4159), + [anon_sym_cpdef] = ACTIONS(4159), + [anon_sym_new] = ACTIONS(4159), + [anon_sym_ctypedef] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_packed] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_readonly] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4159), + [sym_string_start] = ACTIONS(4157), }, - [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), + [2121] = { + [ts_builtin_sym_end] = ACTIONS(3987), + [sym_identifier] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_cimport] = ACTIONS(3985), + [anon_sym_from] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_print] = ACTIONS(3985), + [anon_sym_assert] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_del] = ACTIONS(3985), + [anon_sym_raise] = ACTIONS(3985), + [anon_sym_pass] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_match] = ACTIONS(3985), + [anon_sym_async] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_with] = ACTIONS(3985), + [anon_sym_def] = ACTIONS(3985), + [anon_sym_global] = ACTIONS(3985), + [anon_sym_nonlocal] = ACTIONS(3985), + [anon_sym_exec] = ACTIONS(3985), + [anon_sym_type] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_AT] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_lambda] = ACTIONS(3985), + [anon_sym_yield] = ACTIONS(3985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3987), + [anon_sym_None] = ACTIONS(3985), + [anon_sym_0x] = ACTIONS(3987), + [anon_sym_0X] = ACTIONS(3987), + [anon_sym_0o] = ACTIONS(3987), + [anon_sym_0O] = ACTIONS(3987), + [anon_sym_0b] = ACTIONS(3987), + [anon_sym_0B] = ACTIONS(3987), + [aux_sym_integer_token4] = ACTIONS(3985), + [sym_float] = ACTIONS(3987), + [anon_sym_await] = ACTIONS(3985), + [anon_sym_api] = ACTIONS(3985), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3985), + [anon_sym_include] = ACTIONS(3985), + [anon_sym_DEF] = ACTIONS(3985), + [anon_sym_IF] = ACTIONS(3985), + [anon_sym_cdef] = ACTIONS(3985), + [anon_sym_cpdef] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_ctypedef] = ACTIONS(3985), + [anon_sym_public] = ACTIONS(3985), + [anon_sym_packed] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym_readonly] = ACTIONS(3985), + [anon_sym_sizeof] = ACTIONS(3985), + [sym_string_start] = ACTIONS(3987), }, - [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), + [2122] = { + [ts_builtin_sym_end] = ACTIONS(4161), + [sym_identifier] = ACTIONS(4163), + [anon_sym_import] = ACTIONS(4163), + [anon_sym_cimport] = ACTIONS(4163), + [anon_sym_from] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4161), + [anon_sym_print] = ACTIONS(4163), + [anon_sym_assert] = ACTIONS(4163), + [anon_sym_return] = ACTIONS(4163), + [anon_sym_del] = ACTIONS(4163), + [anon_sym_raise] = ACTIONS(4163), + [anon_sym_pass] = ACTIONS(4163), + [anon_sym_break] = ACTIONS(4163), + [anon_sym_continue] = ACTIONS(4163), + [anon_sym_if] = ACTIONS(4163), + [anon_sym_match] = ACTIONS(4163), + [anon_sym_async] = ACTIONS(4163), + [anon_sym_for] = ACTIONS(4163), + [anon_sym_while] = ACTIONS(4163), + [anon_sym_try] = ACTIONS(4163), + [anon_sym_with] = ACTIONS(4163), + [anon_sym_def] = ACTIONS(4163), + [anon_sym_global] = ACTIONS(4163), + [anon_sym_nonlocal] = ACTIONS(4163), + [anon_sym_exec] = ACTIONS(4163), + [anon_sym_type] = ACTIONS(4163), + [anon_sym_class] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4161), + [anon_sym_not] = ACTIONS(4163), + [anon_sym_AMP] = ACTIONS(4161), + [anon_sym_TILDE] = ACTIONS(4161), + [anon_sym_LT] = ACTIONS(4161), + [anon_sym_lambda] = ACTIONS(4163), + [anon_sym_yield] = ACTIONS(4163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_None] = ACTIONS(4163), + [anon_sym_0x] = ACTIONS(4161), + [anon_sym_0X] = ACTIONS(4161), + [anon_sym_0o] = ACTIONS(4161), + [anon_sym_0O] = ACTIONS(4161), + [anon_sym_0b] = ACTIONS(4161), + [anon_sym_0B] = ACTIONS(4161), + [aux_sym_integer_token4] = ACTIONS(4163), + [sym_float] = ACTIONS(4161), + [anon_sym_await] = ACTIONS(4163), + [anon_sym_api] = ACTIONS(4163), + [sym_true] = ACTIONS(4163), + [sym_false] = ACTIONS(4163), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4163), + [anon_sym_include] = ACTIONS(4163), + [anon_sym_DEF] = ACTIONS(4163), + [anon_sym_IF] = ACTIONS(4163), + [anon_sym_cdef] = ACTIONS(4163), + [anon_sym_cpdef] = ACTIONS(4163), + [anon_sym_new] = ACTIONS(4163), + [anon_sym_ctypedef] = ACTIONS(4163), + [anon_sym_public] = ACTIONS(4163), + [anon_sym_packed] = ACTIONS(4163), + [anon_sym_inline] = ACTIONS(4163), + [anon_sym_readonly] = ACTIONS(4163), + [anon_sym_sizeof] = ACTIONS(4163), + [sym_string_start] = ACTIONS(4161), }, - [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), + [2123] = { + [ts_builtin_sym_end] = ACTIONS(4165), + [sym_identifier] = ACTIONS(4167), + [anon_sym_import] = ACTIONS(4167), + [anon_sym_cimport] = ACTIONS(4167), + [anon_sym_from] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_assert] = ACTIONS(4167), + [anon_sym_return] = ACTIONS(4167), + [anon_sym_del] = ACTIONS(4167), + [anon_sym_raise] = ACTIONS(4167), + [anon_sym_pass] = ACTIONS(4167), + [anon_sym_break] = ACTIONS(4167), + [anon_sym_continue] = ACTIONS(4167), + [anon_sym_if] = ACTIONS(4167), + [anon_sym_match] = ACTIONS(4167), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_for] = ACTIONS(4167), + [anon_sym_while] = ACTIONS(4167), + [anon_sym_try] = ACTIONS(4167), + [anon_sym_with] = ACTIONS(4167), + [anon_sym_def] = ACTIONS(4167), + [anon_sym_global] = ACTIONS(4167), + [anon_sym_nonlocal] = ACTIONS(4167), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_not] = ACTIONS(4167), + [anon_sym_AMP] = ACTIONS(4165), + [anon_sym_TILDE] = ACTIONS(4165), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_lambda] = ACTIONS(4167), + [anon_sym_yield] = ACTIONS(4167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4165), + [anon_sym_None] = ACTIONS(4167), + [anon_sym_0x] = ACTIONS(4165), + [anon_sym_0X] = ACTIONS(4165), + [anon_sym_0o] = ACTIONS(4165), + [anon_sym_0O] = ACTIONS(4165), + [anon_sym_0b] = ACTIONS(4165), + [anon_sym_0B] = ACTIONS(4165), + [aux_sym_integer_token4] = ACTIONS(4167), + [sym_float] = ACTIONS(4165), + [anon_sym_await] = ACTIONS(4167), + [anon_sym_api] = ACTIONS(4167), + [sym_true] = ACTIONS(4167), + [sym_false] = ACTIONS(4167), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4167), + [anon_sym_include] = ACTIONS(4167), + [anon_sym_DEF] = ACTIONS(4167), + [anon_sym_IF] = ACTIONS(4167), + [anon_sym_cdef] = ACTIONS(4167), + [anon_sym_cpdef] = ACTIONS(4167), + [anon_sym_new] = ACTIONS(4167), + [anon_sym_ctypedef] = ACTIONS(4167), + [anon_sym_public] = ACTIONS(4167), + [anon_sym_packed] = ACTIONS(4167), + [anon_sym_inline] = ACTIONS(4167), + [anon_sym_readonly] = ACTIONS(4167), + [anon_sym_sizeof] = ACTIONS(4167), + [sym_string_start] = ACTIONS(4165), }, - [2085] = { + [2124] = { [ts_builtin_sym_end] = ACTIONS(4169), [sym_identifier] = ACTIONS(4171), [anon_sym_import] = ACTIONS(4171), @@ -213039,78 +215044,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2125] = { + [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), }, - [2087] = { + [2126] = { [ts_builtin_sym_end] = ACTIONS(4173), [sym_identifier] = ACTIONS(4175), [anon_sym_import] = ACTIONS(4175), @@ -213181,220 +215186,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2127] = { + [ts_builtin_sym_end] = ACTIONS(4177), + [sym_identifier] = ACTIONS(4179), + [anon_sym_import] = ACTIONS(4179), + [anon_sym_cimport] = ACTIONS(4179), + [anon_sym_from] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_STAR] = ACTIONS(4177), + [anon_sym_print] = ACTIONS(4179), + [anon_sym_assert] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_del] = ACTIONS(4179), + [anon_sym_raise] = ACTIONS(4179), + [anon_sym_pass] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_match] = ACTIONS(4179), + [anon_sym_async] = ACTIONS(4179), + [anon_sym_for] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_with] = ACTIONS(4179), + [anon_sym_def] = ACTIONS(4179), + [anon_sym_global] = ACTIONS(4179), + [anon_sym_nonlocal] = ACTIONS(4179), + [anon_sym_exec] = ACTIONS(4179), + [anon_sym_type] = ACTIONS(4179), + [anon_sym_class] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_AT] = ACTIONS(4177), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_PLUS] = ACTIONS(4177), + [anon_sym_not] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4177), + [anon_sym_TILDE] = ACTIONS(4177), + [anon_sym_LT] = ACTIONS(4177), + [anon_sym_lambda] = ACTIONS(4179), + [anon_sym_yield] = ACTIONS(4179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4177), + [anon_sym_None] = ACTIONS(4179), + [anon_sym_0x] = ACTIONS(4177), + [anon_sym_0X] = ACTIONS(4177), + [anon_sym_0o] = ACTIONS(4177), + [anon_sym_0O] = ACTIONS(4177), + [anon_sym_0b] = ACTIONS(4177), + [anon_sym_0B] = ACTIONS(4177), + [aux_sym_integer_token4] = ACTIONS(4179), + [sym_float] = ACTIONS(4177), + [anon_sym_await] = ACTIONS(4179), + [anon_sym_api] = ACTIONS(4179), + [sym_true] = ACTIONS(4179), + [sym_false] = ACTIONS(4179), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4179), + [anon_sym_include] = ACTIONS(4179), + [anon_sym_DEF] = ACTIONS(4179), + [anon_sym_IF] = ACTIONS(4179), + [anon_sym_cdef] = ACTIONS(4179), + [anon_sym_cpdef] = ACTIONS(4179), + [anon_sym_new] = ACTIONS(4179), + [anon_sym_ctypedef] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_packed] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_readonly] = ACTIONS(4179), + [anon_sym_sizeof] = ACTIONS(4179), + [sym_string_start] = ACTIONS(4177), }, - [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), + [2128] = { + [ts_builtin_sym_end] = ACTIONS(4181), + [sym_identifier] = ACTIONS(4183), + [anon_sym_import] = ACTIONS(4183), + [anon_sym_cimport] = ACTIONS(4183), + [anon_sym_from] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4181), + [anon_sym_print] = ACTIONS(4183), + [anon_sym_assert] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_del] = ACTIONS(4183), + [anon_sym_raise] = ACTIONS(4183), + [anon_sym_pass] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_match] = ACTIONS(4183), + [anon_sym_async] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_with] = ACTIONS(4183), + [anon_sym_def] = ACTIONS(4183), + [anon_sym_global] = ACTIONS(4183), + [anon_sym_nonlocal] = ACTIONS(4183), + [anon_sym_exec] = ACTIONS(4183), + [anon_sym_type] = ACTIONS(4183), + [anon_sym_class] = ACTIONS(4183), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_not] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_lambda] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [anon_sym_None] = ACTIONS(4183), + [anon_sym_0x] = ACTIONS(4181), + [anon_sym_0X] = ACTIONS(4181), + [anon_sym_0o] = ACTIONS(4181), + [anon_sym_0O] = ACTIONS(4181), + [anon_sym_0b] = ACTIONS(4181), + [anon_sym_0B] = ACTIONS(4181), + [aux_sym_integer_token4] = ACTIONS(4183), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4183), + [anon_sym_api] = ACTIONS(4183), + [sym_true] = ACTIONS(4183), + [sym_false] = ACTIONS(4183), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4183), + [anon_sym_include] = ACTIONS(4183), + [anon_sym_DEF] = ACTIONS(4183), + [anon_sym_IF] = ACTIONS(4183), + [anon_sym_cdef] = ACTIONS(4183), + [anon_sym_cpdef] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4183), + [anon_sym_ctypedef] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_packed] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_readonly] = ACTIONS(4183), + [anon_sym_sizeof] = ACTIONS(4183), + [sym_string_start] = ACTIONS(4181), }, - [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), + [2129] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1812), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [2091] = { + [2130] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2131] = { + [ts_builtin_sym_end] = ACTIONS(4185), + [sym_identifier] = ACTIONS(4187), + [anon_sym_import] = ACTIONS(4187), + [anon_sym_cimport] = ACTIONS(4187), + [anon_sym_from] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_print] = ACTIONS(4187), + [anon_sym_assert] = ACTIONS(4187), + [anon_sym_return] = ACTIONS(4187), + [anon_sym_del] = ACTIONS(4187), + [anon_sym_raise] = ACTIONS(4187), + [anon_sym_pass] = ACTIONS(4187), + [anon_sym_break] = ACTIONS(4187), + [anon_sym_continue] = ACTIONS(4187), + [anon_sym_if] = ACTIONS(4187), + [anon_sym_match] = ACTIONS(4187), + [anon_sym_async] = ACTIONS(4187), + [anon_sym_for] = ACTIONS(4187), + [anon_sym_while] = ACTIONS(4187), + [anon_sym_try] = ACTIONS(4187), + [anon_sym_with] = ACTIONS(4187), + [anon_sym_def] = ACTIONS(4187), + [anon_sym_global] = ACTIONS(4187), + [anon_sym_nonlocal] = ACTIONS(4187), + [anon_sym_exec] = ACTIONS(4187), + [anon_sym_type] = ACTIONS(4187), + [anon_sym_class] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_TILDE] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4185), + [anon_sym_lambda] = ACTIONS(4187), + [anon_sym_yield] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4185), + [anon_sym_None] = ACTIONS(4187), + [anon_sym_0x] = ACTIONS(4185), + [anon_sym_0X] = ACTIONS(4185), + [anon_sym_0o] = ACTIONS(4185), + [anon_sym_0O] = ACTIONS(4185), + [anon_sym_0b] = ACTIONS(4185), + [anon_sym_0B] = ACTIONS(4185), + [aux_sym_integer_token4] = ACTIONS(4187), + [sym_float] = ACTIONS(4185), + [anon_sym_await] = ACTIONS(4187), + [anon_sym_api] = ACTIONS(4187), + [sym_true] = ACTIONS(4187), + [sym_false] = ACTIONS(4187), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4187), + [anon_sym_include] = ACTIONS(4187), + [anon_sym_DEF] = ACTIONS(4187), + [anon_sym_IF] = ACTIONS(4187), + [anon_sym_cdef] = ACTIONS(4187), + [anon_sym_cpdef] = ACTIONS(4187), + [anon_sym_new] = ACTIONS(4187), + [anon_sym_ctypedef] = ACTIONS(4187), + [anon_sym_public] = ACTIONS(4187), + [anon_sym_packed] = ACTIONS(4187), + [anon_sym_inline] = ACTIONS(4187), + [anon_sym_readonly] = ACTIONS(4187), + [anon_sym_sizeof] = ACTIONS(4187), + [sym_string_start] = ACTIONS(4185), + }, + [2132] = { [sym_identifier] = ACTIONS(4051), [anon_sym_import] = ACTIONS(4051), [anon_sym_cimport] = ACTIONS(4051), @@ -213465,291 +215612,788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2133] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2134] = { + [ts_builtin_sym_end] = ACTIONS(4189), + [sym_identifier] = ACTIONS(4191), + [anon_sym_import] = ACTIONS(4191), + [anon_sym_cimport] = ACTIONS(4191), + [anon_sym_from] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_print] = ACTIONS(4191), + [anon_sym_assert] = ACTIONS(4191), + [anon_sym_return] = ACTIONS(4191), + [anon_sym_del] = ACTIONS(4191), + [anon_sym_raise] = ACTIONS(4191), + [anon_sym_pass] = ACTIONS(4191), + [anon_sym_break] = ACTIONS(4191), + [anon_sym_continue] = ACTIONS(4191), + [anon_sym_if] = ACTIONS(4191), + [anon_sym_match] = ACTIONS(4191), + [anon_sym_async] = ACTIONS(4191), + [anon_sym_for] = ACTIONS(4191), + [anon_sym_while] = ACTIONS(4191), + [anon_sym_try] = ACTIONS(4191), + [anon_sym_with] = ACTIONS(4191), + [anon_sym_def] = ACTIONS(4191), + [anon_sym_global] = ACTIONS(4191), + [anon_sym_nonlocal] = ACTIONS(4191), + [anon_sym_exec] = ACTIONS(4191), + [anon_sym_type] = ACTIONS(4191), + [anon_sym_class] = ACTIONS(4191), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4189), + [anon_sym_not] = ACTIONS(4191), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_lambda] = ACTIONS(4191), + [anon_sym_yield] = ACTIONS(4191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4189), + [anon_sym_None] = ACTIONS(4191), + [anon_sym_0x] = ACTIONS(4189), + [anon_sym_0X] = ACTIONS(4189), + [anon_sym_0o] = ACTIONS(4189), + [anon_sym_0O] = ACTIONS(4189), + [anon_sym_0b] = ACTIONS(4189), + [anon_sym_0B] = ACTIONS(4189), + [aux_sym_integer_token4] = ACTIONS(4191), + [sym_float] = ACTIONS(4189), + [anon_sym_await] = ACTIONS(4191), + [anon_sym_api] = ACTIONS(4191), + [sym_true] = ACTIONS(4191), + [sym_false] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4191), + [anon_sym_include] = ACTIONS(4191), + [anon_sym_DEF] = ACTIONS(4191), + [anon_sym_IF] = ACTIONS(4191), + [anon_sym_cdef] = ACTIONS(4191), + [anon_sym_cpdef] = ACTIONS(4191), + [anon_sym_new] = ACTIONS(4191), + [anon_sym_ctypedef] = ACTIONS(4191), + [anon_sym_public] = ACTIONS(4191), + [anon_sym_packed] = ACTIONS(4191), + [anon_sym_inline] = ACTIONS(4191), + [anon_sym_readonly] = ACTIONS(4191), + [anon_sym_sizeof] = ACTIONS(4191), + [sym_string_start] = ACTIONS(4189), + }, + [2135] = { + [sym_identifier] = ACTIONS(4151), + [anon_sym_import] = ACTIONS(4151), + [anon_sym_cimport] = ACTIONS(4151), + [anon_sym_from] = ACTIONS(4151), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_print] = ACTIONS(4151), + [anon_sym_assert] = ACTIONS(4151), + [anon_sym_return] = ACTIONS(4151), + [anon_sym_del] = ACTIONS(4151), + [anon_sym_raise] = ACTIONS(4151), + [anon_sym_pass] = ACTIONS(4151), + [anon_sym_break] = ACTIONS(4151), + [anon_sym_continue] = ACTIONS(4151), + [anon_sym_if] = ACTIONS(4151), + [anon_sym_match] = ACTIONS(4151), + [anon_sym_async] = ACTIONS(4151), + [anon_sym_for] = ACTIONS(4151), + [anon_sym_while] = ACTIONS(4151), + [anon_sym_try] = ACTIONS(4151), + [anon_sym_with] = ACTIONS(4151), + [anon_sym_def] = ACTIONS(4151), + [anon_sym_global] = ACTIONS(4151), + [anon_sym_nonlocal] = ACTIONS(4151), + [anon_sym_exec] = ACTIONS(4151), + [anon_sym_type] = ACTIONS(4151), + [anon_sym_class] = ACTIONS(4151), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_DASH] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4149), + [anon_sym_not] = ACTIONS(4151), + [anon_sym_AMP] = ACTIONS(4149), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_LT] = ACTIONS(4149), + [anon_sym_lambda] = ACTIONS(4151), + [anon_sym_yield] = ACTIONS(4151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4149), + [anon_sym_None] = ACTIONS(4151), + [anon_sym_0x] = ACTIONS(4149), + [anon_sym_0X] = ACTIONS(4149), + [anon_sym_0o] = ACTIONS(4149), + [anon_sym_0O] = ACTIONS(4149), + [anon_sym_0b] = ACTIONS(4149), + [anon_sym_0B] = ACTIONS(4149), + [aux_sym_integer_token4] = ACTIONS(4151), + [sym_float] = ACTIONS(4149), + [anon_sym_await] = ACTIONS(4151), + [anon_sym_api] = ACTIONS(4151), + [sym_true] = ACTIONS(4151), + [sym_false] = ACTIONS(4151), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4151), + [anon_sym_include] = ACTIONS(4151), + [anon_sym_DEF] = ACTIONS(4151), + [anon_sym_IF] = ACTIONS(4151), + [anon_sym_cdef] = ACTIONS(4151), + [anon_sym_cpdef] = ACTIONS(4151), + [anon_sym_new] = ACTIONS(4151), + [anon_sym_ctypedef] = ACTIONS(4151), + [anon_sym_public] = ACTIONS(4151), + [anon_sym_packed] = ACTIONS(4151), + [anon_sym_inline] = ACTIONS(4151), + [anon_sym_readonly] = ACTIONS(4151), + [anon_sym_sizeof] = ACTIONS(4151), + [sym__dedent] = ACTIONS(4149), + [sym_string_start] = ACTIONS(4149), + }, + [2136] = { + [ts_builtin_sym_end] = ACTIONS(4193), + [sym_identifier] = ACTIONS(4195), + [anon_sym_import] = ACTIONS(4195), + [anon_sym_cimport] = ACTIONS(4195), + [anon_sym_from] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_print] = ACTIONS(4195), + [anon_sym_assert] = ACTIONS(4195), + [anon_sym_return] = ACTIONS(4195), + [anon_sym_del] = ACTIONS(4195), + [anon_sym_raise] = ACTIONS(4195), + [anon_sym_pass] = ACTIONS(4195), + [anon_sym_break] = ACTIONS(4195), + [anon_sym_continue] = ACTIONS(4195), + [anon_sym_if] = ACTIONS(4195), + [anon_sym_match] = ACTIONS(4195), + [anon_sym_async] = ACTIONS(4195), + [anon_sym_for] = ACTIONS(4195), + [anon_sym_while] = ACTIONS(4195), + [anon_sym_try] = ACTIONS(4195), + [anon_sym_with] = ACTIONS(4195), + [anon_sym_def] = ACTIONS(4195), + [anon_sym_global] = ACTIONS(4195), + [anon_sym_nonlocal] = ACTIONS(4195), + [anon_sym_exec] = ACTIONS(4195), + [anon_sym_type] = ACTIONS(4195), + [anon_sym_class] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_not] = ACTIONS(4195), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_lambda] = ACTIONS(4195), + [anon_sym_yield] = ACTIONS(4195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [anon_sym_None] = ACTIONS(4195), + [anon_sym_0x] = ACTIONS(4193), + [anon_sym_0X] = ACTIONS(4193), + [anon_sym_0o] = ACTIONS(4193), + [anon_sym_0O] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(4193), + [anon_sym_0B] = ACTIONS(4193), + [aux_sym_integer_token4] = ACTIONS(4195), + [sym_float] = ACTIONS(4193), + [anon_sym_await] = ACTIONS(4195), + [anon_sym_api] = ACTIONS(4195), + [sym_true] = ACTIONS(4195), + [sym_false] = ACTIONS(4195), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4195), + [anon_sym_include] = ACTIONS(4195), + [anon_sym_DEF] = ACTIONS(4195), + [anon_sym_IF] = ACTIONS(4195), + [anon_sym_cdef] = ACTIONS(4195), + [anon_sym_cpdef] = ACTIONS(4195), + [anon_sym_new] = ACTIONS(4195), + [anon_sym_ctypedef] = ACTIONS(4195), + [anon_sym_public] = ACTIONS(4195), + [anon_sym_packed] = ACTIONS(4195), + [anon_sym_inline] = ACTIONS(4195), + [anon_sym_readonly] = ACTIONS(4195), + [anon_sym_sizeof] = ACTIONS(4195), + [sym_string_start] = ACTIONS(4193), + }, + [2137] = { + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2315), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(2317), + }, + [2138] = { + [sym_identifier] = ACTIONS(3755), + [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(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), + [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), }, - [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), + [2139] = { + [ts_builtin_sym_end] = ACTIONS(4197), + [sym_identifier] = ACTIONS(4199), + [anon_sym_import] = ACTIONS(4199), + [anon_sym_cimport] = ACTIONS(4199), + [anon_sym_from] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_STAR] = ACTIONS(4197), + [anon_sym_print] = ACTIONS(4199), + [anon_sym_assert] = ACTIONS(4199), + [anon_sym_return] = ACTIONS(4199), + [anon_sym_del] = ACTIONS(4199), + [anon_sym_raise] = ACTIONS(4199), + [anon_sym_pass] = ACTIONS(4199), + [anon_sym_break] = ACTIONS(4199), + [anon_sym_continue] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4199), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4199), + [anon_sym_for] = ACTIONS(4199), + [anon_sym_while] = ACTIONS(4199), + [anon_sym_try] = ACTIONS(4199), + [anon_sym_with] = ACTIONS(4199), + [anon_sym_def] = ACTIONS(4199), + [anon_sym_global] = ACTIONS(4199), + [anon_sym_nonlocal] = ACTIONS(4199), + [anon_sym_exec] = ACTIONS(4199), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_class] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_AT] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_not] = ACTIONS(4199), + [anon_sym_AMP] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4197), + [anon_sym_lambda] = ACTIONS(4199), + [anon_sym_yield] = ACTIONS(4199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [anon_sym_None] = ACTIONS(4199), + [anon_sym_0x] = ACTIONS(4197), + [anon_sym_0X] = ACTIONS(4197), + [anon_sym_0o] = ACTIONS(4197), + [anon_sym_0O] = ACTIONS(4197), + [anon_sym_0b] = ACTIONS(4197), + [anon_sym_0B] = ACTIONS(4197), + [aux_sym_integer_token4] = ACTIONS(4199), + [sym_float] = ACTIONS(4197), + [anon_sym_await] = ACTIONS(4199), + [anon_sym_api] = ACTIONS(4199), + [sym_true] = ACTIONS(4199), + [sym_false] = ACTIONS(4199), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4199), + [anon_sym_include] = ACTIONS(4199), + [anon_sym_DEF] = ACTIONS(4199), + [anon_sym_IF] = ACTIONS(4199), + [anon_sym_cdef] = ACTIONS(4199), + [anon_sym_cpdef] = ACTIONS(4199), + [anon_sym_new] = ACTIONS(4199), + [anon_sym_ctypedef] = ACTIONS(4199), + [anon_sym_public] = ACTIONS(4199), + [anon_sym_packed] = ACTIONS(4199), + [anon_sym_inline] = ACTIONS(4199), + [anon_sym_readonly] = ACTIONS(4199), + [anon_sym_sizeof] = ACTIONS(4199), + [sym_string_start] = ACTIONS(4197), + }, + [2140] = { + [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(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), + [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), }, - [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), + [2141] = { + [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(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), + [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), }, - [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), + [2142] = { + [ts_builtin_sym_end] = ACTIONS(4201), + [sym_identifier] = ACTIONS(4203), + [anon_sym_import] = ACTIONS(4203), + [anon_sym_cimport] = ACTIONS(4203), + [anon_sym_from] = ACTIONS(4203), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_STAR] = ACTIONS(4201), + [anon_sym_print] = ACTIONS(4203), + [anon_sym_assert] = ACTIONS(4203), + [anon_sym_return] = ACTIONS(4203), + [anon_sym_del] = ACTIONS(4203), + [anon_sym_raise] = ACTIONS(4203), + [anon_sym_pass] = ACTIONS(4203), + [anon_sym_break] = ACTIONS(4203), + [anon_sym_continue] = ACTIONS(4203), + [anon_sym_if] = ACTIONS(4203), + [anon_sym_match] = ACTIONS(4203), + [anon_sym_async] = ACTIONS(4203), + [anon_sym_for] = ACTIONS(4203), + [anon_sym_while] = ACTIONS(4203), + [anon_sym_try] = ACTIONS(4203), + [anon_sym_with] = ACTIONS(4203), + [anon_sym_def] = ACTIONS(4203), + [anon_sym_global] = ACTIONS(4203), + [anon_sym_nonlocal] = ACTIONS(4203), + [anon_sym_exec] = ACTIONS(4203), + [anon_sym_type] = ACTIONS(4203), + [anon_sym_class] = ACTIONS(4203), + [anon_sym_LBRACK] = ACTIONS(4201), + [anon_sym_AT] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_not] = ACTIONS(4203), + [anon_sym_AMP] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4201), + [anon_sym_lambda] = ACTIONS(4203), + [anon_sym_yield] = ACTIONS(4203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [anon_sym_None] = ACTIONS(4203), + [anon_sym_0x] = ACTIONS(4201), + [anon_sym_0X] = ACTIONS(4201), + [anon_sym_0o] = ACTIONS(4201), + [anon_sym_0O] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(4201), + [anon_sym_0B] = ACTIONS(4201), + [aux_sym_integer_token4] = ACTIONS(4203), + [sym_float] = ACTIONS(4201), + [anon_sym_await] = ACTIONS(4203), + [anon_sym_api] = ACTIONS(4203), + [sym_true] = ACTIONS(4203), + [sym_false] = ACTIONS(4203), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4203), + [anon_sym_include] = ACTIONS(4203), + [anon_sym_DEF] = ACTIONS(4203), + [anon_sym_IF] = ACTIONS(4203), + [anon_sym_cdef] = ACTIONS(4203), + [anon_sym_cpdef] = ACTIONS(4203), + [anon_sym_new] = ACTIONS(4203), + [anon_sym_ctypedef] = ACTIONS(4203), + [anon_sym_public] = ACTIONS(4203), + [anon_sym_packed] = ACTIONS(4203), + [anon_sym_inline] = ACTIONS(4203), + [anon_sym_readonly] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(4203), + [sym_string_start] = ACTIONS(4201), }, - [2096] = { + [2143] = { + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2255), + [anon_sym_0X] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0O] = ACTIONS(2255), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0B] = ACTIONS(2255), + [aux_sym_integer_token4] = ACTIONS(2257), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_IF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym__dedent] = ACTIONS(2255), + [sym_string_start] = ACTIONS(2255), + }, + [2144] = { [sym_identifier] = ACTIONS(4075), [anon_sym_import] = ACTIONS(4075), [anon_sym_cimport] = ACTIONS(4075), @@ -213820,1356 +216464,1001 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2145] = { + [sym_identifier] = ACTIONS(4107), + [anon_sym_import] = ACTIONS(4107), + [anon_sym_cimport] = ACTIONS(4107), + [anon_sym_from] = ACTIONS(4107), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_STAR] = ACTIONS(4105), + [anon_sym_print] = ACTIONS(4107), + [anon_sym_assert] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_del] = ACTIONS(4107), + [anon_sym_raise] = ACTIONS(4107), + [anon_sym_pass] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_match] = ACTIONS(4107), + [anon_sym_async] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_with] = ACTIONS(4107), + [anon_sym_def] = ACTIONS(4107), + [anon_sym_global] = ACTIONS(4107), + [anon_sym_nonlocal] = ACTIONS(4107), + [anon_sym_exec] = ACTIONS(4107), + [anon_sym_type] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_DASH] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4105), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4105), + [anon_sym_TILDE] = ACTIONS(4105), + [anon_sym_LT] = ACTIONS(4105), + [anon_sym_lambda] = ACTIONS(4107), + [anon_sym_yield] = ACTIONS(4107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4105), + [anon_sym_None] = ACTIONS(4107), + [anon_sym_0x] = ACTIONS(4105), + [anon_sym_0X] = ACTIONS(4105), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0O] = ACTIONS(4105), + [anon_sym_0b] = ACTIONS(4105), + [anon_sym_0B] = ACTIONS(4105), + [aux_sym_integer_token4] = ACTIONS(4107), + [sym_float] = ACTIONS(4105), + [anon_sym_await] = ACTIONS(4107), + [anon_sym_api] = ACTIONS(4107), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4107), + [anon_sym_include] = ACTIONS(4107), + [anon_sym_DEF] = ACTIONS(4107), + [anon_sym_IF] = ACTIONS(4107), + [anon_sym_cdef] = ACTIONS(4107), + [anon_sym_cpdef] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_ctypedef] = ACTIONS(4107), + [anon_sym_public] = ACTIONS(4107), + [anon_sym_packed] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym_readonly] = ACTIONS(4107), + [anon_sym_sizeof] = ACTIONS(4107), + [sym__dedent] = ACTIONS(4105), + [sym_string_start] = ACTIONS(4105), }, - [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), + [2146] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2981), + [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(2981), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_IF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym_string_start] = ACTIONS(2983), }, - [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), + [2147] = { + [sym_identifier] = ACTIONS(4159), + [anon_sym_import] = ACTIONS(4159), + [anon_sym_cimport] = ACTIONS(4159), + [anon_sym_from] = ACTIONS(4159), + [anon_sym_LPAREN] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4157), + [anon_sym_print] = ACTIONS(4159), + [anon_sym_assert] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_del] = ACTIONS(4159), + [anon_sym_raise] = ACTIONS(4159), + [anon_sym_pass] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_match] = ACTIONS(4159), + [anon_sym_async] = ACTIONS(4159), + [anon_sym_for] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_with] = ACTIONS(4159), + [anon_sym_def] = ACTIONS(4159), + [anon_sym_global] = ACTIONS(4159), + [anon_sym_nonlocal] = ACTIONS(4159), + [anon_sym_exec] = ACTIONS(4159), + [anon_sym_type] = ACTIONS(4159), + [anon_sym_class] = ACTIONS(4159), + [anon_sym_LBRACK] = ACTIONS(4157), + [anon_sym_AT] = ACTIONS(4157), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_not] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4157), + [anon_sym_LT] = ACTIONS(4157), + [anon_sym_lambda] = ACTIONS(4159), + [anon_sym_yield] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), + [anon_sym_None] = ACTIONS(4159), + [anon_sym_0x] = ACTIONS(4157), + [anon_sym_0X] = ACTIONS(4157), + [anon_sym_0o] = ACTIONS(4157), + [anon_sym_0O] = ACTIONS(4157), + [anon_sym_0b] = ACTIONS(4157), + [anon_sym_0B] = ACTIONS(4157), + [aux_sym_integer_token4] = ACTIONS(4159), + [sym_float] = ACTIONS(4157), + [anon_sym_await] = ACTIONS(4159), + [anon_sym_api] = ACTIONS(4159), + [sym_true] = ACTIONS(4159), + [sym_false] = ACTIONS(4159), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4159), + [anon_sym_include] = ACTIONS(4159), + [anon_sym_DEF] = ACTIONS(4159), + [anon_sym_IF] = ACTIONS(4159), + [anon_sym_cdef] = ACTIONS(4159), + [anon_sym_cpdef] = ACTIONS(4159), + [anon_sym_new] = ACTIONS(4159), + [anon_sym_ctypedef] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_packed] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_readonly] = ACTIONS(4159), + [anon_sym_sizeof] = ACTIONS(4159), + [sym__dedent] = ACTIONS(4157), + [sym_string_start] = ACTIONS(4157), }, - [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), + [2148] = { + [sym_identifier] = ACTIONS(4163), + [anon_sym_import] = ACTIONS(4163), + [anon_sym_cimport] = ACTIONS(4163), + [anon_sym_from] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4161), + [anon_sym_print] = ACTIONS(4163), + [anon_sym_assert] = ACTIONS(4163), + [anon_sym_return] = ACTIONS(4163), + [anon_sym_del] = ACTIONS(4163), + [anon_sym_raise] = ACTIONS(4163), + [anon_sym_pass] = ACTIONS(4163), + [anon_sym_break] = ACTIONS(4163), + [anon_sym_continue] = ACTIONS(4163), + [anon_sym_if] = ACTIONS(4163), + [anon_sym_match] = ACTIONS(4163), + [anon_sym_async] = ACTIONS(4163), + [anon_sym_for] = ACTIONS(4163), + [anon_sym_while] = ACTIONS(4163), + [anon_sym_try] = ACTIONS(4163), + [anon_sym_with] = ACTIONS(4163), + [anon_sym_def] = ACTIONS(4163), + [anon_sym_global] = ACTIONS(4163), + [anon_sym_nonlocal] = ACTIONS(4163), + [anon_sym_exec] = ACTIONS(4163), + [anon_sym_type] = ACTIONS(4163), + [anon_sym_class] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4161), + [anon_sym_not] = ACTIONS(4163), + [anon_sym_AMP] = ACTIONS(4161), + [anon_sym_TILDE] = ACTIONS(4161), + [anon_sym_LT] = ACTIONS(4161), + [anon_sym_lambda] = ACTIONS(4163), + [anon_sym_yield] = ACTIONS(4163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_None] = ACTIONS(4163), + [anon_sym_0x] = ACTIONS(4161), + [anon_sym_0X] = ACTIONS(4161), + [anon_sym_0o] = ACTIONS(4161), + [anon_sym_0O] = ACTIONS(4161), + [anon_sym_0b] = ACTIONS(4161), + [anon_sym_0B] = ACTIONS(4161), + [aux_sym_integer_token4] = ACTIONS(4163), + [sym_float] = ACTIONS(4161), + [anon_sym_await] = ACTIONS(4163), + [anon_sym_api] = ACTIONS(4163), + [sym_true] = ACTIONS(4163), + [sym_false] = ACTIONS(4163), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4163), + [anon_sym_include] = ACTIONS(4163), + [anon_sym_DEF] = ACTIONS(4163), + [anon_sym_IF] = ACTIONS(4163), + [anon_sym_cdef] = ACTIONS(4163), + [anon_sym_cpdef] = ACTIONS(4163), + [anon_sym_new] = ACTIONS(4163), + [anon_sym_ctypedef] = ACTIONS(4163), + [anon_sym_public] = ACTIONS(4163), + [anon_sym_packed] = ACTIONS(4163), + [anon_sym_inline] = ACTIONS(4163), + [anon_sym_readonly] = ACTIONS(4163), + [anon_sym_sizeof] = ACTIONS(4163), + [sym__dedent] = ACTIONS(4161), + [sym_string_start] = ACTIONS(4161), }, - [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), + [2149] = { + [sym_identifier] = ACTIONS(4167), + [anon_sym_import] = ACTIONS(4167), + [anon_sym_cimport] = ACTIONS(4167), + [anon_sym_from] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_print] = ACTIONS(4167), + [anon_sym_assert] = ACTIONS(4167), + [anon_sym_return] = ACTIONS(4167), + [anon_sym_del] = ACTIONS(4167), + [anon_sym_raise] = ACTIONS(4167), + [anon_sym_pass] = ACTIONS(4167), + [anon_sym_break] = ACTIONS(4167), + [anon_sym_continue] = ACTIONS(4167), + [anon_sym_if] = ACTIONS(4167), + [anon_sym_match] = ACTIONS(4167), + [anon_sym_async] = ACTIONS(4167), + [anon_sym_for] = ACTIONS(4167), + [anon_sym_while] = ACTIONS(4167), + [anon_sym_try] = ACTIONS(4167), + [anon_sym_with] = ACTIONS(4167), + [anon_sym_def] = ACTIONS(4167), + [anon_sym_global] = ACTIONS(4167), + [anon_sym_nonlocal] = ACTIONS(4167), + [anon_sym_exec] = ACTIONS(4167), + [anon_sym_type] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_not] = ACTIONS(4167), + [anon_sym_AMP] = ACTIONS(4165), + [anon_sym_TILDE] = ACTIONS(4165), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_lambda] = ACTIONS(4167), + [anon_sym_yield] = ACTIONS(4167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4165), + [anon_sym_None] = ACTIONS(4167), + [anon_sym_0x] = ACTIONS(4165), + [anon_sym_0X] = ACTIONS(4165), + [anon_sym_0o] = ACTIONS(4165), + [anon_sym_0O] = ACTIONS(4165), + [anon_sym_0b] = ACTIONS(4165), + [anon_sym_0B] = ACTIONS(4165), + [aux_sym_integer_token4] = ACTIONS(4167), + [sym_float] = ACTIONS(4165), + [anon_sym_await] = ACTIONS(4167), + [anon_sym_api] = ACTIONS(4167), + [sym_true] = ACTIONS(4167), + [sym_false] = ACTIONS(4167), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4167), + [anon_sym_include] = ACTIONS(4167), + [anon_sym_DEF] = ACTIONS(4167), + [anon_sym_IF] = ACTIONS(4167), + [anon_sym_cdef] = ACTIONS(4167), + [anon_sym_cpdef] = ACTIONS(4167), + [anon_sym_new] = ACTIONS(4167), + [anon_sym_ctypedef] = ACTIONS(4167), + [anon_sym_public] = ACTIONS(4167), + [anon_sym_packed] = ACTIONS(4167), + [anon_sym_inline] = ACTIONS(4167), + [anon_sym_readonly] = ACTIONS(4167), + [anon_sym_sizeof] = ACTIONS(4167), + [sym__dedent] = ACTIONS(4165), + [sym_string_start] = ACTIONS(4165), }, - [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), + [2150] = { + [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(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), + [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), }, - [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), + [2151] = { + [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(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), + [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), }, - [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), + [2152] = { + [sym_identifier] = ACTIONS(4179), + [anon_sym_import] = ACTIONS(4179), + [anon_sym_cimport] = ACTIONS(4179), + [anon_sym_from] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_STAR] = ACTIONS(4177), + [anon_sym_print] = ACTIONS(4179), + [anon_sym_assert] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4179), + [anon_sym_del] = ACTIONS(4179), + [anon_sym_raise] = ACTIONS(4179), + [anon_sym_pass] = ACTIONS(4179), + [anon_sym_break] = ACTIONS(4179), + [anon_sym_continue] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4179), + [anon_sym_match] = ACTIONS(4179), + [anon_sym_async] = ACTIONS(4179), + [anon_sym_for] = ACTIONS(4179), + [anon_sym_while] = ACTIONS(4179), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_with] = ACTIONS(4179), + [anon_sym_def] = ACTIONS(4179), + [anon_sym_global] = ACTIONS(4179), + [anon_sym_nonlocal] = ACTIONS(4179), + [anon_sym_exec] = ACTIONS(4179), + [anon_sym_type] = ACTIONS(4179), + [anon_sym_class] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_AT] = ACTIONS(4177), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_PLUS] = ACTIONS(4177), + [anon_sym_not] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4177), + [anon_sym_TILDE] = ACTIONS(4177), + [anon_sym_LT] = ACTIONS(4177), + [anon_sym_lambda] = ACTIONS(4179), + [anon_sym_yield] = ACTIONS(4179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4177), + [anon_sym_None] = ACTIONS(4179), + [anon_sym_0x] = ACTIONS(4177), + [anon_sym_0X] = ACTIONS(4177), + [anon_sym_0o] = ACTIONS(4177), + [anon_sym_0O] = ACTIONS(4177), + [anon_sym_0b] = ACTIONS(4177), + [anon_sym_0B] = ACTIONS(4177), + [aux_sym_integer_token4] = ACTIONS(4179), + [sym_float] = ACTIONS(4177), + [anon_sym_await] = ACTIONS(4179), + [anon_sym_api] = ACTIONS(4179), + [sym_true] = ACTIONS(4179), + [sym_false] = ACTIONS(4179), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4179), + [anon_sym_include] = ACTIONS(4179), + [anon_sym_DEF] = ACTIONS(4179), + [anon_sym_IF] = ACTIONS(4179), + [anon_sym_cdef] = ACTIONS(4179), + [anon_sym_cpdef] = ACTIONS(4179), + [anon_sym_new] = ACTIONS(4179), + [anon_sym_ctypedef] = ACTIONS(4179), + [anon_sym_public] = ACTIONS(4179), + [anon_sym_packed] = ACTIONS(4179), + [anon_sym_inline] = ACTIONS(4179), + [anon_sym_readonly] = ACTIONS(4179), + [anon_sym_sizeof] = ACTIONS(4179), + [sym__dedent] = ACTIONS(4177), + [sym_string_start] = ACTIONS(4177), }, - [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), + [2153] = { + [sym_identifier] = ACTIONS(4183), + [anon_sym_import] = ACTIONS(4183), + [anon_sym_cimport] = ACTIONS(4183), + [anon_sym_from] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4181), + [anon_sym_print] = ACTIONS(4183), + [anon_sym_assert] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4183), + [anon_sym_del] = ACTIONS(4183), + [anon_sym_raise] = ACTIONS(4183), + [anon_sym_pass] = ACTIONS(4183), + [anon_sym_break] = ACTIONS(4183), + [anon_sym_continue] = ACTIONS(4183), + [anon_sym_if] = ACTIONS(4183), + [anon_sym_match] = ACTIONS(4183), + [anon_sym_async] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4183), + [anon_sym_while] = ACTIONS(4183), + [anon_sym_try] = ACTIONS(4183), + [anon_sym_with] = ACTIONS(4183), + [anon_sym_def] = ACTIONS(4183), + [anon_sym_global] = ACTIONS(4183), + [anon_sym_nonlocal] = ACTIONS(4183), + [anon_sym_exec] = ACTIONS(4183), + [anon_sym_type] = ACTIONS(4183), + [anon_sym_class] = ACTIONS(4183), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_not] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4181), + [anon_sym_lambda] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [anon_sym_None] = ACTIONS(4183), + [anon_sym_0x] = ACTIONS(4181), + [anon_sym_0X] = ACTIONS(4181), + [anon_sym_0o] = ACTIONS(4181), + [anon_sym_0O] = ACTIONS(4181), + [anon_sym_0b] = ACTIONS(4181), + [anon_sym_0B] = ACTIONS(4181), + [aux_sym_integer_token4] = ACTIONS(4183), + [sym_float] = ACTIONS(4181), + [anon_sym_await] = ACTIONS(4183), + [anon_sym_api] = ACTIONS(4183), + [sym_true] = ACTIONS(4183), + [sym_false] = ACTIONS(4183), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4183), + [anon_sym_include] = ACTIONS(4183), + [anon_sym_DEF] = ACTIONS(4183), + [anon_sym_IF] = ACTIONS(4183), + [anon_sym_cdef] = ACTIONS(4183), + [anon_sym_cpdef] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4183), + [anon_sym_ctypedef] = ACTIONS(4183), + [anon_sym_public] = ACTIONS(4183), + [anon_sym_packed] = ACTIONS(4183), + [anon_sym_inline] = ACTIONS(4183), + [anon_sym_readonly] = ACTIONS(4183), + [anon_sym_sizeof] = ACTIONS(4183), + [sym__dedent] = ACTIONS(4181), + [sym_string_start] = ACTIONS(4181), }, - [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), + [2154] = { + [sym_identifier] = ACTIONS(4187), + [anon_sym_import] = ACTIONS(4187), + [anon_sym_cimport] = ACTIONS(4187), + [anon_sym_from] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_print] = ACTIONS(4187), + [anon_sym_assert] = ACTIONS(4187), + [anon_sym_return] = ACTIONS(4187), + [anon_sym_del] = ACTIONS(4187), + [anon_sym_raise] = ACTIONS(4187), + [anon_sym_pass] = ACTIONS(4187), + [anon_sym_break] = ACTIONS(4187), + [anon_sym_continue] = ACTIONS(4187), + [anon_sym_if] = ACTIONS(4187), + [anon_sym_match] = ACTIONS(4187), + [anon_sym_async] = ACTIONS(4187), + [anon_sym_for] = ACTIONS(4187), + [anon_sym_while] = ACTIONS(4187), + [anon_sym_try] = ACTIONS(4187), + [anon_sym_with] = ACTIONS(4187), + [anon_sym_def] = ACTIONS(4187), + [anon_sym_global] = ACTIONS(4187), + [anon_sym_nonlocal] = ACTIONS(4187), + [anon_sym_exec] = ACTIONS(4187), + [anon_sym_type] = ACTIONS(4187), + [anon_sym_class] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_TILDE] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4185), + [anon_sym_lambda] = ACTIONS(4187), + [anon_sym_yield] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4185), + [anon_sym_None] = ACTIONS(4187), + [anon_sym_0x] = ACTIONS(4185), + [anon_sym_0X] = ACTIONS(4185), + [anon_sym_0o] = ACTIONS(4185), + [anon_sym_0O] = ACTIONS(4185), + [anon_sym_0b] = ACTIONS(4185), + [anon_sym_0B] = ACTIONS(4185), + [aux_sym_integer_token4] = ACTIONS(4187), + [sym_float] = ACTIONS(4185), + [anon_sym_await] = ACTIONS(4187), + [anon_sym_api] = ACTIONS(4187), + [sym_true] = ACTIONS(4187), + [sym_false] = ACTIONS(4187), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4187), + [anon_sym_include] = ACTIONS(4187), + [anon_sym_DEF] = ACTIONS(4187), + [anon_sym_IF] = ACTIONS(4187), + [anon_sym_cdef] = ACTIONS(4187), + [anon_sym_cpdef] = ACTIONS(4187), + [anon_sym_new] = ACTIONS(4187), + [anon_sym_ctypedef] = ACTIONS(4187), + [anon_sym_public] = ACTIONS(4187), + [anon_sym_packed] = ACTIONS(4187), + [anon_sym_inline] = ACTIONS(4187), + [anon_sym_readonly] = ACTIONS(4187), + [anon_sym_sizeof] = ACTIONS(4187), + [sym__dedent] = ACTIONS(4185), + [sym_string_start] = ACTIONS(4185), }, - [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), + [2155] = { + [sym_identifier] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_cimport] = ACTIONS(2811), + [anon_sym_from] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_print] = ACTIONS(2811), + [anon_sym_assert] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_del] = ACTIONS(2811), + [anon_sym_raise] = ACTIONS(2811), + [anon_sym_pass] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_def] = ACTIONS(2811), + [anon_sym_global] = ACTIONS(2811), + [anon_sym_nonlocal] = ACTIONS(2811), + [anon_sym_exec] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_lambda] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), + [anon_sym_None] = ACTIONS(2811), + [anon_sym_0x] = ACTIONS(2809), + [anon_sym_0X] = ACTIONS(2809), + [anon_sym_0o] = ACTIONS(2809), + [anon_sym_0O] = ACTIONS(2809), + [anon_sym_0b] = ACTIONS(2809), + [anon_sym_0B] = ACTIONS(2809), + [aux_sym_integer_token4] = ACTIONS(2811), + [sym_float] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2811), + [anon_sym_include] = ACTIONS(2811), + [anon_sym_DEF] = ACTIONS(2811), + [anon_sym_IF] = ACTIONS(2811), + [anon_sym_cdef] = ACTIONS(2811), + [anon_sym_cpdef] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_ctypedef] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_packed] = ACTIONS(2811), + [anon_sym_inline] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2811), + [sym__dedent] = ACTIONS(2809), + [sym_string_start] = ACTIONS(2809), }, - [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), + [2156] = { + [sym_identifier] = ACTIONS(2315), + [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), + [anon_sym_0x] = ACTIONS(2317), + [anon_sym_0X] = ACTIONS(2317), + [anon_sym_0o] = ACTIONS(2317), + [anon_sym_0O] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2317), + [anon_sym_0B] = ACTIONS(2317), + [aux_sym_integer_token4] = 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_new] = ACTIONS(2315), + [anon_sym_ctypedef] = 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), }, - [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), + [2157] = { + [sym_identifier] = ACTIONS(4199), + [anon_sym_import] = ACTIONS(4199), + [anon_sym_cimport] = ACTIONS(4199), + [anon_sym_from] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_STAR] = ACTIONS(4197), + [anon_sym_print] = ACTIONS(4199), + [anon_sym_assert] = ACTIONS(4199), + [anon_sym_return] = ACTIONS(4199), + [anon_sym_del] = ACTIONS(4199), + [anon_sym_raise] = ACTIONS(4199), + [anon_sym_pass] = ACTIONS(4199), + [anon_sym_break] = ACTIONS(4199), + [anon_sym_continue] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4199), + [anon_sym_match] = ACTIONS(4199), + [anon_sym_async] = ACTIONS(4199), + [anon_sym_for] = ACTIONS(4199), + [anon_sym_while] = ACTIONS(4199), + [anon_sym_try] = ACTIONS(4199), + [anon_sym_with] = ACTIONS(4199), + [anon_sym_def] = ACTIONS(4199), + [anon_sym_global] = ACTIONS(4199), + [anon_sym_nonlocal] = ACTIONS(4199), + [anon_sym_exec] = ACTIONS(4199), + [anon_sym_type] = ACTIONS(4199), + [anon_sym_class] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_AT] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_not] = ACTIONS(4199), + [anon_sym_AMP] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4197), + [anon_sym_lambda] = ACTIONS(4199), + [anon_sym_yield] = ACTIONS(4199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [anon_sym_None] = ACTIONS(4199), + [anon_sym_0x] = ACTIONS(4197), + [anon_sym_0X] = ACTIONS(4197), + [anon_sym_0o] = ACTIONS(4197), + [anon_sym_0O] = ACTIONS(4197), + [anon_sym_0b] = ACTIONS(4197), + [anon_sym_0B] = ACTIONS(4197), + [aux_sym_integer_token4] = ACTIONS(4199), + [sym_float] = ACTIONS(4197), + [anon_sym_await] = ACTIONS(4199), + [anon_sym_api] = ACTIONS(4199), + [sym_true] = ACTIONS(4199), + [sym_false] = ACTIONS(4199), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4199), + [anon_sym_include] = ACTIONS(4199), + [anon_sym_DEF] = ACTIONS(4199), + [anon_sym_IF] = ACTIONS(4199), + [anon_sym_cdef] = ACTIONS(4199), + [anon_sym_cpdef] = ACTIONS(4199), + [anon_sym_new] = ACTIONS(4199), + [anon_sym_ctypedef] = ACTIONS(4199), + [anon_sym_public] = ACTIONS(4199), + [anon_sym_packed] = ACTIONS(4199), + [anon_sym_inline] = ACTIONS(4199), + [anon_sym_readonly] = ACTIONS(4199), + [anon_sym_sizeof] = ACTIONS(4199), + [sym__dedent] = ACTIONS(4197), + [sym_string_start] = ACTIONS(4197), }, - [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), + [2158] = { + [sym_identifier] = ACTIONS(4203), + [anon_sym_import] = ACTIONS(4203), + [anon_sym_cimport] = ACTIONS(4203), + [anon_sym_from] = ACTIONS(4203), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_STAR] = ACTIONS(4201), + [anon_sym_print] = ACTIONS(4203), + [anon_sym_assert] = ACTIONS(4203), + [anon_sym_return] = ACTIONS(4203), + [anon_sym_del] = ACTIONS(4203), + [anon_sym_raise] = ACTIONS(4203), + [anon_sym_pass] = ACTIONS(4203), + [anon_sym_break] = ACTIONS(4203), + [anon_sym_continue] = ACTIONS(4203), + [anon_sym_if] = ACTIONS(4203), + [anon_sym_match] = ACTIONS(4203), + [anon_sym_async] = ACTIONS(4203), + [anon_sym_for] = ACTIONS(4203), + [anon_sym_while] = ACTIONS(4203), + [anon_sym_try] = ACTIONS(4203), + [anon_sym_with] = ACTIONS(4203), + [anon_sym_def] = ACTIONS(4203), + [anon_sym_global] = ACTIONS(4203), + [anon_sym_nonlocal] = ACTIONS(4203), + [anon_sym_exec] = ACTIONS(4203), + [anon_sym_type] = ACTIONS(4203), + [anon_sym_class] = ACTIONS(4203), + [anon_sym_LBRACK] = ACTIONS(4201), + [anon_sym_AT] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_not] = ACTIONS(4203), + [anon_sym_AMP] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4201), + [anon_sym_lambda] = ACTIONS(4203), + [anon_sym_yield] = ACTIONS(4203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [anon_sym_None] = ACTIONS(4203), + [anon_sym_0x] = ACTIONS(4201), + [anon_sym_0X] = ACTIONS(4201), + [anon_sym_0o] = ACTIONS(4201), + [anon_sym_0O] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(4201), + [anon_sym_0B] = ACTIONS(4201), + [aux_sym_integer_token4] = ACTIONS(4203), + [sym_float] = ACTIONS(4201), + [anon_sym_await] = ACTIONS(4203), + [anon_sym_api] = ACTIONS(4203), + [sym_true] = ACTIONS(4203), + [sym_false] = ACTIONS(4203), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4203), + [anon_sym_include] = ACTIONS(4203), + [anon_sym_DEF] = ACTIONS(4203), + [anon_sym_IF] = ACTIONS(4203), + [anon_sym_cdef] = ACTIONS(4203), + [anon_sym_cpdef] = ACTIONS(4203), + [anon_sym_new] = ACTIONS(4203), + [anon_sym_ctypedef] = ACTIONS(4203), + [anon_sym_public] = ACTIONS(4203), + [anon_sym_packed] = ACTIONS(4203), + [anon_sym_inline] = ACTIONS(4203), + [anon_sym_readonly] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(4203), + [sym__dedent] = ACTIONS(4201), + [sym_string_start] = ACTIONS(4201), }, - [2116] = { + [2159] = { [sym_identifier] = ACTIONS(4205), [anon_sym_import] = ACTIONS(4205), [anon_sym_cimport] = ACTIONS(4205), @@ -215240,7 +217529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(4207), [sym_string_start] = ACTIONS(4207), }, - [2117] = { + [2160] = { [sym_identifier] = ACTIONS(4209), [anon_sym_import] = ACTIONS(4209), [anon_sym_cimport] = ACTIONS(4209), @@ -215311,7 +217600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(4211), [sym_string_start] = ACTIONS(4211), }, - [2118] = { + [2161] = { [sym_identifier] = ACTIONS(4213), [anon_sym_import] = ACTIONS(4213), [anon_sym_cimport] = ACTIONS(4213), @@ -215382,7 +217671,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(4215), [sym_string_start] = ACTIONS(4215), }, - [2119] = { + [2162] = { + [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), + }, + [2163] = { + [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), + }, + [2164] = { [sym_identifier] = ACTIONS(4217), [anon_sym_import] = ACTIONS(4217), [anon_sym_cimport] = ACTIONS(4217), @@ -215453,2066 +217884,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2165] = { + [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(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), + [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), }, - [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), + [2166] = { + [sym_identifier] = ACTIONS(4099), + [anon_sym_import] = ACTIONS(4099), + [anon_sym_cimport] = ACTIONS(4099), + [anon_sym_from] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_print] = ACTIONS(4099), + [anon_sym_assert] = ACTIONS(4099), + [anon_sym_return] = ACTIONS(4099), + [anon_sym_del] = ACTIONS(4099), + [anon_sym_raise] = ACTIONS(4099), + [anon_sym_pass] = ACTIONS(4099), + [anon_sym_break] = ACTIONS(4099), + [anon_sym_continue] = ACTIONS(4099), + [anon_sym_if] = ACTIONS(4099), + [anon_sym_match] = ACTIONS(4099), + [anon_sym_async] = ACTIONS(4099), + [anon_sym_for] = ACTIONS(4099), + [anon_sym_while] = ACTIONS(4099), + [anon_sym_try] = ACTIONS(4099), + [anon_sym_with] = ACTIONS(4099), + [anon_sym_def] = ACTIONS(4099), + [anon_sym_global] = ACTIONS(4099), + [anon_sym_nonlocal] = ACTIONS(4099), + [anon_sym_exec] = ACTIONS(4099), + [anon_sym_type] = ACTIONS(4099), + [anon_sym_class] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_not] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(4097), + [anon_sym_TILDE] = ACTIONS(4097), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_lambda] = ACTIONS(4099), + [anon_sym_yield] = ACTIONS(4099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4097), + [anon_sym_None] = ACTIONS(4099), + [anon_sym_0x] = ACTIONS(4097), + [anon_sym_0X] = ACTIONS(4097), + [anon_sym_0o] = ACTIONS(4097), + [anon_sym_0O] = ACTIONS(4097), + [anon_sym_0b] = ACTIONS(4097), + [anon_sym_0B] = ACTIONS(4097), + [aux_sym_integer_token4] = ACTIONS(4099), + [sym_float] = ACTIONS(4097), + [anon_sym_await] = ACTIONS(4099), + [anon_sym_api] = ACTIONS(4099), + [sym_true] = ACTIONS(4099), + [sym_false] = ACTIONS(4099), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4099), + [anon_sym_include] = ACTIONS(4099), + [anon_sym_DEF] = ACTIONS(4099), + [anon_sym_IF] = ACTIONS(4099), + [anon_sym_cdef] = ACTIONS(4099), + [anon_sym_cpdef] = ACTIONS(4099), + [anon_sym_new] = ACTIONS(4099), + [anon_sym_ctypedef] = ACTIONS(4099), + [anon_sym_public] = ACTIONS(4099), + [anon_sym_packed] = ACTIONS(4099), + [anon_sym_inline] = ACTIONS(4099), + [anon_sym_readonly] = ACTIONS(4099), + [anon_sym_sizeof] = ACTIONS(4099), + [sym__dedent] = ACTIONS(4097), + [sym_string_start] = ACTIONS(4097), }, - [2149] = { + [2167] = { [ts_builtin_sym_end] = ACTIONS(4215), [sym_identifier] = ACTIONS(4213), [anon_sym_import] = ACTIONS(4213), @@ -217583,505 +218097,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2168] = { + [sym_identifier] = ACTIONS(4111), + [anon_sym_import] = ACTIONS(4111), + [anon_sym_cimport] = ACTIONS(4111), + [anon_sym_from] = ACTIONS(4111), + [anon_sym_LPAREN] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_print] = ACTIONS(4111), + [anon_sym_assert] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_del] = ACTIONS(4111), + [anon_sym_raise] = ACTIONS(4111), + [anon_sym_pass] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_match] = ACTIONS(4111), + [anon_sym_async] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_with] = ACTIONS(4111), + [anon_sym_def] = ACTIONS(4111), + [anon_sym_global] = ACTIONS(4111), + [anon_sym_nonlocal] = ACTIONS(4111), + [anon_sym_exec] = ACTIONS(4111), + [anon_sym_type] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_AT] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_lambda] = ACTIONS(4111), + [anon_sym_yield] = ACTIONS(4111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4109), + [anon_sym_None] = ACTIONS(4111), + [anon_sym_0x] = ACTIONS(4109), + [anon_sym_0X] = ACTIONS(4109), + [anon_sym_0o] = ACTIONS(4109), + [anon_sym_0O] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(4109), + [anon_sym_0B] = ACTIONS(4109), + [aux_sym_integer_token4] = ACTIONS(4111), + [sym_float] = ACTIONS(4109), + [anon_sym_await] = ACTIONS(4111), + [anon_sym_api] = ACTIONS(4111), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4111), + [anon_sym_include] = ACTIONS(4111), + [anon_sym_DEF] = ACTIONS(4111), + [anon_sym_IF] = ACTIONS(4111), + [anon_sym_cdef] = ACTIONS(4111), + [anon_sym_cpdef] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_ctypedef] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_packed] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym_readonly] = ACTIONS(4111), + [anon_sym_sizeof] = ACTIONS(4111), + [sym__dedent] = ACTIONS(4109), + [sym_string_start] = ACTIONS(4109), }, - [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), + [2169] = { + [sym_identifier] = ACTIONS(4115), + [anon_sym_import] = ACTIONS(4115), + [anon_sym_cimport] = ACTIONS(4115), + [anon_sym_from] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_print] = ACTIONS(4115), + [anon_sym_assert] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_del] = ACTIONS(4115), + [anon_sym_raise] = ACTIONS(4115), + [anon_sym_pass] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_match] = ACTIONS(4115), + [anon_sym_async] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_with] = ACTIONS(4115), + [anon_sym_def] = ACTIONS(4115), + [anon_sym_global] = ACTIONS(4115), + [anon_sym_nonlocal] = ACTIONS(4115), + [anon_sym_exec] = ACTIONS(4115), + [anon_sym_type] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_lambda] = ACTIONS(4115), + [anon_sym_yield] = ACTIONS(4115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4113), + [anon_sym_None] = ACTIONS(4115), + [anon_sym_0x] = ACTIONS(4113), + [anon_sym_0X] = ACTIONS(4113), + [anon_sym_0o] = ACTIONS(4113), + [anon_sym_0O] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(4113), + [anon_sym_0B] = ACTIONS(4113), + [aux_sym_integer_token4] = ACTIONS(4115), + [sym_float] = ACTIONS(4113), + [anon_sym_await] = ACTIONS(4115), + [anon_sym_api] = ACTIONS(4115), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4115), + [anon_sym_include] = ACTIONS(4115), + [anon_sym_DEF] = ACTIONS(4115), + [anon_sym_IF] = ACTIONS(4115), + [anon_sym_cdef] = ACTIONS(4115), + [anon_sym_cpdef] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_ctypedef] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_packed] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym_readonly] = ACTIONS(4115), + [anon_sym_sizeof] = ACTIONS(4115), + [sym__dedent] = ACTIONS(4113), + [sym_string_start] = ACTIONS(4113), }, - [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), + [2170] = { + [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(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), + [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), }, - [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), + [2171] = { + [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(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), + [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), }, - [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), + [2172] = { + [sym_identifier] = ACTIONS(4127), + [anon_sym_import] = ACTIONS(4127), + [anon_sym_cimport] = ACTIONS(4127), + [anon_sym_from] = ACTIONS(4127), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_print] = ACTIONS(4127), + [anon_sym_assert] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_del] = ACTIONS(4127), + [anon_sym_raise] = ACTIONS(4127), + [anon_sym_pass] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_match] = ACTIONS(4127), + [anon_sym_async] = ACTIONS(4127), + [anon_sym_for] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_with] = ACTIONS(4127), + [anon_sym_def] = ACTIONS(4127), + [anon_sym_global] = ACTIONS(4127), + [anon_sym_nonlocal] = ACTIONS(4127), + [anon_sym_exec] = ACTIONS(4127), + [anon_sym_type] = ACTIONS(4127), + [anon_sym_class] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4125), + [anon_sym_not] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4125), + [anon_sym_lambda] = ACTIONS(4127), + [anon_sym_yield] = ACTIONS(4127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4125), + [anon_sym_None] = ACTIONS(4127), + [anon_sym_0x] = ACTIONS(4125), + [anon_sym_0X] = ACTIONS(4125), + [anon_sym_0o] = ACTIONS(4125), + [anon_sym_0O] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(4125), + [anon_sym_0B] = ACTIONS(4125), + [aux_sym_integer_token4] = ACTIONS(4127), + [sym_float] = ACTIONS(4125), + [anon_sym_await] = ACTIONS(4127), + [anon_sym_api] = ACTIONS(4127), + [sym_true] = ACTIONS(4127), + [sym_false] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4127), + [anon_sym_include] = ACTIONS(4127), + [anon_sym_DEF] = ACTIONS(4127), + [anon_sym_IF] = ACTIONS(4127), + [anon_sym_cdef] = ACTIONS(4127), + [anon_sym_cpdef] = ACTIONS(4127), + [anon_sym_new] = ACTIONS(4127), + [anon_sym_ctypedef] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_packed] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_readonly] = ACTIONS(4127), + [anon_sym_sizeof] = ACTIONS(4127), + [sym__dedent] = ACTIONS(4125), + [sym_string_start] = ACTIONS(4125), + }, + [2173] = { + [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(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), + [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), }, - [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), + [2174] = { + [sym_identifier] = ACTIONS(4155), + [anon_sym_import] = ACTIONS(4155), + [anon_sym_cimport] = ACTIONS(4155), + [anon_sym_from] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [anon_sym_print] = ACTIONS(4155), + [anon_sym_assert] = ACTIONS(4155), + [anon_sym_return] = ACTIONS(4155), + [anon_sym_del] = ACTIONS(4155), + [anon_sym_raise] = ACTIONS(4155), + [anon_sym_pass] = ACTIONS(4155), + [anon_sym_break] = ACTIONS(4155), + [anon_sym_continue] = ACTIONS(4155), + [anon_sym_if] = ACTIONS(4155), + [anon_sym_match] = ACTIONS(4155), + [anon_sym_async] = ACTIONS(4155), + [anon_sym_for] = ACTIONS(4155), + [anon_sym_while] = ACTIONS(4155), + [anon_sym_try] = ACTIONS(4155), + [anon_sym_with] = ACTIONS(4155), + [anon_sym_def] = ACTIONS(4155), + [anon_sym_global] = ACTIONS(4155), + [anon_sym_nonlocal] = ACTIONS(4155), + [anon_sym_exec] = ACTIONS(4155), + [anon_sym_type] = ACTIONS(4155), + [anon_sym_class] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4153), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_not] = ACTIONS(4155), + [anon_sym_AMP] = ACTIONS(4153), + [anon_sym_TILDE] = ACTIONS(4153), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_lambda] = ACTIONS(4155), + [anon_sym_yield] = ACTIONS(4155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4153), + [anon_sym_None] = ACTIONS(4155), + [anon_sym_0x] = ACTIONS(4153), + [anon_sym_0X] = ACTIONS(4153), + [anon_sym_0o] = ACTIONS(4153), + [anon_sym_0O] = ACTIONS(4153), + [anon_sym_0b] = ACTIONS(4153), + [anon_sym_0B] = ACTIONS(4153), + [aux_sym_integer_token4] = ACTIONS(4155), + [sym_float] = ACTIONS(4153), + [anon_sym_await] = ACTIONS(4155), + [anon_sym_api] = ACTIONS(4155), + [sym_true] = ACTIONS(4155), + [sym_false] = ACTIONS(4155), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4155), + [anon_sym_include] = ACTIONS(4155), + [anon_sym_DEF] = ACTIONS(4155), + [anon_sym_IF] = ACTIONS(4155), + [anon_sym_cdef] = ACTIONS(4155), + [anon_sym_cpdef] = ACTIONS(4155), + [anon_sym_new] = ACTIONS(4155), + [anon_sym_ctypedef] = ACTIONS(4155), + [anon_sym_public] = ACTIONS(4155), + [anon_sym_packed] = ACTIONS(4155), + [anon_sym_inline] = ACTIONS(4155), + [anon_sym_readonly] = ACTIONS(4155), + [anon_sym_sizeof] = ACTIONS(4155), + [sym__dedent] = ACTIONS(4153), + [sym_string_start] = ACTIONS(4153), }, - [2157] = { - [ts_builtin_sym_end] = ACTIONS(4223), + [2175] = { + [sym_identifier] = ACTIONS(4191), + [anon_sym_import] = ACTIONS(4191), + [anon_sym_cimport] = ACTIONS(4191), + [anon_sym_from] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_print] = ACTIONS(4191), + [anon_sym_assert] = ACTIONS(4191), + [anon_sym_return] = ACTIONS(4191), + [anon_sym_del] = ACTIONS(4191), + [anon_sym_raise] = ACTIONS(4191), + [anon_sym_pass] = ACTIONS(4191), + [anon_sym_break] = ACTIONS(4191), + [anon_sym_continue] = ACTIONS(4191), + [anon_sym_if] = ACTIONS(4191), + [anon_sym_match] = ACTIONS(4191), + [anon_sym_async] = ACTIONS(4191), + [anon_sym_for] = ACTIONS(4191), + [anon_sym_while] = ACTIONS(4191), + [anon_sym_try] = ACTIONS(4191), + [anon_sym_with] = ACTIONS(4191), + [anon_sym_def] = ACTIONS(4191), + [anon_sym_global] = ACTIONS(4191), + [anon_sym_nonlocal] = ACTIONS(4191), + [anon_sym_exec] = ACTIONS(4191), + [anon_sym_type] = ACTIONS(4191), + [anon_sym_class] = ACTIONS(4191), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4189), + [anon_sym_not] = ACTIONS(4191), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_lambda] = ACTIONS(4191), + [anon_sym_yield] = ACTIONS(4191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4189), + [anon_sym_None] = ACTIONS(4191), + [anon_sym_0x] = ACTIONS(4189), + [anon_sym_0X] = ACTIONS(4189), + [anon_sym_0o] = ACTIONS(4189), + [anon_sym_0O] = ACTIONS(4189), + [anon_sym_0b] = ACTIONS(4189), + [anon_sym_0B] = ACTIONS(4189), + [aux_sym_integer_token4] = ACTIONS(4191), + [sym_float] = ACTIONS(4189), + [anon_sym_await] = ACTIONS(4191), + [anon_sym_api] = ACTIONS(4191), + [sym_true] = ACTIONS(4191), + [sym_false] = ACTIONS(4191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4191), + [anon_sym_include] = ACTIONS(4191), + [anon_sym_DEF] = ACTIONS(4191), + [anon_sym_IF] = ACTIONS(4191), + [anon_sym_cdef] = ACTIONS(4191), + [anon_sym_cpdef] = ACTIONS(4191), + [anon_sym_new] = ACTIONS(4191), + [anon_sym_ctypedef] = ACTIONS(4191), + [anon_sym_public] = ACTIONS(4191), + [anon_sym_packed] = ACTIONS(4191), + [anon_sym_inline] = ACTIONS(4191), + [anon_sym_readonly] = ACTIONS(4191), + [anon_sym_sizeof] = ACTIONS(4191), + [sym__dedent] = ACTIONS(4189), + [sym_string_start] = ACTIONS(4189), + }, + [2176] = { [sym_identifier] = ACTIONS(4221), [anon_sym_import] = ACTIONS(4221), [anon_sym_cimport] = ACTIONS(4221), @@ -218149,10 +218733,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(4221), [anon_sym_readonly] = ACTIONS(4221), [anon_sym_sizeof] = ACTIONS(4221), + [sym__dedent] = ACTIONS(4223), [sym_string_start] = ACTIONS(4223), }, - [2158] = { - [ts_builtin_sym_end] = ACTIONS(4227), + [2177] = { + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2981), + [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(2981), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_IF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2983), + }, + [2178] = { [sym_identifier] = ACTIONS(4225), [anon_sym_import] = ACTIONS(4225), [anon_sym_cimport] = ACTIONS(4225), @@ -218220,507 +218875,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(4225), [anon_sym_readonly] = ACTIONS(4225), [anon_sym_sizeof] = ACTIONS(4225), + [sym__dedent] = ACTIONS(4227), [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), + [2179] = { + [sym_identifier] = ACTIONS(4229), + [anon_sym_import] = ACTIONS(4229), + [anon_sym_cimport] = ACTIONS(4229), + [anon_sym_from] = ACTIONS(4229), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_print] = ACTIONS(4229), + [anon_sym_assert] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_del] = ACTIONS(4229), + [anon_sym_raise] = ACTIONS(4229), + [anon_sym_pass] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_match] = ACTIONS(4229), + [anon_sym_async] = ACTIONS(4229), + [anon_sym_for] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_with] = ACTIONS(4229), + [anon_sym_def] = ACTIONS(4229), + [anon_sym_global] = ACTIONS(4229), + [anon_sym_nonlocal] = ACTIONS(4229), + [anon_sym_exec] = ACTIONS(4229), + [anon_sym_type] = ACTIONS(4229), + [anon_sym_class] = ACTIONS(4229), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4231), + [anon_sym_lambda] = ACTIONS(4229), + [anon_sym_yield] = ACTIONS(4229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [anon_sym_None] = ACTIONS(4229), + [anon_sym_0x] = ACTIONS(4231), + [anon_sym_0X] = ACTIONS(4231), + [anon_sym_0o] = ACTIONS(4231), + [anon_sym_0O] = ACTIONS(4231), + [anon_sym_0b] = ACTIONS(4231), + [anon_sym_0B] = ACTIONS(4231), + [aux_sym_integer_token4] = ACTIONS(4229), + [sym_float] = ACTIONS(4231), + [anon_sym_await] = ACTIONS(4229), + [anon_sym_api] = ACTIONS(4229), + [sym_true] = ACTIONS(4229), + [sym_false] = ACTIONS(4229), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4229), + [anon_sym_include] = ACTIONS(4229), + [anon_sym_DEF] = ACTIONS(4229), + [anon_sym_IF] = ACTIONS(4229), + [anon_sym_cdef] = ACTIONS(4229), + [anon_sym_cpdef] = ACTIONS(4229), + [anon_sym_new] = ACTIONS(4229), + [anon_sym_ctypedef] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_packed] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_readonly] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4229), + [sym__dedent] = ACTIONS(4231), + [sym_string_start] = ACTIONS(4231), }, - [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), + [2180] = { + [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(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), + [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), }, - [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), + [2181] = { + [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(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), + [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), }, - [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), + [2182] = { + [sym_identifier] = ACTIONS(4195), + [anon_sym_import] = ACTIONS(4195), + [anon_sym_cimport] = ACTIONS(4195), + [anon_sym_from] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_print] = ACTIONS(4195), + [anon_sym_assert] = ACTIONS(4195), + [anon_sym_return] = ACTIONS(4195), + [anon_sym_del] = ACTIONS(4195), + [anon_sym_raise] = ACTIONS(4195), + [anon_sym_pass] = ACTIONS(4195), + [anon_sym_break] = ACTIONS(4195), + [anon_sym_continue] = ACTIONS(4195), + [anon_sym_if] = ACTIONS(4195), + [anon_sym_match] = ACTIONS(4195), + [anon_sym_async] = ACTIONS(4195), + [anon_sym_for] = ACTIONS(4195), + [anon_sym_while] = ACTIONS(4195), + [anon_sym_try] = ACTIONS(4195), + [anon_sym_with] = ACTIONS(4195), + [anon_sym_def] = ACTIONS(4195), + [anon_sym_global] = ACTIONS(4195), + [anon_sym_nonlocal] = ACTIONS(4195), + [anon_sym_exec] = ACTIONS(4195), + [anon_sym_type] = ACTIONS(4195), + [anon_sym_class] = ACTIONS(4195), + [anon_sym_LBRACK] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_not] = ACTIONS(4195), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4193), + [anon_sym_lambda] = ACTIONS(4195), + [anon_sym_yield] = ACTIONS(4195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [anon_sym_None] = ACTIONS(4195), + [anon_sym_0x] = ACTIONS(4193), + [anon_sym_0X] = ACTIONS(4193), + [anon_sym_0o] = ACTIONS(4193), + [anon_sym_0O] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(4193), + [anon_sym_0B] = ACTIONS(4193), + [aux_sym_integer_token4] = ACTIONS(4195), + [sym_float] = ACTIONS(4193), + [anon_sym_await] = ACTIONS(4195), + [anon_sym_api] = ACTIONS(4195), + [sym_true] = ACTIONS(4195), + [sym_false] = ACTIONS(4195), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4195), + [anon_sym_include] = ACTIONS(4195), + [anon_sym_DEF] = ACTIONS(4195), + [anon_sym_IF] = ACTIONS(4195), + [anon_sym_cdef] = ACTIONS(4195), + [anon_sym_cpdef] = ACTIONS(4195), + [anon_sym_new] = ACTIONS(4195), + [anon_sym_ctypedef] = ACTIONS(4195), + [anon_sym_public] = ACTIONS(4195), + [anon_sym_packed] = ACTIONS(4195), + [anon_sym_inline] = ACTIONS(4195), + [anon_sym_readonly] = ACTIONS(4195), + [anon_sym_sizeof] = ACTIONS(4195), + [sym__dedent] = ACTIONS(4193), + [sym_string_start] = ACTIONS(4193), }, - [2166] = { - [ts_builtin_sym_end] = ACTIONS(4235), + [2183] = { [sym_identifier] = ACTIONS(4233), [anon_sym_import] = ACTIONS(4233), [anon_sym_cimport] = ACTIONS(4233), @@ -218788,861 +219230,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(4233), [anon_sym_readonly] = ACTIONS(4233), [anon_sym_sizeof] = ACTIONS(4233), + [sym__dedent] = ACTIONS(4235), [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), + [2184] = { + [ts_builtin_sym_end] = ACTIONS(4231), + [sym_identifier] = ACTIONS(4229), + [anon_sym_import] = ACTIONS(4229), + [anon_sym_cimport] = ACTIONS(4229), + [anon_sym_from] = ACTIONS(4229), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_print] = ACTIONS(4229), + [anon_sym_assert] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_del] = ACTIONS(4229), + [anon_sym_raise] = ACTIONS(4229), + [anon_sym_pass] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_match] = ACTIONS(4229), + [anon_sym_async] = ACTIONS(4229), + [anon_sym_for] = ACTIONS(4229), + [anon_sym_while] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_with] = ACTIONS(4229), + [anon_sym_def] = ACTIONS(4229), + [anon_sym_global] = ACTIONS(4229), + [anon_sym_nonlocal] = ACTIONS(4229), + [anon_sym_exec] = ACTIONS(4229), + [anon_sym_type] = ACTIONS(4229), + [anon_sym_class] = ACTIONS(4229), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4231), + [anon_sym_lambda] = ACTIONS(4229), + [anon_sym_yield] = ACTIONS(4229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [anon_sym_None] = ACTIONS(4229), + [anon_sym_0x] = ACTIONS(4231), + [anon_sym_0X] = ACTIONS(4231), + [anon_sym_0o] = ACTIONS(4231), + [anon_sym_0O] = ACTIONS(4231), + [anon_sym_0b] = ACTIONS(4231), + [anon_sym_0B] = ACTIONS(4231), + [aux_sym_integer_token4] = ACTIONS(4229), + [sym_float] = ACTIONS(4231), + [anon_sym_await] = ACTIONS(4229), + [anon_sym_api] = ACTIONS(4229), + [sym_true] = ACTIONS(4229), + [sym_false] = ACTIONS(4229), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4229), + [anon_sym_include] = ACTIONS(4229), + [anon_sym_DEF] = ACTIONS(4229), + [anon_sym_IF] = ACTIONS(4229), + [anon_sym_cdef] = ACTIONS(4229), + [anon_sym_cpdef] = ACTIONS(4229), + [anon_sym_new] = ACTIONS(4229), + [anon_sym_ctypedef] = ACTIONS(4229), + [anon_sym_public] = ACTIONS(4229), + [anon_sym_packed] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym_readonly] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4229), + [sym_string_start] = ACTIONS(4231), }, - [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), + [2185] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), }, - [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), + [2186] = { + [sym_identifier] = ACTIONS(3963), + [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), }, - [2179] = { + [2187] = { [sym_identifier] = ACTIONS(3967), [anon_sym_import] = ACTIONS(3967), [anon_sym_cimport] = ACTIONS(3967), @@ -219713,934 +219517,11172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2188] = { + [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), }, - [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), + [2189] = { + [sym_identifier] = ACTIONS(4139), + [anon_sym_import] = ACTIONS(4139), + [anon_sym_cimport] = ACTIONS(4139), + [anon_sym_from] = ACTIONS(4139), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_print] = ACTIONS(4139), + [anon_sym_assert] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_del] = ACTIONS(4139), + [anon_sym_raise] = ACTIONS(4139), + [anon_sym_pass] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_match] = ACTIONS(4139), + [anon_sym_async] = ACTIONS(4139), + [anon_sym_for] = ACTIONS(4139), + [anon_sym_while] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_with] = ACTIONS(4139), + [anon_sym_def] = ACTIONS(4139), + [anon_sym_global] = ACTIONS(4139), + [anon_sym_nonlocal] = ACTIONS(4139), + [anon_sym_exec] = ACTIONS(4139), + [anon_sym_type] = ACTIONS(4139), + [anon_sym_class] = ACTIONS(4139), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_not] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4137), + [anon_sym_TILDE] = ACTIONS(4137), + [anon_sym_LT] = ACTIONS(4137), + [anon_sym_lambda] = ACTIONS(4139), + [anon_sym_yield] = ACTIONS(4139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_None] = ACTIONS(4139), + [anon_sym_0x] = ACTIONS(4137), + [anon_sym_0X] = ACTIONS(4137), + [anon_sym_0o] = ACTIONS(4137), + [anon_sym_0O] = ACTIONS(4137), + [anon_sym_0b] = ACTIONS(4137), + [anon_sym_0B] = ACTIONS(4137), + [aux_sym_integer_token4] = ACTIONS(4139), + [sym_float] = ACTIONS(4137), + [anon_sym_await] = ACTIONS(4139), + [anon_sym_api] = ACTIONS(4139), + [sym_true] = ACTIONS(4139), + [sym_false] = ACTIONS(4139), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4139), + [anon_sym_include] = ACTIONS(4139), + [anon_sym_DEF] = ACTIONS(4139), + [anon_sym_IF] = ACTIONS(4139), + [anon_sym_cdef] = ACTIONS(4139), + [anon_sym_cpdef] = ACTIONS(4139), + [anon_sym_new] = ACTIONS(4139), + [anon_sym_ctypedef] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_packed] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_readonly] = ACTIONS(4139), + [anon_sym_sizeof] = ACTIONS(4139), + [sym__dedent] = ACTIONS(4137), + [sym_string_start] = ACTIONS(4137), }, - [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), + [2190] = { + [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(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), + [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), }, - [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), + [2191] = { + [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(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), + [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), }, - [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), + [2192] = { + [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(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), + [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), }, - [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), + [2193] = { + [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), }, - [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), + [2194] = { + [sym_list_splat_pattern] = STATE(3109), + [sym_primary_expression] = STATE(4309), + [sym_binary_operator] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_attribute] = STATE(3111), + [sym_subscript] = STATE(3111), + [sym_ellipsis] = STATE(3111), + [sym_call] = STATE(3111), + [sym_list] = STATE(3111), + [sym_set] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_dictionary] = STATE(3111), + [sym_list_comprehension] = STATE(3111), + [sym_dictionary_comprehension] = STATE(3111), + [sym_set_comprehension] = STATE(3111), + [sym_generator_expression] = STATE(3111), + [sym_parenthesized_expression] = STATE(3111), + [sym_concatenated_string] = STATE(3111), + [sym_string] = STATE(2663), + [sym_integer] = STATE(3111), + [sym_none] = STATE(3111), + [sym_await] = STATE(3111), + [sym_sizeof_expression] = STATE(3111), + [sym_cast_expression] = STATE(3111), + [aux_sym_integer_repeat4] = STATE(2566), + [sym_identifier] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_print] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_COLON] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_exec] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1566), + [anon_sym_0X] = ACTIONS(1566), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0O] = ACTIONS(1473), + [anon_sym_0b] = ACTIONS(1475), + [anon_sym_0B] = ACTIONS(1475), + [aux_sym_integer_token4] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_api] = ACTIONS(1558), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1489), + }, + [2195] = { + [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), }, - [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), + [2196] = { + [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), }, - [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), + [2197] = { + [sym_identifier] = ACTIONS(4143), + [anon_sym_import] = ACTIONS(4143), + [anon_sym_cimport] = ACTIONS(4143), + [anon_sym_from] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_print] = ACTIONS(4143), + [anon_sym_assert] = ACTIONS(4143), + [anon_sym_return] = ACTIONS(4143), + [anon_sym_del] = ACTIONS(4143), + [anon_sym_raise] = ACTIONS(4143), + [anon_sym_pass] = ACTIONS(4143), + [anon_sym_break] = ACTIONS(4143), + [anon_sym_continue] = ACTIONS(4143), + [anon_sym_if] = ACTIONS(4143), + [anon_sym_match] = ACTIONS(4143), + [anon_sym_async] = ACTIONS(4143), + [anon_sym_for] = ACTIONS(4143), + [anon_sym_while] = ACTIONS(4143), + [anon_sym_try] = ACTIONS(4143), + [anon_sym_with] = ACTIONS(4143), + [anon_sym_def] = ACTIONS(4143), + [anon_sym_global] = ACTIONS(4143), + [anon_sym_nonlocal] = ACTIONS(4143), + [anon_sym_exec] = ACTIONS(4143), + [anon_sym_type] = ACTIONS(4143), + [anon_sym_class] = ACTIONS(4143), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4141), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4141), + [anon_sym_not] = ACTIONS(4143), + [anon_sym_AMP] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_LT] = ACTIONS(4141), + [anon_sym_lambda] = ACTIONS(4143), + [anon_sym_yield] = ACTIONS(4143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4141), + [anon_sym_None] = ACTIONS(4143), + [anon_sym_0x] = ACTIONS(4141), + [anon_sym_0X] = ACTIONS(4141), + [anon_sym_0o] = ACTIONS(4141), + [anon_sym_0O] = ACTIONS(4141), + [anon_sym_0b] = ACTIONS(4141), + [anon_sym_0B] = ACTIONS(4141), + [aux_sym_integer_token4] = ACTIONS(4143), + [sym_float] = ACTIONS(4141), + [anon_sym_await] = ACTIONS(4143), + [anon_sym_api] = ACTIONS(4143), + [sym_true] = ACTIONS(4143), + [sym_false] = ACTIONS(4143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4143), + [anon_sym_include] = ACTIONS(4143), + [anon_sym_DEF] = ACTIONS(4143), + [anon_sym_IF] = ACTIONS(4143), + [anon_sym_cdef] = ACTIONS(4143), + [anon_sym_cpdef] = ACTIONS(4143), + [anon_sym_new] = ACTIONS(4143), + [anon_sym_ctypedef] = ACTIONS(4143), + [anon_sym_public] = ACTIONS(4143), + [anon_sym_packed] = ACTIONS(4143), + [anon_sym_inline] = ACTIONS(4143), + [anon_sym_readonly] = ACTIONS(4143), + [anon_sym_sizeof] = ACTIONS(4143), + [sym__dedent] = ACTIONS(4141), + [sym_string_start] = ACTIONS(4141), + }, + [2198] = { + [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), }, - [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), + [2199] = { + [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__dedent] = ACTIONS(3993), + [sym_string_start] = ACTIONS(3993), + }, + [2200] = { + [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), + }, + [2201] = { + [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), + }, + [2202] = { + [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), + }, + [2203] = { + [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), + }, + [2204] = { + [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), + }, + [2205] = { + [sym_identifier] = ACTIONS(4147), + [anon_sym_import] = ACTIONS(4147), + [anon_sym_cimport] = ACTIONS(4147), + [anon_sym_from] = ACTIONS(4147), + [anon_sym_LPAREN] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_print] = ACTIONS(4147), + [anon_sym_assert] = ACTIONS(4147), + [anon_sym_return] = ACTIONS(4147), + [anon_sym_del] = ACTIONS(4147), + [anon_sym_raise] = ACTIONS(4147), + [anon_sym_pass] = ACTIONS(4147), + [anon_sym_break] = ACTIONS(4147), + [anon_sym_continue] = ACTIONS(4147), + [anon_sym_if] = ACTIONS(4147), + [anon_sym_match] = ACTIONS(4147), + [anon_sym_async] = ACTIONS(4147), + [anon_sym_for] = ACTIONS(4147), + [anon_sym_while] = ACTIONS(4147), + [anon_sym_try] = ACTIONS(4147), + [anon_sym_with] = ACTIONS(4147), + [anon_sym_def] = ACTIONS(4147), + [anon_sym_global] = ACTIONS(4147), + [anon_sym_nonlocal] = ACTIONS(4147), + [anon_sym_exec] = ACTIONS(4147), + [anon_sym_type] = ACTIONS(4147), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_LBRACK] = ACTIONS(4145), + [anon_sym_AT] = ACTIONS(4145), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_not] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_TILDE] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_lambda] = ACTIONS(4147), + [anon_sym_yield] = ACTIONS(4147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4145), + [anon_sym_None] = ACTIONS(4147), + [anon_sym_0x] = ACTIONS(4145), + [anon_sym_0X] = ACTIONS(4145), + [anon_sym_0o] = ACTIONS(4145), + [anon_sym_0O] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(4145), + [anon_sym_0B] = ACTIONS(4145), + [aux_sym_integer_token4] = ACTIONS(4147), + [sym_float] = ACTIONS(4145), + [anon_sym_await] = ACTIONS(4147), + [anon_sym_api] = ACTIONS(4147), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(4147), + [anon_sym_include] = ACTIONS(4147), + [anon_sym_DEF] = ACTIONS(4147), + [anon_sym_IF] = ACTIONS(4147), + [anon_sym_cdef] = ACTIONS(4147), + [anon_sym_cpdef] = ACTIONS(4147), + [anon_sym_new] = ACTIONS(4147), + [anon_sym_ctypedef] = ACTIONS(4147), + [anon_sym_public] = ACTIONS(4147), + [anon_sym_packed] = ACTIONS(4147), + [anon_sym_inline] = ACTIONS(4147), + [anon_sym_readonly] = ACTIONS(4147), + [anon_sym_sizeof] = ACTIONS(4147), + [sym__dedent] = ACTIONS(4145), + [sym_string_start] = ACTIONS(4145), + }, + [2206] = { + [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), + }, + [2207] = { + [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), + }, + [2208] = { + [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), + }, + [2209] = { + [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), + }, + [2210] = { + [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), + }, + [2211] = { + [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), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 29, - ACTIONS(1505), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4237), 1, + sym_identifier, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4273), 1, + sym_list_splat_pattern, + STATE(4373), 1, + sym_primary_expression, + STATE(5665), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4274), 2, + sym_attribute, + sym_subscript, + STATE(5635), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2243), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4237), 1, + sym_identifier, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4273), 1, + sym_list_splat_pattern, + STATE(4373), 1, + sym_primary_expression, + STATE(5665), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4274), 2, + sym_attribute, + sym_subscript, + STATE(5635), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2229), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [246] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4216), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(6121), 1, + sym_pattern, + STATE(7182), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(7317), 2, + sym_for_in_loop, + sym_for_from_loop, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [370] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4216), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(6121), 1, + sym_pattern, + STATE(7182), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(7217), 2, + sym_for_in_loop, + sym_for_from_loop, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [494] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4216), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(6121), 1, + sym_pattern, + STATE(7182), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(7018), 2, + sym_for_in_loop, + sym_for_from_loop, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [618] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4216), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(6121), 1, + sym_pattern, + STATE(7182), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(6952), 2, + sym_for_in_loop, + sym_for_from_loop, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [742] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4263), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4221), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5901), 1, + sym_for_from_loop, + STATE(6358), 1, + sym_pattern, + STATE(7107), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [865] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4263), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4221), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5990), 1, + sym_for_from_loop, + STATE(6351), 1, + sym_pattern, + STATE(7055), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [988] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4265), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4180), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5872), 1, + sym_for_from_loop, + STATE(6049), 1, + sym_pattern, + STATE(7332), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1111] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4265), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4180), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5982), 1, + sym_for_from_loop, + STATE(6393), 1, + sym_pattern, + STATE(7233), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1234] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4267), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4223), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5973), 1, + sym_for_from_loop, + STATE(6426), 1, + sym_pattern, + STATE(6951), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1357] = 30, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_STAR, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4261), 1, + anon_sym_await, + ACTIONS(4267), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4223), 1, + sym_primary_expression, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(5842), 1, + sym_for_from_loop, + STATE(6433), 1, + sym_pattern, + STATE(6964), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1480] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4269), 1, + sym_identifier, + ACTIONS(4271), 1, + anon_sym_LPAREN, + ACTIONS(4273), 1, + anon_sym_STAR, + ACTIONS(4277), 1, + anon_sym_LBRACK, + ACTIONS(4279), 1, + anon_sym_RBRACK, + ACTIONS(4281), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4371), 1, + sym_primary_expression, + STATE(4380), 1, + sym_list_splat_pattern, + STATE(6779), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4367), 2, + sym_attribute, + sym_subscript, + STATE(6785), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4275), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1600] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4287), 1, + anon_sym_in, + ACTIONS(4289), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, + STATE(4443), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1720] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2215), 1, + anon_sym_STAR, + ACTIONS(2219), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(2223), 1, + anon_sym_await, + ACTIONS(4291), 1, + sym_identifier, + ACTIONS(4293), 1, + anon_sym_LPAREN, + ACTIONS(4295), 1, + anon_sym_RPAREN, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4376), 1, + sym_list_splat_pattern, + STATE(4384), 1, + sym_primary_expression, + STATE(6887), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4398), 2, + sym_attribute, + sym_subscript, + STATE(6726), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1840] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_await, + ACTIONS(4297), 1, + anon_sym_in, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, + STATE(4443), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [1960] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4269), 1, + sym_identifier, + ACTIONS(4271), 1, + anon_sym_LPAREN, + ACTIONS(4273), 1, + anon_sym_STAR, + ACTIONS(4277), 1, + anon_sym_LBRACK, + ACTIONS(4281), 1, + anon_sym_await, + ACTIONS(4295), 1, + anon_sym_RBRACK, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4371), 1, + sym_primary_expression, + STATE(4380), 1, + sym_list_splat_pattern, + STATE(6779), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4367), 2, + sym_attribute, + sym_subscript, + STATE(6785), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4275), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2080] = 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, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + ACTIONS(4299), 1, + sym_identifier, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2986), 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(4301), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4303), 2, + anon_sym_with, + anon_sym_nogil, + ACTIONS(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [2196] = 28, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4305), 1, + sym_identifier, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4311), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4377), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4301), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4303), 2, + anon_sym_with, + anon_sym_nogil, + STATE(2659), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4309), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2314] = 29, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2215), 1, + anon_sym_STAR, + ACTIONS(2219), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(2223), 1, + anon_sym_await, + ACTIONS(4279), 1, + anon_sym_RPAREN, + ACTIONS(4291), 1, + sym_identifier, + ACTIONS(4293), 1, + anon_sym_LPAREN, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4376), 1, + sym_list_splat_pattern, + STATE(4384), 1, + sym_primary_expression, + STATE(6887), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4398), 2, + sym_attribute, + sym_subscript, + STATE(6726), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2434] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2215), 1, + anon_sym_STAR, + ACTIONS(2219), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(2223), 1, + anon_sym_await, + ACTIONS(4291), 1, + sym_identifier, + ACTIONS(4293), 1, + anon_sym_LPAREN, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4376), 1, + sym_list_splat_pattern, + STATE(4384), 1, + sym_primary_expression, + STATE(6887), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4398), 2, + sym_attribute, + sym_subscript, + STATE(6726), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2551] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(2405), 1, + sym_identifier, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2413), 1, + anon_sym_LBRACK, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(4313), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3515), 1, + sym_list_splat_pattern, + STATE(4390), 1, + sym_primary_expression, + STATE(4443), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3518), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2411), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2668] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4251), 1, + anon_sym_LPAREN, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4262), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, + STATE(4443), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4234), 2, + sym_attribute, + sym_subscript, + STATE(4521), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4255), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2785] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(2227), 1, + sym_identifier, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_await, + ACTIONS(4315), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3381), 1, + sym_list_splat_pattern, + STATE(4375), 1, + sym_primary_expression, + STATE(4385), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3382), 2, + sym_attribute, + sym_subscript, + STATE(4370), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2235), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [2902] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4237), 1, + sym_identifier, + ACTIONS(4239), 1, + anon_sym_LPAREN, + ACTIONS(4241), 1, + anon_sym_STAR, + ACTIONS(4245), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4273), 1, + sym_list_splat_pattern, + STATE(4373), 1, + sym_primary_expression, + STATE(5665), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4274), 2, + sym_attribute, + sym_subscript, + STATE(5635), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4243), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3019] = 28, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4269), 1, + sym_identifier, + ACTIONS(4271), 1, + anon_sym_LPAREN, + ACTIONS(4273), 1, + anon_sym_STAR, + ACTIONS(4277), 1, + anon_sym_LBRACK, + ACTIONS(4281), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(4371), 1, + sym_primary_expression, + STATE(4380), 1, + sym_list_splat_pattern, + STATE(6779), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4367), 2, + sym_attribute, + sym_subscript, + STATE(6785), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4275), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3136] = 27, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4323), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4368), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3536), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4321), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3250] = 27, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4323), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4368), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4325), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3536), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4321), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3364] = 27, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4333), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4384), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4329), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4268), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4331), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3478] = 27, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4335), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4305), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4337), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [3592] = 25, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1947), 1, + anon_sym_await, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2003), 1, + anon_sym_LT, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(2897), 1, + sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1927), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [3701] = 25, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_LBRACE, + ACTIONS(1654), 1, + anon_sym_LT, + ACTIONS(1658), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1670), 1, + sym_float, + ACTIONS(1678), 1, + anon_sym_sizeof, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, + anon_sym_await, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(3252), 1, + sym_string, + STATE(3344), 1, + sym_primary_expression, + STATE(3516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1674), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1648), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1957), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3505), 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, + [3810] = 8, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1076), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4343), 7, + anon_sym_class, + anon_sym_api, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(1090), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1057), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1059), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_in, + 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, + [3885] = 25, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, + anon_sym_STAR, + ACTIONS(3727), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2948), 1, + sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1867), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [3994] = 25, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1977), 1, + anon_sym_await, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3317), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1973), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [4103] = 25, + ACTIONS(1762), 1, + anon_sym_LPAREN, + ACTIONS(1768), 1, + anon_sym_LBRACK, + ACTIONS(1772), 1, + anon_sym_LBRACE, + ACTIONS(1776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1778), 1, + anon_sym_None, + ACTIONS(1786), 1, + aux_sym_integer_token4, + ACTIONS(1788), 1, + sym_float, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, + anon_sym_sizeof, + ACTIONS(1794), 1, + sym_string_start, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2119), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2573), 1, + aux_sym_integer_repeat4, + STATE(2660), 1, + sym_string, + STATE(2767), 1, + sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1784), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1760), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1770), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1766), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3045), 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, + [4212] = 25, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3140), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [4321] = 25, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1987), 1, + anon_sym_await, + ACTIONS(3693), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3461), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1985), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1981), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [4430] = 25, + ACTIONS(1883), 1, + anon_sym_LPAREN, + ACTIONS(1889), 1, + anon_sym_LBRACK, + ACTIONS(1893), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1909), 1, + sym_float, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, + anon_sym_sizeof, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(2141), 1, + anon_sym_LT, + ACTIONS(2507), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(2970), 1, + sym_string, + STATE(3272), 1, + sym_primary_expression, + STATE(3416), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1901), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1881), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1891), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1887), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3400), 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, + [4539] = 25, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, + anon_sym_await, + ACTIONS(2419), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(2887), 1, + sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1582), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [4648] = 25, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2039), 1, + anon_sym_LT, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2794), 1, + sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1837), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [4757] = 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, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3030), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [4866] = 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, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, + anon_sym_await, + ACTIONS(2495), 1, + anon_sym_STAR, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2960), 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(1798), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [4975] = 25, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, + anon_sym_await, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(2943), 1, + sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1875), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [5084] = 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, + 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2831), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5193] = 25, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(1969), 1, + anon_sym_await, + ACTIONS(3869), 1, + anon_sym_STAR, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4341), 1, + anon_sym_not, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3035), 1, + sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1965), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [5302] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4321), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [5408] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, + anon_sym_await, + ACTIONS(2495), 1, + anon_sym_STAR, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2960), 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(1798), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5514] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2999), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5620] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3008), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5726] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3009), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5832] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3017), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [5938] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4345), 1, + sym_identifier, + ACTIONS(4349), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4397), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2505), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4347), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [6048] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [6154] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2816), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6260] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2817), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6366] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2829), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6472] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2831), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6578] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3019), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6684] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3020), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6790] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3021), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [6896] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2833), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [7002] = 24, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_LBRACE, + ACTIONS(1654), 1, + anon_sym_LT, + ACTIONS(1658), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1670), 1, + sym_float, + ACTIONS(1678), 1, + anon_sym_sizeof, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, + anon_sym_await, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(3252), 1, + sym_string, + STATE(3316), 1, + sym_primary_expression, + STATE(3516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1674), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1648), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1957), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3505), 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, + [7108] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2820), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [7214] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2775), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [7320] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4318), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [7426] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4319), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [7532] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(2529), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(2785), 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_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [7638] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4320), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [7744] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4327), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [7850] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4298), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [7956] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4299), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8062] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, + sym_list_splat_pattern, + STATE(3030), 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(1806), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1539), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2684), 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, + [8168] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(4003), 1, + anon_sym_await, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4300), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8274] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1987), 1, + anon_sym_await, + ACTIONS(3693), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3461), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1985), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1981), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8380] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4324), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8486] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4325), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8592] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3042), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [8698] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(1969), 1, + anon_sym_await, + ACTIONS(3869), 1, + anon_sym_STAR, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3035), 1, + sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1965), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [8804] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4192), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [8910] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3046), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9016] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3047), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9122] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1947), 1, + anon_sym_await, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2003), 1, + anon_sym_LT, + ACTIONS(2461), 1, + anon_sym_STAR, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(2897), 1, + sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1927), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [9228] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3049), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9334] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3050), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9440] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3053), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9546] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3036), 1, + sym_primary_expression, + STATE(3109), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1461), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [9652] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4194), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [9758] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, + anon_sym_STAR, + ACTIONS(3727), 1, + anon_sym_LT, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2948), 1, + sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1867), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [9864] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4197), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [9970] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4199), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [10076] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4202), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [10182] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4205), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [10288] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4305), 1, + sym_identifier, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4359), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4377), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2659), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4309), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [10398] = 24, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1594), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1596), 1, + anon_sym_None, + ACTIONS(1604), 1, + aux_sym_integer_token4, + ACTIONS(1606), 1, + sym_float, + ACTIONS(1624), 1, + anon_sym_sizeof, + ACTIONS(1626), 1, + sym_string_start, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, + anon_sym_await, + ACTIONS(4351), 1, + anon_sym_STAR, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, + aux_sym_integer_repeat4, + STATE(2687), 1, + sym_string, + STATE(3264), 1, + sym_list_splat_pattern, + STATE(4215), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1600), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1602), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2973), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1610), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2969), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3261), 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, + [10504] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4330), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [10610] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4208), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [10716] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [10822] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4365), 1, + sym_identifier, + ACTIONS(4369), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4369), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3399), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4367), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [10932] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4371), 1, + sym_identifier, + ACTIONS(4375), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4384), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4281), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4373), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [11042] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4212), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11148] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4213), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11254] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4214), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11360] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4219), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11466] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4181), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11572] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4217), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [11678] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2958), 1, + sym_list_splat_pattern, + STATE(4190), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [11784] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2958), 1, + sym_list_splat_pattern, + STATE(4191), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [11890] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2958), 1, + sym_list_splat_pattern, + STATE(4193), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [11996] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2899), 1, + anon_sym_await, + ACTIONS(4361), 1, + anon_sym_STAR, + ACTIONS(4363), 1, + anon_sym_LT, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(3059), 1, + sym_list_splat_pattern, + STATE(4218), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2897), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2893), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [12102] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2958), 1, + sym_list_splat_pattern, + STATE(4195), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [12208] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4281), 1, - sym_identifier, - ACTIONS(4283), 1, - anon_sym_LPAREN, - ACTIONS(4285), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4289), 1, - anon_sym_LBRACK, - ACTIONS(4291), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(3978), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4087), 1, + STATE(4244), 1, sym_primary_expression, - STATE(5348), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2195), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4287), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -220658,83 +230700,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [123] = 29, - ACTIONS(1505), 1, + [12314] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4281), 1, - sym_identifier, - ACTIONS(4283), 1, - anon_sym_LPAREN, - ACTIONS(4285), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4289), 1, - anon_sym_LBRACK, - ACTIONS(4291), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(3978), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4087), 1, + STATE(4246), 1, sym_primary_expression, - STATE(5348), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2207), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4287), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -220752,81 +230782,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [246] = 29, - ACTIONS(1505), 1, + [12420] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4293), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LPAREN, - ACTIONS(4299), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4303), 1, - anon_sym_LBRACK, - ACTIONS(4305), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(4249), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -220844,81 +230864,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [367] = 29, - ACTIONS(1505), 1, + [12526] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, anon_sym_LT, - ACTIONS(4293), 1, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2958), 1, + sym_list_splat_pattern, + STATE(4196), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, sym_identifier, - ACTIONS(4297), 1, + sym_true, + sym_false, + ACTIONS(2945), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [12632] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(4299), 1, - anon_sym_STAR, - ACTIONS(4303), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(4305), 1, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(1843), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1845), 1, + anon_sym_None, + ACTIONS(1853), 1, + aux_sym_integer_token4, + ACTIONS(1855), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_sizeof, + ACTIONS(1861), 1, + sym_string_start, + ACTIONS(2951), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(4377), 1, + anon_sym_STAR, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(4061), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(4198), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(2949), 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, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -220936,80 +231028,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [488] = 29, - ACTIONS(1505), 1, + [12738] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2227), 1, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, anon_sym_STAR, - ACTIONS(2231), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(4379), 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, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(4070), 1, - sym_primary_expression, - STATE(4101), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(6332), 1, - sym_pattern, + STATE(4203), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(2949), 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, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2229), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221027,80 +231110,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [608] = 29, - ACTIONS(1505), 1, + [12844] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(4293), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + STATE(2562), 1, + aux_sym_integer_repeat4, + STATE(2615), 1, + sym_string, + STATE(2794), 1, + sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1851), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1827), 3, sym_identifier, - ACTIONS(4297), 1, + sym_true, + sym_false, + ACTIONS(1837), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1833), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2836), 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, + [12950] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2787), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4381), 1, + anon_sym_STAR, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4250), 1, sym_primary_expression, - STATE(5845), 1, - sym_pattern, - STATE(6882), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221118,80 +231274,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [728] = 29, - ACTIONS(1505), 1, + [13056] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2227), 1, - anon_sym_STAR, - ACTIONS(2231), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2235), 1, + ACTIONS(2787), 1, anon_sym_await, - ACTIONS(4309), 1, - sym_identifier, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4319), 1, - anon_sym_RPAREN, - STATE(2452), 1, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4381), 1, + anon_sym_STAR, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4070), 1, - sym_primary_expression, - STATE(4101), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(6332), 1, - sym_pattern, + STATE(4264), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2229), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221209,80 +231356,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [848] = 29, - ACTIONS(1505), 1, + [13162] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - 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, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4317), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(4259), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221300,80 +231438,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [968] = 29, - ACTIONS(1505), 1, + [13268] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4319), 1, - anon_sym_RBRACK, - ACTIONS(4321), 1, + ACTIONS(4381), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4228), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, - ACTIONS(4323), 1, + sym_true, + sym_false, + ACTIONS(2783), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [13374] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(4331), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1977), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4084), 1, - sym_primary_expression, - STATE(4096), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(6343), 1, - sym_pattern, + STATE(3318), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 3, + sym_identifier, 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, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4327), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221391,80 +231602,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1088] = 29, - ACTIONS(1505), 1, + [13480] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1977), 1, + anon_sym_await, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, anon_sym_LT, - ACTIONS(4293), 1, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3320), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, sym_identifier, - ACTIONS(4295), 1, - anon_sym_in, - ACTIONS(4297), 1, + sym_true, + sym_false, + ACTIONS(1973), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [13586] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1977), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(3346), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 3, + sym_identifier, 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, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221482,79 +231766,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1208] = 28, - ACTIONS(1495), 1, + [13692] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4343), 1, + ACTIONS(1977), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4108), 1, + STATE(3349), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 3, + sym_identifier, 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, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4337), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221572,80 +231848,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1326] = 29, - ACTIONS(1505), 1, + [13798] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1977), 1, + anon_sym_await, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, anon_sym_LT, - ACTIONS(4293), 1, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3350), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, sym_identifier, - ACTIONS(4297), 1, + sym_true, + sym_false, + ACTIONS(1973), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [13904] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1977), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(3352), 1, sym_primary_expression, - STATE(6147), 1, - sym_pattern, - STATE(6988), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 3, + sym_identifier, 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, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221663,80 +232012,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1446] = 29, - ACTIONS(1505), 1, + [14010] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1977), 1, + anon_sym_await, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, anon_sym_LT, - ACTIONS(4293), 1, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(3317), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 3, sym_identifier, - ACTIONS(4297), 1, + sym_true, + sym_false, + ACTIONS(1973), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1558), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [14116] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1977), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3713), 1, + anon_sym_STAR, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(3282), 1, sym_primary_expression, - STATE(6132), 1, - sym_pattern, - STATE(6855), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 3, + sym_identifier, 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, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -221754,78 +232176,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1566] = 29, - ACTIONS(1505), 1, + [14222] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4293), 1, + ACTIONS(4305), 1, sym_identifier, - ACTIONS(4297), 1, - anon_sym_LPAREN, - ACTIONS(4303), 1, - anon_sym_LBRACK, - ACTIONS(4315), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(4383), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4377), 1, sym_primary_expression, - STATE(6156), 1, - sym_pattern, - STATE(6630), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(4043), 2, + STATE(2659), 2, sym_attribute, sym_subscript, - STATE(4106), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(4309), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -221845,7 +232260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1686] = 27, + [14332] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(77), 1, @@ -221860,25 +232275,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(117), 1, sym_string_start, - ACTIONS(1583), 1, + ACTIONS(1535), 1, anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1541), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(4345), 1, - sym_identifier, - STATE(2428), 1, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2575), 1, sym_string, - STATE(2599), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(2806), 1, + STATE(2936), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -221892,27 +232305,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 2, + ACTIONS(95), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(4339), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(4341), 2, - anon_sym_with, - anon_sym_nogil, - ACTIONS(1913), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -221934,78 +232342,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1802] = 29, - ACTIONS(1505), 1, + [14438] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4293), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LPAREN, - ACTIONS(4303), 1, - anon_sym_LBRACK, - ACTIONS(4315), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(4371), 1, + sym_identifier, + ACTIONS(4385), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4384), 1, sym_primary_expression, - STATE(6125), 1, - sym_pattern, - STATE(6810), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(4043), 2, + STATE(4281), 2, sym_attribute, sym_subscript, - STATE(4106), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(4373), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -222025,80 +232426,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1922] = 29, - ACTIONS(1505), 1, + [14548] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4293), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LPAREN, - ACTIONS(4303), 1, - anon_sym_LBRACK, - ACTIONS(4315), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4317), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4061), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4302), 1, sym_primary_expression, - STATE(6161), 1, - sym_pattern, - STATE(6642), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222116,80 +232508,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2042] = 29, - ACTIONS(1505), 1, + [14654] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - 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, - ACTIONS(4331), 1, + ACTIONS(4003), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(4084), 1, - sym_primary_expression, - STATE(4096), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(6343), 1, - sym_pattern, + STATE(4303), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 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, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(3999), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4327), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222207,78 +232590,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2162] = 28, - ACTIONS(1505), 1, + [14760] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2227), 1, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, anon_sym_STAR, - ACTIONS(2231), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(4379), 1, anon_sym_LT, - ACTIONS(2235), 1, - anon_sym_await, - ACTIONS(4309), 1, - sym_identifier, - ACTIONS(4311), 1, - anon_sym_LPAREN, - STATE(2452), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(4070), 1, - sym_primary_expression, - STATE(4101), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(6332), 1, - sym_pattern, + STATE(4183), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(2949), 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, + ACTIONS(1827), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2945), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2229), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222296,78 +232672,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2279] = 28, - ACTIONS(1505), 1, + [14866] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - 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, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(4331), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(4084), 1, + STATE(2955), 1, sym_primary_expression, - STATE(4096), 1, + STATE(3264), 1, sym_list_splat_pattern, - STATE(6343), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4327), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222385,78 +232754,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2396] = 28, - ACTIONS(1505), 1, + [14972] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 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, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(4291), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(3978), 1, - sym_list_splat_pattern, - STATE(4087), 1, + STATE(2974), 1, sym_primary_expression, - STATE(5348), 1, - sym_pattern, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4287), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222474,76 +232836,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2513] = 28, - ACTIONS(1505), 1, + [15078] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 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, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4347), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4349), 1, + anon_sym_await, + ACTIONS(4387), 1, + sym_identifier, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(3168), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4065), 1, - sym_pattern, - STATE(4112), 1, + STATE(4397), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(3170), 2, + STATE(2505), 2, sym_attribute, sym_subscript, - STATE(4080), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2201), 5, + ACTIONS(4347), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -222563,78 +232920,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2630] = 28, - ACTIONS(1505), 1, + [15188] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4293), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LPAREN, - ACTIONS(4303), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_STAR, - ACTIONS(4317), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(4061), 1, - sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(2976), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222652,78 +233002,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2747] = 28, - ACTIONS(1505), 1, + [15294] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(2459), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - ACTIONS(4349), 1, + ACTIONS(3855), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(3335), 1, - sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4079), 1, + STATE(2882), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222741,78 +233084,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2864] = 28, - ACTIONS(1505), 1, + [15400] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 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, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(4305), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(4061), 1, - sym_list_splat_pattern, - STATE(4064), 1, - sym_pattern, - STATE(4072), 1, + STATE(2894), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4301), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222830,76 +233166,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + [15506] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4351), 1, - sym_identifier, - ACTIONS(4357), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4072), 1, + STATE(2898), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4355), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -222917,76 +233248,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + [15612] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4359), 1, - sym_identifier, - ACTIONS(4363), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3855), 1, + anon_sym_STAR, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4070), 1, + STATE(2903), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4361), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -223004,76 +233330,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + [15718] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4365), 1, - sym_identifier, - ACTIONS(4371), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(2419), 1, + anon_sym_STAR, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4082), 1, + STATE(2876), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4369), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -223091,76 +233412,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + [15824] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4365), 1, - sym_identifier, - ACTIONS(4371), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(2419), 1, + anon_sym_STAR, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4082), 1, + STATE(2877), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1598), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1610), 3, + sym_identifier, 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, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4369), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -223178,69 +233494,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3437] = 25, - ACTIONS(67), 1, + [15930] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, anon_sym_await, - ACTIONS(2543), 1, + ACTIONS(2419), 1, anon_sym_STAR, - ACTIONS(2547), 1, - anon_sym_LT, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2428), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2687), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2802), 1, + STATE(2878), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223262,69 +233576,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3546] = 25, - ACTIONS(1849), 1, + [16036] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1877), 1, - anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2057), 1, - anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2951), 1, + anon_sym_await, + ACTIONS(4377), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2455), 1, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2615), 1, sym_string, - STATE(2669), 1, - sym_primary_expression, - STATE(2895), 1, + STATE(2958), 1, sym_list_splat_pattern, + STATE(4187), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(2945), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223346,69 +233658,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3655] = 25, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(1816), 1, - anon_sym_LBRACK, - ACTIONS(1820), 1, + [16142] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, + anon_sym_await, + ACTIONS(2419), 1, anon_sym_STAR, - ACTIONS(2171), 1, - anon_sym_LT, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2456), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2687), 1, sym_string, - STATE(2655), 1, + STATE(2887), 1, sym_primary_expression, - STATE(2890), 1, + STATE(3264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223430,69 +233740,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3764] = 25, - ACTIONS(67), 1, + [16248] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(2419), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2428), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2687), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2779), 1, + STATE(2888), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223514,69 +233822,67 @@ static const uint16_t ts_small_parse_table[] = { 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, + [16354] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1909), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, anon_sym_await, - ACTIONS(2479), 1, - anon_sym_LT, - ACTIONS(2843), 1, + ACTIONS(2419), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2452), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(2917), 1, + STATE(2889), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1905), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223598,69 +233904,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3982] = 25, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1698), 1, + [16460] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1588), 1, anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1919), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1825), 1, anon_sym_await, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2524), 1, + ACTIONS(2419), 1, + anon_sym_STAR, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2687), 1, sym_string, - STATE(3149), 1, + STATE(2890), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223682,69 +233986,67 @@ static const uint16_t ts_small_parse_table[] = { 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, + [16566] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1588), 1, + anon_sym_LT, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1825), 1, + anon_sym_await, + ACTIONS(2419), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2488), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2687), 1, sym_string, - STATE(2875), 1, + STATE(2891), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223766,69 +234068,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4200] = 25, - ACTIONS(1495), 1, + [16672] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(1965), 1, + ACTIONS(1969), 1, anon_sym_await, - ACTIONS(2191), 1, - anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2452), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2649), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3037), 1, + STATE(2838), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223850,69 +234150,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4309] = 25, - ACTIONS(67), 1, + [16778] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, + ACTIONS(1969), 1, anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2428), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2649), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2681), 1, + STATE(2850), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -223934,69 +234232,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4418] = 25, - ACTIONS(1495), 1, + [16884] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2011), 1, + ACTIONS(1969), 1, anon_sym_await, - ACTIONS(3171), 1, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(3873), 1, anon_sym_LT, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2452), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2649), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3253), 1, + STATE(2867), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224018,69 +234314,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4527] = 25, - ACTIONS(1931), 1, + [16990] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1941), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1955), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1959), 1, - anon_sym_await, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1963), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2027), 1, - anon_sym_LT, - ACTIONS(2485), 1, + ACTIONS(1969), 1, + anon_sym_await, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2459), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2698), 1, + STATE(2649), 1, sym_string, - STATE(2816), 1, + STATE(2870), 1, sym_primary_expression, - STATE(3221), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1951), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1953), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1929), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1939), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1935), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3062), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224102,136 +234396,67 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - 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, + [17096] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, + ACTIONS(1453), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - 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_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, - [4711] = 25, - ACTIONS(1632), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1792), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(2787), 1, anon_sym_await, - ACTIONS(2435), 1, + ACTIONS(4259), 1, + anon_sym_LT, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4375), 1, - anon_sym_not, - STATE(2461), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2663), 1, sym_string, - STATE(2749), 1, - sym_primary_expression, - STATE(3178), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4227), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224253,67 +234478,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4820] = 24, - ACTIONS(67), 1, + [17202] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1969), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(3869), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2649), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2779), 1, + STATE(2873), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224335,73 +234560,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4926] = 26, - ACTIONS(1495), 1, + [17308] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4379), 1, - sym_identifier, - ACTIONS(4383), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4093), 1, + STATE(4279), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2401), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4381), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -224419,67 +234642,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5036] = 24, - ACTIONS(1849), 1, + [17414] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1877), 1, - anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2057), 1, - anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(1969), 1, + anon_sym_await, + ACTIONS(3869), 1, anon_sym_STAR, - STATE(2455), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2649), 1, sym_string, - STATE(2663), 1, + STATE(2899), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224501,67 +234724,67 @@ static const uint16_t ts_small_parse_table[] = { 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, + [17520] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(1909), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, anon_sym_await, - ACTIONS(2479), 1, - anon_sym_LT, - ACTIONS(2843), 1, + ACTIONS(2529), 1, anon_sym_STAR, - STATE(2452), 1, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2575), 1, sym_string, - STATE(2843), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(2917), 1, + STATE(2800), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1905), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224583,67 +234806,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5248] = 24, - ACTIONS(1931), 1, + [17626] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1941), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1955), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1959), 1, - anon_sym_await, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1963), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2027), 1, - anon_sym_LT, - ACTIONS(2485), 1, + ACTIONS(1969), 1, + anon_sym_await, + ACTIONS(3869), 1, anon_sym_STAR, - STATE(2459), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2698), 1, + STATE(2649), 1, sym_string, - STATE(2722), 1, + STATE(2909), 1, sym_primary_expression, - STATE(3221), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1951), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1953), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1929), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1939), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1935), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3062), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224665,67 +234888,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5354] = 24, - ACTIONS(1849), 1, + [17732] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1947), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2003), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2461), 1, anon_sym_STAR, - STATE(2455), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2649), 1, sym_string, - STATE(2636), 1, + STATE(2925), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224747,56 +234970,138 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5460] = 24, - ACTIONS(1694), 1, + [17838] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1947), 1, + anon_sym_await, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(2003), 1, + anon_sym_LT, + ACTIONS(2461), 1, anon_sym_STAR, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(2649), 1, + sym_string, + STATE(2926), 1, + sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1917), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1927), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1923), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3044), 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, + [17944] = 24, ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1935), 1, + anon_sym_None, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1947), 1, anon_sym_await, - STATE(2524), 1, + ACTIONS(1949), 1, + anon_sym_sizeof, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(2003), 1, + anon_sym_LT, + ACTIONS(2461), 1, + anon_sym_STAR, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2649), 1, sym_string, - STATE(3149), 1, + STATE(2930), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, @@ -224807,7 +235112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224829,67 +235134,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5566] = 24, - ACTIONS(1849), 1, + [18050] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1790), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(2057), 1, - anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2455), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2660), 1, sym_string, - STATE(2639), 1, + STATE(2767), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1780), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224911,67 +235216,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5672] = 24, - ACTIONS(1849), 1, + [18156] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1947), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2003), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2461), 1, anon_sym_STAR, - STATE(2455), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2649), 1, sym_string, - STATE(2642), 1, + STATE(2932), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -224993,67 +235298,151 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5778] = 24, - ACTIONS(1849), 1, + [18262] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1877), 1, - anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2455), 1, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4393), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2663), 1, sym_string, - STATE(2643), 1, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4374), 1, sym_primary_expression, - STATE(2895), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4391), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [18372] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1863), 1, + anon_sym_await, + ACTIONS(2185), 1, + anon_sym_LT, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, sym_list_splat_pattern, + STATE(3263), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1471), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1461), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225075,67 +235464,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5884] = 24, - ACTIONS(1849), 1, + [18478] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1947), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2003), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2461), 1, anon_sym_STAR, - STATE(2455), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2649), 1, sym_string, - STATE(2647), 1, + STATE(2933), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225157,67 +235546,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5990] = 24, - ACTIONS(1849), 1, + [18584] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1947), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2003), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2461), 1, anon_sym_STAR, - STATE(2455), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2649), 1, sym_string, - STATE(2648), 1, + STATE(2941), 1, sym_primary_expression, - STATE(2895), 1, + STATE(3059), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225239,73 +235628,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6096] = 26, - ACTIONS(1495), 1, + [18690] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1947), 1, + anon_sym_await, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2003), 1, anon_sym_LT, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(4335), 1, + ACTIONS(2461), 1, anon_sym_STAR, - ACTIONS(4385), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2649), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4108), 1, + STATE(2951), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1937), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1917), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(2558), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4337), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -225323,67 +235710,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6206] = 24, - ACTIONS(1495), 1, + [18796] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1871), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(3723), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3727), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(4109), 1, + STATE(3025), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225405,73 +235792,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6312] = 26, - ACTIONS(1495), 1, + [18902] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4387), 1, - sym_identifier, - ACTIONS(4391), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4083), 1, + STATE(4224), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(3240), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4389), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -225489,151 +235874,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6422] = 26, - ACTIONS(1495), 1, + [19008] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 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(4393), 1, - sym_identifier, - ACTIONS(4397), 1, - anon_sym_await, - 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(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(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, - [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, + ACTIONS(1855), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1871), 1, anon_sym_await, - ACTIONS(2543), 1, + ACTIONS(3723), 1, anon_sym_STAR, - ACTIONS(2547), 1, + ACTIONS(3727), 1, anon_sym_LT, - STATE(2428), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2615), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2731), 1, + STATE(2847), 1, sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225655,67 +235956,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6638] = 24, - ACTIONS(1810), 1, + [19114] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(3727), 1, anon_sym_LT, - STATE(2456), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2615), 1, sym_string, - STATE(2682), 1, + STATE(2848), 1, sym_primary_expression, - STATE(2890), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225737,67 +236038,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6744] = 24, - ACTIONS(1810), 1, + [19220] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(3727), 1, anon_sym_LT, - STATE(2456), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2615), 1, sym_string, - STATE(2686), 1, + STATE(2851), 1, sym_primary_expression, - STATE(2890), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225819,67 +236120,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6850] = 24, - ACTIONS(1969), 1, + [19326] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, anon_sym_STAR, - STATE(2488), 1, + ACTIONS(3727), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2615), 1, sym_string, - STATE(2875), 1, + STATE(2852), 1, sym_primary_expression, - STATE(3239), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225901,67 +236202,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6956] = 24, - ACTIONS(1810), 1, + [19432] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1871), 1, + anon_sym_await, + ACTIONS(3723), 1, anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(3727), 1, anon_sym_LT, - STATE(2456), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2615), 1, sym_string, - STATE(2689), 1, + STATE(2857), 1, sym_primary_expression, - STATE(2890), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -225983,71 +236284,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7062] = 24, - ACTIONS(1810), 1, + [19538] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2163), 1, - anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2456), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4395), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2663), 1, sym_string, - STATE(2691), 1, - sym_primary_expression, - STATE(2890), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226065,67 +236368,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7168] = 24, - ACTIONS(1810), 1, + [19648] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2163), 1, - anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - STATE(2456), 1, + ACTIONS(4381), 1, + anon_sym_STAR, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2663), 1, sym_string, - STATE(2694), 1, - sym_primary_expression, - STATE(2890), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4256), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226147,67 +236450,142 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7274] = 24, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(1816), 1, + [19754] = 17, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4412), 1, + anon_sym_COLON, + ACTIONS(4414), 1, + anon_sym_EQ, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(4420), 1, + anon_sym_complex, + ACTIONS(4422), 1, + anon_sym___stdcall, + STATE(4616), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4401), 2, + sym__newline, + anon_sym_LPAREN, + STATE(4893), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4406), 3, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(4408), 12, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 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(4418), 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, + [19846] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, + anon_sym_await, + ACTIONS(3855), 1, anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(3859), 1, anon_sym_LT, - STATE(2456), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2687), 1, sym_string, - STATE(2695), 1, + STATE(2943), 1, sym_primary_expression, - STATE(2890), 1, + STATE(3264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226229,71 +236607,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7380] = 24, - ACTIONS(1810), 1, + [19952] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1816), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2163), 1, - anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2456), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4424), 1, + sym_identifier, + ACTIONS(4428), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(2663), 1, sym_string, - STATE(2670), 1, - sym_primary_expression, - STATE(2890), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4396), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3216), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(4426), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226311,67 +236691,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7486] = 24, - ACTIONS(67), 1, + [20062] = 24, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1947), 1, + anon_sym_await, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1951), 1, sym_string_start, - 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(2547), 1, + ACTIONS(2003), 1, anon_sym_LT, - STATE(2428), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2649), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2726), 1, + STATE(2938), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1927), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226393,71 +236773,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7592] = 24, - ACTIONS(67), 1, + [20168] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4393), 1, + anon_sym_await, + ACTIONS(4430), 1, + sym_identifier, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2674), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226475,67 +236857,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7698] = 24, - ACTIONS(1694), 1, + [20278] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1654), 1, anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(1919), 1, + ACTIONS(1953), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1961), 1, anon_sym_await, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(3252), 1, sym_string, - STATE(3157), 1, + STATE(3285), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3516), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226557,71 +236939,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7804] = 24, - ACTIONS(1694), 1, + [20384] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(1919), 1, - anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4432), 1, anon_sym_await, - STATE(2524), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2663), 1, sym_string, - STATE(3158), 1, - sym_primary_expression, - STATE(3359), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226639,67 +237023,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7910] = 24, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1698), 1, + [20494] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1588), 1, anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1919), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1825), 1, anon_sym_await, - STATE(2524), 1, + ACTIONS(2419), 1, + anon_sym_STAR, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2687), 1, sym_string, - STATE(3159), 1, + STATE(2837), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3264), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1582), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226721,71 +237105,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8016] = 24, - ACTIONS(67), 1, + [20600] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4323), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2675), 1, + STATE(4368), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3536), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4321), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226803,67 +237189,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8122] = 24, - ACTIONS(67), 1, + [20710] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2039), 1, + anon_sym_LT, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2428), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2615), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2681), 1, + STATE(2786), 1, sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -226885,71 +237271,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8228] = 24, - ACTIONS(67), 1, + [20816] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4359), 1, + anon_sym_await, + ACTIONS(4434), 1, + sym_identifier, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2685), 1, + STATE(4377), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2659), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4309), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -226967,71 +237355,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8334] = 24, - ACTIONS(67), 1, + [20926] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4436), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2690), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4301), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4438), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -227049,71 +237439,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8440] = 24, - ACTIONS(67), 1, + [21036] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4442), 1, + sym_identifier, + ACTIONS(4446), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2650), 1, + STATE(4384), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3278), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4444), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -227131,67 +237523,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8546] = 24, - ACTIONS(67), 1, + [21146] = 24, + ACTIONS(1762), 1, + anon_sym_LPAREN, + ACTIONS(1768), 1, + anon_sym_LBRACK, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, - anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2660), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2665), 1, + STATE(2795), 1, sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1780), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227213,67 +237605,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8652] = 24, - ACTIONS(67), 1, + [21252] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, + ACTIONS(1568), 1, anon_sym_await, - ACTIONS(2592), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2660), 1, + STATE(4329), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227295,67 +237687,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8758] = 24, - ACTIONS(1694), 1, + [21358] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1919), 1, - anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1568), 1, anon_sym_await, - STATE(2524), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2663), 1, sym_string, - STATE(3160), 1, - sym_primary_expression, - STATE(3359), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4336), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227377,67 +237769,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8864] = 24, - ACTIONS(1694), 1, + [21464] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1654), 1, anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(1919), 1, + ACTIONS(1953), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1961), 1, anon_sym_await, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(3252), 1, sym_string, - STATE(3162), 1, + STATE(3393), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3516), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227459,67 +237851,151 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8970] = 24, - ACTIONS(1694), 1, + [21570] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4448), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4391), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [21680] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1654), 1, anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(1919), 1, + ACTIONS(1953), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1961), 1, anon_sym_await, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(3252), 1, sym_string, - STATE(3164), 1, + STATE(3313), 1, sym_primary_expression, - STATE(3359), 1, + STATE(3516), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227541,67 +238017,151 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9076] = 24, - ACTIONS(1694), 1, + [21786] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1802), 1, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(1919), 1, - anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(4436), 1, + sym_identifier, + ACTIONS(4450), 1, anon_sym_await, - STATE(2524), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2663), 1, sym_string, - STATE(3165), 1, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4374), 1, sym_primary_expression, - STATE(3359), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4301), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4438), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 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, + [21896] = 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(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, + anon_sym_await, + ACTIONS(2495), 1, + anon_sym_STAR, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, + aux_sym_integer_repeat4, + STATE(2575), 1, + sym_string, + STATE(2689), 1, sym_list_splat_pattern, + STATE(2910), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227623,7 +238183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9182] = 24, + [22002] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(77), 1, @@ -227638,23 +238198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(117), 1, sym_string_start, - ACTIONS(1583), 1, + ACTIONS(1535), 1, anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1541), 1, anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(2543), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2547), 1, + ACTIONS(2499), 1, anon_sym_LT, - STATE(2428), 1, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2575), 1, sym_string, - STATE(2599), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(2700), 1, + STATE(2912), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -227672,18 +238232,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227705,71 +238265,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9288] = 24, - ACTIONS(1495), 1, + [22108] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4369), 1, + anon_sym_await, + ACTIONS(4452), 1, + sym_identifier, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3030), 1, + STATE(4369), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3399), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4367), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -227787,67 +238349,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9394] = 24, - ACTIONS(1495), 1, + [22218] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2452), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2970), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(3221), 1, sym_primary_expression, + STATE(3416), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227869,67 +238431,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9500] = 24, - ACTIONS(1931), 1, - anon_sym_LPAREN, - ACTIONS(1937), 1, - anon_sym_LBRACK, - ACTIONS(1941), 1, + [22324] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1947), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1955), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1959), 1, - anon_sym_await, - ACTIONS(1961), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1963), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2027), 1, - anon_sym_LT, - ACTIONS(2485), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, + anon_sym_await, + ACTIONS(2495), 1, anon_sym_STAR, - STATE(2459), 1, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2698), 1, + STATE(2575), 1, sym_string, - STATE(2816), 1, - sym_primary_expression, - STATE(3221), 1, + STATE(2689), 1, sym_list_splat_pattern, + STATE(2914), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1951), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1953), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1929), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1939), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1935), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3062), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -227951,67 +238513,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9606] = 24, - ACTIONS(1495), 1, + [22430] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2011), 1, + ACTIONS(1863), 1, anon_sym_await, - ACTIONS(3171), 1, - anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2185), 1, anon_sym_LT, - STATE(2452), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3253), 1, + STATE(3140), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1471), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1461), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228033,233 +238595,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9712] = 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, + [22536] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - 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(2599), 1, - sym_list_splat_pattern, - STATE(2728), 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1587), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - 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, - [9818] = 26, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(4335), 1, + ACTIONS(2507), 1, anon_sym_STAR, - ACTIONS(4399), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2970), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4108), 1, + STATE(3066), 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(2558), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(4337), 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, - [9928] = 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, - 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(2599), 1, + STATE(3416), 1, sym_list_splat_pattern, - STATE(2772), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228281,67 +238677,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10034] = 24, - ACTIONS(1969), 1, + [22642] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1911), 1, anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2970), 1, sym_string, - STATE(2999), 1, + STATE(3067), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228363,67 +238759,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10140] = 24, - ACTIONS(1969), 1, + [22748] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1911), 1, anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2970), 1, sym_string, - STATE(3000), 1, + STATE(3072), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228445,71 +238841,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10246] = 26, - ACTIONS(1495), 1, + [22854] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4393), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4401), 1, + ACTIONS(4458), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4070), 1, + STATE(4371), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(3996), 2, + STATE(3165), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4395), 5, + ACTIONS(4456), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -228529,67 +238925,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10356] = 24, - ACTIONS(1969), 1, + [22964] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(1987), 1, + anon_sym_await, + ACTIONS(3693), 1, anon_sym_STAR, - STATE(2488), 1, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2663), 1, sym_string, - STATE(3001), 1, - sym_primary_expression, - STATE(3239), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(3451), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1985), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228611,67 +239007,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10462] = 24, - ACTIONS(1969), 1, + [23070] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1911), 1, anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2970), 1, sym_string, - STATE(3002), 1, + STATE(3073), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228693,71 +239089,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10568] = 24, - ACTIONS(1969), 1, + [23176] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2488), 1, + ACTIONS(4460), 1, + sym_identifier, + ACTIONS(4464), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2663), 1, sym_string, - STATE(3003), 1, - sym_primary_expression, - STATE(3239), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4372), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2883), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(4462), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -228775,67 +239173,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10674] = 24, - ACTIONS(1969), 1, - anon_sym_LPAREN, - ACTIONS(1975), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, + [23286] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(2921), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3379), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2575), 1, sym_string, - STATE(3005), 1, - sym_primary_expression, - STATE(3239), 1, + STATE(2689), 1, sym_list_splat_pattern, + STATE(2986), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1806), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228857,67 +239255,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10780] = 24, - ACTIONS(1969), 1, + [23392] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1911), 1, anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2147), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2970), 1, sym_string, - STATE(3006), 1, + STATE(3101), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -228939,71 +239337,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10886] = 24, - ACTIONS(1495), 1, + [23498] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3034), 1, + STATE(4384), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3536), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4321), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -229021,67 +239421,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10992] = 24, - ACTIONS(1495), 1, + [23608] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2011), 1, + ACTIONS(4003), 1, anon_sym_await, - ACTIONS(3171), 1, + ACTIONS(4355), 1, anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(4357), 1, anon_sym_LT, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3263), 1, + STATE(4308), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(3999), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229103,71 +239503,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11098] = 24, - ACTIONS(1495), 1, + [23714] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2011), 1, - anon_sym_await, - ACTIONS(3171), 1, - anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2452), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4335), 1, + sym_identifier, + ACTIONS(4468), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3264), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4305), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4337), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -229185,67 +239587,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11204] = 24, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + [23824] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(2011), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, anon_sym_await, - ACTIONS(3171), 1, + ACTIONS(4351), 1, anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(4353), 1, anon_sym_LT, - STATE(2452), 1, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, + STATE(3264), 1, sym_list_splat_pattern, - STATE(3265), 1, + STATE(4200), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, + ACTIONS(2973), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(2969), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229267,71 +239669,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11310] = 24, - ACTIONS(1495), 1, + [23930] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2011), 1, - anon_sym_await, - ACTIONS(3171), 1, - anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2452), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4470), 1, + sym_identifier, + ACTIONS(4474), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3266), 1, + STATE(4390), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3581), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4472), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -229349,67 +239753,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11416] = 24, - ACTIONS(1495), 1, + [24040] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(2011), 1, + ACTIONS(2899), 1, anon_sym_await, - ACTIONS(3171), 1, + ACTIONS(4361), 1, anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(4363), 1, anon_sym_LT, - STATE(2452), 1, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2649), 1, sym_string, - STATE(2843), 1, + STATE(3059), 1, sym_list_splat_pattern, - STATE(3267), 1, + STATE(4182), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, + ACTIONS(2897), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(2893), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229431,67 +239835,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11522] = 24, - ACTIONS(1495), 1, + [24146] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2011), 1, - anon_sym_await, - ACTIONS(3171), 1, - anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2141), 1, anon_sym_LT, - STATE(2452), 1, + ACTIONS(2507), 1, + anon_sym_STAR, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2970), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3268), 1, + STATE(3102), 1, sym_primary_expression, + STATE(3416), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1901), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229513,153 +239917,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11628] = 24, - ACTIONS(1495), 1, + [24252] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2011), 1, - anon_sym_await, - ACTIONS(3171), 1, - anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(2589), 1, - sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3222), 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, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4389), 1, sym_identifier, - 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, - [11734] = 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, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(4476), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, - anon_sym_STAR, - STATE(2428), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2801), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -229677,67 +240001,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11840] = 24, - ACTIONS(67), 1, + [24362] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(2951), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(4377), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4379), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2615), 1, sym_string, - STATE(2599), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(2804), 1, + STATE(4184), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(2949), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(2945), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229759,71 +240083,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11946] = 24, - ACTIONS(67), 1, + [24468] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_await, - ACTIONS(3023), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4478), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2809), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -229841,67 +240167,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12052] = 24, - ACTIONS(67), 1, + [24578] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1977), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(3713), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(3717), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2810), 1, + STATE(3324), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1471), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1973), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -229923,67 +240249,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12158] = 24, - ACTIONS(67), 1, + [24684] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(4003), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(4355), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4357), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2813), 1, + STATE(4339), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(3999), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -230005,71 +240331,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12264] = 24, - ACTIONS(67), 1, + [24790] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_await, - ACTIONS(3023), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(4452), 1, + sym_identifier, + ACTIONS(4480), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2814), 1, + STATE(4371), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3399), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4367), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -230087,67 +240415,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12370] = 24, - ACTIONS(67), 1, + [24900] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, anon_sym_await, - ACTIONS(3023), 1, - anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(3855), 1, anon_sym_STAR, - STATE(2428), 1, + ACTIONS(3859), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2687), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2815), 1, + STATE(2967), 1, sym_primary_expression, + STATE(3264), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1598), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1875), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -230169,71 +240497,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12476] = 24, - ACTIONS(1495), 1, + [25006] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4482), 1, + sym_identifier, + ACTIONS(4486), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(3039), 1, + STATE(4373), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(4278), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4484), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -230251,67 +240581,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12582] = 24, - ACTIONS(1495), 1, + [25116] = 24, + ACTIONS(1919), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1925), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1933), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1935), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1943), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1949), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1951), 1, sym_string_start, - ACTIONS(1965), 1, + ACTIONS(1969), 1, anon_sym_await, - ACTIONS(2191), 1, - anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(3869), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2569), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2649), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3040), 1, + STATE(2979), 1, sym_primary_expression, + STATE(3059), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1937), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1939), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1941), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1917), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1965), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1923), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3044), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -230333,67 +240663,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12688] = 24, - ACTIONS(1495), 1, + [25222] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(2507), 1, anon_sym_STAR, - STATE(2452), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2970), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3041), 1, + STATE(3103), 1, sym_primary_expression, + STATE(3416), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1901), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1881), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -230415,71 +240745,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12794] = 26, - ACTIONS(1495), 1, + [25328] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4403), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4407), 1, + ACTIONS(4488), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4384), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2773), 2, + STATE(4268), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(4331), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -230499,67 +240829,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12904] = 24, - ACTIONS(1495), 1, + [25438] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1965), 1, + ACTIONS(1871), 1, anon_sym_await, - ACTIONS(2191), 1, - anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(3723), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3727), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(3042), 1, + STATE(2989), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -230581,71 +240911,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13010] = 24, - ACTIONS(1632), 1, + [25544] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1489), 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, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2461), 1, + ACTIONS(4490), 1, + sym_identifier, + ACTIONS(4494), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2663), 1, sym_string, - STATE(2789), 1, - sym_primary_expression, - STATE(3178), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4375), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3363), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(4492), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -230663,71 +240995,157 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13116] = 24, - ACTIONS(67), 1, + [25654] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - 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(2547), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2428), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4496), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2729), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 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, + [25764] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(2221), 1, + anon_sym_LT, + ACTIONS(4305), 1, + sym_identifier, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4311), 1, + anon_sym_await, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(2663), 1, + sym_string, + STATE(3109), 1, + sym_list_splat_pattern, + STATE(4377), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1483), 2, + sym_true, + sym_false, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2659), 2, sym_attribute, sym_subscript, + ACTIONS(1562), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4309), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3111), 19, + sym_binary_operator, + sym_unary_operator, sym_ellipsis, sym_call, sym_list, @@ -230745,71 +241163,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13222] = 26, - ACTIONS(1495), 1, + [25874] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4383), 1, - anon_sym_await, - ACTIONS(4409), 1, + ACTIONS(4442), 1, sym_identifier, - STATE(2452), 1, + ACTIONS(4498), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4093), 1, + STATE(4384), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2401), 2, + STATE(3278), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4381), 5, + ACTIONS(4444), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -230829,71 +241247,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13332] = 26, - ACTIONS(1495), 1, + [25984] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4385), 1, - anon_sym_await, - ACTIONS(4411), 1, + ACTIONS(4454), 1, sym_identifier, - STATE(2452), 1, + ACTIONS(4500), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4108), 1, + STATE(4371), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2558), 2, + STATE(3165), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4337), 5, + ACTIONS(4456), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -230913,71 +241331,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13442] = 24, - ACTIONS(1931), 1, + [26094] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1941), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1947), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1955), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1959), 1, - anon_sym_await, - ACTIONS(1961), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1963), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2027), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2485), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2459), 1, + ACTIONS(4460), 1, + sym_identifier, + ACTIONS(4502), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2698), 1, + STATE(2663), 1, sym_string, - STATE(2718), 1, - sym_primary_expression, - STATE(3221), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(4372), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1951), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1953), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1929), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1939), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(2883), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1935), 5, + ACTIONS(4462), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3062), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -230995,71 +241415,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13548] = 24, - ACTIONS(1495), 1, + [26204] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4389), 1, + sym_identifier, + ACTIONS(4504), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2882), 1, + STATE(4374), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3093), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(4391), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -231077,71 +241499,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13654] = 26, - ACTIONS(1495), 1, + [26314] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4413), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4417), 1, + ACTIONS(4506), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4384), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(4023), 2, + STATE(3278), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4415), 5, + ACTIONS(4444), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -231161,71 +241583,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13764] = 24, - ACTIONS(67), 1, + [26424] = 26, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - 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(2547), 1, + ACTIONS(2221), 1, anon_sym_LT, - STATE(2428), 1, + ACTIONS(4307), 1, + anon_sym_STAR, + ACTIONS(4454), 1, + sym_identifier, + ACTIONS(4508), 1, + anon_sym_await, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2705), 1, + STATE(4371), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, - sym_identifier, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(3165), 2, + sym_attribute, + sym_subscript, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(4456), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -231243,71 +241667,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13870] = 26, - ACTIONS(1495), 1, + [26534] = 26, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4403), 1, + ACTIONS(4460), 1, sym_identifier, - ACTIONS(4419), 1, + ACTIONS(4510), 1, anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4372), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1483), 2, sym_true, sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2773), 2, + STATE(2883), 2, sym_attribute, sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(4462), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 19, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -231327,67 +241751,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13980] = 24, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + [26644] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(1909), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(2479), 1, - anon_sym_LT, - ACTIONS(2843), 1, + ACTIONS(2495), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2575), 1, sym_string, - STATE(2843), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(2855), 1, + STATE(2917), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1905), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -231409,67 +241833,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14086] = 24, - ACTIONS(67), 1, + [26750] = 24, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1654), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(1583), 1, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1953), 1, anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1595), 1, + ACTIONS(1961), 1, anon_sym_await, - ACTIONS(2592), 1, - anon_sym_STAR, - STATE(2428), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(3252), 1, sym_string, - STATE(2599), 1, - sym_list_splat_pattern, - STATE(2667), 1, + STATE(3341), 1, sym_primary_expression, + STATE(3516), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -231491,67 +241915,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14192] = 24, - ACTIONS(1495), 1, + [26856] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(1965), 1, - anon_sym_await, - ACTIONS(2191), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(2787), 1, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2452), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3037), 1, + STATE(2806), 1, sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1521), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1509), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -231573,73 +241997,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14298] = 26, - ACTIONS(1495), 1, + [26962] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2465), 1, anon_sym_STAR, - ACTIONS(4421), 1, - sym_identifier, - ACTIONS(4425), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4081), 1, + STATE(2807), 1, sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1827), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(2879), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4423), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -231657,67 +242079,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14408] = 24, - ACTIONS(1931), 1, + [27068] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1941), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1947), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1955), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1959), 1, + ACTIONS(1857), 1, anon_sym_await, - ACTIONS(1961), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1963), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2027), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(2485), 1, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2459), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2698), 1, + STATE(2615), 1, sym_string, - STATE(2758), 1, + STATE(2808), 1, sym_primary_expression, - STATE(3221), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1951), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1953), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1929), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1939), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1935), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3062), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -231739,73 +242161,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14514] = 26, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + [27174] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1654), 1, + anon_sym_LT, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(4427), 1, - sym_identifier, - ACTIONS(4429), 1, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, anon_sym_await, - STATE(2452), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(3252), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4072), 1, + STATE(3344), 1, sym_primary_expression, + STATE(3516), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1662), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1674), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(2773), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -231823,73 +242243,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14624] = 26, - ACTIONS(1495), 1, + [27280] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2465), 1, anon_sym_STAR, - ACTIONS(4365), 1, - sym_identifier, - ACTIONS(4371), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4082), 1, + STATE(2809), 1, sym_primary_expression, + STATE(2958), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1827), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(3348), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4369), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -231907,67 +242325,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14734] = 24, - ACTIONS(1849), 1, + [27386] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1855), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1859), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1865), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1873), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1875), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1877), 1, + ACTIONS(1857), 1, anon_sym_await, - ACTIONS(1879), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1881), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2057), 1, + ACTIONS(2039), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2455), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2557), 1, + STATE(2615), 1, sym_string, - STATE(2657), 1, + STATE(2810), 1, sym_primary_expression, - STATE(2895), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1869), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1871), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1847), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1857), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1853), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2897), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -231989,67 +242407,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14840] = 24, - ACTIONS(1632), 1, + [27492] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1861), 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, + ACTIONS(2039), 1, + anon_sym_LT, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2461), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2615), 1, sym_string, - STATE(2746), 1, + STATE(2811), 1, sym_primary_expression, - STATE(3178), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232071,67 +242489,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14946] = 24, - ACTIONS(1632), 1, + [27598] = 24, + ACTIONS(1829), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1857), 1, + anon_sym_await, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1861), 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, + ACTIONS(2039), 1, + anon_sym_LT, + ACTIONS(2465), 1, anon_sym_STAR, - STATE(2461), 1, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2615), 1, sym_string, - STATE(2747), 1, + STATE(2812), 1, sym_primary_expression, - STATE(3178), 1, + STATE(2958), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(1847), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1827), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1837), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232153,151 +242571,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15052] = 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(4431), 1, - sym_identifier, - ACTIONS(4435), 1, - anon_sym_await, - 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(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, + [27704] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(1792), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1535), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(2435), 1, + ACTIONS(2495), 1, anon_sym_STAR, - STATE(2461), 1, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2575), 1, sym_string, - STATE(2749), 1, - sym_primary_expression, - STATE(3178), 1, + STATE(2689), 1, sym_list_splat_pattern, + STATE(2918), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(81), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232319,67 +242653,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15268] = 24, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(1816), 1, + [27810] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1820), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1654), 1, + anon_sym_LT, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1826), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1836), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1838), 1, - anon_sym_await, - ACTIONS(1840), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1842), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(2163), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(2171), 1, - anon_sym_LT, - STATE(2456), 1, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, + anon_sym_await, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(2634), 1, + STATE(3252), 1, sym_string, - STATE(2651), 1, + STATE(3322), 1, sym_primary_expression, - STATE(2890), 1, + STATE(3516), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1830), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1808), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1818), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1814), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2971), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232401,67 +242735,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15374] = 24, - ACTIONS(1632), 1, + [27916] = 24, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, + ACTIONS(1654), 1, anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(1792), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1953), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(1961), 1, anon_sym_await, - ACTIONS(2435), 1, - anon_sym_STAR, - STATE(2461), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(3252), 1, sym_string, - STATE(2750), 1, + STATE(3353), 1, sym_primary_expression, - STATE(3178), 1, + STATE(3516), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(1662), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1674), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232483,67 +242817,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15480] = 24, - ACTIONS(1632), 1, + [28022] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1792), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(1987), 1, anon_sym_await, - ACTIONS(2435), 1, + ACTIONS(3693), 1, anon_sym_STAR, - STATE(2461), 1, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2663), 1, sym_string, - STATE(2751), 1, - sym_primary_expression, - STATE(3178), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(3438), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1985), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232565,67 +242899,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15586] = 24, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + [28128] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(87), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(89), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(115), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(117), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1541), 1, + anon_sym_LBRACK, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2495), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(2499), 1, + anon_sym_LT, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2575), 1, sym_string, - STATE(2843), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(4078), 1, + STATE(2920), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(81), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(83), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(85), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(95), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232647,67 +242981,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15692] = 24, - ACTIONS(1495), 1, + [28234] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1987), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(3693), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4085), 1, + STATE(3407), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1985), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232729,7 +243063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15798] = 24, + [28340] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(77), 1, @@ -232744,23 +243078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(117), 1, sym_string_start, - ACTIONS(1583), 1, + ACTIONS(1535), 1, anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1541), 1, anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1802), 1, anon_sym_await, - ACTIONS(2543), 1, + ACTIONS(2495), 1, anon_sym_STAR, - ACTIONS(2547), 1, + ACTIONS(2499), 1, anon_sym_LT, - STATE(2428), 1, + STATE(2542), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2575), 1, sym_string, - STATE(2599), 1, + STATE(2689), 1, sym_list_splat_pattern, - STATE(2802), 1, + STATE(2921), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -232778,18 +243112,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1885), 4, + ACTIONS(1798), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1539), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(2684), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232811,67 +243145,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [15904] = 24, - ACTIONS(1495), 1, + [28446] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1987), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(3693), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4090), 1, + STATE(3432), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1985), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232893,67 +243227,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16010] = 24, - ACTIONS(1495), 1, + [28552] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1987), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(3693), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4094), 1, + STATE(3439), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1985), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -232975,73 +243309,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16116] = 26, - ACTIONS(1495), 1, + [28658] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4403), 1, - sym_identifier, - ACTIONS(4437), 1, + ACTIONS(1987), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3693), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(3440), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1985), 2, anon_sym_0x, anon_sym_0X, - STATE(2773), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -233059,67 +243391,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16226] = 24, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + [28764] = 24, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1594), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1596), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1604), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1606), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1624), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1626), 1, sym_string_start, - ACTIONS(1616), 1, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(2975), 1, anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4351), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(4353), 1, + anon_sym_LT, + STATE(2576), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2687), 1, sym_string, - STATE(2843), 1, + STATE(3264), 1, sym_list_splat_pattern, - STATE(4095), 1, + STATE(4210), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1600), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1602), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(2973), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1610), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(2969), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3261), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233141,67 +243473,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16332] = 24, - ACTIONS(1694), 1, + [28870] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - anon_sym_LT, - ACTIONS(1706), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1708), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1718), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1726), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1919), 1, - anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1987), 1, anon_sym_await, - STATE(2524), 1, + ACTIONS(3693), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(3015), 1, + STATE(2663), 1, sym_string, - STATE(3113), 1, - sym_primary_expression, - STATE(3359), 1, + STATE(3109), 1, sym_list_splat_pattern, + STATE(3448), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1722), 3, + ACTIONS(1985), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1696), 4, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1923), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3333), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233223,67 +243555,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16438] = 24, - ACTIONS(1495), 1, + [28976] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(1616), 1, - anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2660), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4099), 1, + STATE(2822), 1, sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233305,67 +243637,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16544] = 24, - ACTIONS(1495), 1, + [29082] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(1616), 1, - anon_sym_await, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2452), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2660), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4100), 1, + STATE(2823), 1, sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1610), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233387,67 +243719,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16650] = 24, - ACTIONS(1632), 1, + [29188] = 24, + ACTIONS(1762), 1, + anon_sym_LPAREN, + ACTIONS(1768), 1, + anon_sym_LBRACK, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, - anon_sym_LT, - ACTIONS(1642), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1644), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1652), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1654), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1672), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1674), 1, + ACTIONS(1794), 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, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2461), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2687), 1, + STATE(2660), 1, sym_string, - STATE(2752), 1, + STATE(2824), 1, sym_primary_expression, - STATE(3178), 1, + STATE(3218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(1780), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1648), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1650), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1658), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1630), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1895), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3183), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233469,73 +243801,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16756] = 26, - ACTIONS(1495), 1, + [29294] = 24, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1897), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1909), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2141), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2507), 1, anon_sym_STAR, - ACTIONS(4391), 1, - anon_sym_await, - ACTIONS(4439), 1, - sym_identifier, - STATE(2452), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2970), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4083), 1, + STATE(3272), 1, sym_primary_expression, + STATE(3416), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1901), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1881), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(3240), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1891), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4389), 5, + ACTIONS(1887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3400), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -233553,67 +243883,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16866] = 24, - ACTIONS(1969), 1, + [29400] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1985), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1995), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1790), 1, anon_sym_await, - ACTIONS(1999), 1, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(2001), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(2147), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2111), 1, anon_sym_STAR, - STATE(2488), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2727), 1, + STATE(2660), 1, sym_string, - STATE(2913), 1, + STATE(2825), 1, sym_primary_expression, - STATE(3239), 1, + STATE(3218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1780), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(1989), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1967), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1977), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1973), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3225), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233635,73 +243965,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16972] = 26, - ACTIONS(1495), 1, + [29506] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(4441), 1, - sym_identifier, - ACTIONS(4445), 1, - anon_sym_await, - STATE(2452), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2660), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4084), 1, + STATE(2826), 1, sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1760), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(3181), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4443), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -233719,67 +244047,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17082] = 24, - ACTIONS(1495), 1, + [29612] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(2011), 1, - anon_sym_await, - ACTIONS(3171), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(3175), 1, + ACTIONS(2119), 1, anon_sym_LT, - STATE(2452), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2660), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(3305), 1, + STATE(2827), 1, sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(2009), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(1531), 3, + ACTIONS(1760), 3, sym_identifier, sym_true, sym_false, - ACTIONS(2005), 4, + ACTIONS(1770), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(1766), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 21, + STATE(3045), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233801,73 +244129,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17188] = 26, - ACTIONS(1495), 1, + [29718] = 24, + ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1768), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1772), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1788), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1790), 1, + anon_sym_await, + ACTIONS(1792), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(4447), 1, + ACTIONS(2119), 1, + anon_sym_LT, + STATE(2573), 1, + aux_sym_integer_repeat4, + STATE(2660), 1, + sym_string, + STATE(2828), 1, + sym_primary_expression, + STATE(3218), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1780), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1782), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1784), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1760), 3, sym_identifier, - ACTIONS(4451), 1, + sym_true, + sym_false, + ACTIONS(1770), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1766), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3045), 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, + [29824] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, + anon_sym_LBRACE, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1479), 1, + sym_float, + ACTIONS(1487), 1, + anon_sym_sizeof, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(1987), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3693), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_LT, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4086), 1, + STATE(3465), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1985), 2, anon_sym_0x, anon_sym_0X, - STATE(2898), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1981), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4449), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -233885,67 +244293,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17298] = 24, - ACTIONS(67), 1, + [29930] = 24, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(87), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(89), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(115), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(117), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(1583), 1, - anon_sym_LPAREN, - ACTIONS(1589), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1568), 1, anon_sym_await, - ACTIONS(3023), 1, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(3491), 1, + ACTIONS(4307), 1, anon_sym_STAR, - STATE(2428), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2457), 1, + STATE(2663), 1, sym_string, - STATE(2599), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(2806), 1, + STATE(4322), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 2, - anon_sym_0x, - anon_sym_0X, - ACTIONS(83), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(85), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(95), 3, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1483), 3, sym_identifier, sym_true, sym_false, - ACTIONS(1913), 4, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1587), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2544), 21, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -233967,73 +244375,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17404] = 26, - ACTIONS(1495), 1, + [30036] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(1568), 1, + anon_sym_await, + ACTIONS(2221), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4307), 1, anon_sym_STAR, - ACTIONS(4365), 1, - sym_identifier, - ACTIONS(4453), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4070), 1, + STATE(4323), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(3348), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1562), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4369), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -234051,73 +244457,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17514] = 26, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + [30142] = 24, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1654), 1, + anon_sym_LT, + ACTIONS(1658), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1670), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1678), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(1754), 1, anon_sym_STAR, - ACTIONS(4351), 1, - sym_identifier, - ACTIONS(4455), 1, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, anon_sym_await, - STATE(2452), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(3252), 1, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4072), 1, + STATE(3301), 1, sym_primary_expression, + STATE(3516), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1662), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1674), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(4032), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1648), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4355), 5, + ACTIONS(1957), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3505), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -234135,73 +244539,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17624] = 26, - ACTIONS(1495), 1, + [30248] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4457), 1, - sym_identifier, - ACTIONS(4461), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4079), 1, + STATE(4220), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(3406), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4459), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -234219,73 +244621,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17734] = 26, - ACTIONS(1495), 1, + [30354] = 24, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1457), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1467), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1479), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1487), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(2233), 1, + ACTIONS(2787), 1, + anon_sym_await, + ACTIONS(4259), 1, anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(4381), 1, anon_sym_STAR, - ACTIONS(4403), 1, - sym_identifier, - ACTIONS(4463), 1, - anon_sym_await, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2663), 1, sym_string, - STATE(2843), 1, + STATE(3109), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4222), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, - sym_true, - sym_false, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(2773), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1483), 3, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2783), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(1558), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(3111), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -234303,73 +244703,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17844] = 26, - ACTIONS(1495), 1, + [30460] = 24, + ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1839), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1843), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1517), 1, + ACTIONS(1845), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1853), 1, aux_sym_integer_token4, - ACTIONS(1527), 1, + ACTIONS(1855), 1, sym_float, - ACTIONS(1535), 1, + ACTIONS(1859), 1, anon_sym_sizeof, - ACTIONS(1537), 1, + ACTIONS(1861), 1, sym_string_start, - ACTIONS(2233), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_STAR, - ACTIONS(4403), 1, - sym_identifier, - ACTIONS(4465), 1, + ACTIONS(1871), 1, anon_sym_await, - STATE(2452), 1, + ACTIONS(3723), 1, + anon_sym_STAR, + ACTIONS(3727), 1, + anon_sym_LT, + STATE(2562), 1, aux_sym_integer_repeat4, - STATE(2589), 1, + STATE(2615), 1, sym_string, - STATE(2843), 1, + STATE(2958), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(3026), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1847), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(1849), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1851), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1531), 2, + ACTIONS(1827), 3, + sym_identifier, sym_true, sym_false, - ACTIONS(1614), 2, - anon_sym_0x, - anon_sym_0X, - STATE(2773), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1867), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4405), 5, + ACTIONS(1833), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2885), 19, + STATE(2836), 21, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -234387,710 +244785,1591 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17954] = 26, - ACTIONS(1495), 1, + [30566] = 5, + ACTIONS(4518), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4516), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(4514), 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(4512), 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, + [30633] = 5, + ACTIONS(4526), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4524), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(4522), 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(4520), 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, + [30700] = 10, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(4528), 1, + sym_identifier, + ACTIONS(4530), 1, + sym_string_start, + STATE(6360), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1076), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1057), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, 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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1090), 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(1059), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT, - ACTIONS(4335), 1, + anon_sym_GT, + [30775] = 10, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(4532), 1, + anon_sym_for, + ACTIONS(4534), 1, + anon_sym_with, + ACTIONS(4536), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1076), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1090), 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(1059), 15, anon_sym_STAR, - ACTIONS(4403), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1057), 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, + [30850] = 10, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(4538), 1, + anon_sym_for, + ACTIONS(4540), 1, + anon_sym_with, + ACTIONS(4542), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1076), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1090), 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(1059), 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(1057), 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, + [30925] = 11, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(1076), 1, + anon_sym_EQ, + ACTIONS(1198), 1, + anon_sym_COLON, + ACTIONS(4528), 1, sym_identifier, - ACTIONS(4467), 1, - anon_sym_await, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(2589), 1, + ACTIONS(4530), 1, + sym_string_start, + STATE(6360), 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(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(2773), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(1057), 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(1090), 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(1059), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + 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_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, + [31002] = 10, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4414), 1, + anon_sym_EQ, + ACTIONS(4544), 1, + anon_sym_COLON, + ACTIONS(4547), 1, + anon_sym_LBRACK, + STATE(5928), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 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(4408), 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(4397), 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, + [31075] = 8, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(1076), 1, + anon_sym_EQ, + ACTIONS(1198), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1090), 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(1059), 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(1057), 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, + [31143] = 7, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4414), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(4418), 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(4408), 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(4397), 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, + [31209] = 7, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1076), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1090), 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(1059), 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(1057), 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, + [31275] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4551), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4557), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4554), 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(4549), 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, + [31336] = 6, + ACTIONS(4561), 1, + anon_sym_COMMA, + ACTIONS(4568), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4566), 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(4564), 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(4559), 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, + [31399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4572), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31456] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4576), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4574), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4578), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31570] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1554), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1812), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1551), 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(1549), 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, + [31631] = 6, + ACTIONS(4414), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4403), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4418), 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(4408), 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(4397), 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, + [31694] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4578), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4584), 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(4405), 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, - [18064] = 24, - ACTIONS(1632), 1, - anon_sym_LBRACE, - ACTIONS(1636), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4582), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1891), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31808] = 7, + ACTIONS(4588), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4551), 2, anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_await, - ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(4586), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(4557), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4554), 12, anon_sym_STAR, - STATE(2461), 1, - aux_sym_integer_repeat4, - STATE(2687), 1, - sym_string, - STATE(2753), 1, - sym_primary_expression, - STATE(3178), 1, - sym_list_splat_pattern, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4549), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31873] = 3, 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, + ACTIONS(4592), 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(1895), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [18170] = 26, - ACTIONS(1495), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4590), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1501), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, 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(4439), 1, - sym_identifier, - ACTIONS(4469), 1, - anon_sym_await, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(2589), 1, - sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4084), 1, - sym_primary_expression, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31930] = 6, + ACTIONS(4601), 1, + anon_sym_EQ, 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(3240), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(4596), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4603), 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(4599), 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(4389), 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, - [18280] = 26, - ACTIONS(1495), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4594), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1501), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4471), 1, - sym_identifier, - ACTIONS(4475), 1, - anon_sym_await, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(2589), 1, - sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4087), 1, - sym_primary_expression, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [31993] = 6, + ACTIONS(4596), 1, + anon_sym_COMMA, + ACTIONS(4601), 1, + anon_sym_EQ, 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(3999), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(4603), 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(4599), 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(4473), 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, - [18390] = 26, - ACTIONS(1495), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4594), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1501), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4477), 1, - anon_sym_await, - 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, + 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, + [32056] = 6, + ACTIONS(4414), 1, + anon_sym_EQ, 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(3998), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(4607), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4418), 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(4610), 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(4361), 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, - [18500] = 26, - ACTIONS(1495), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4605), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1501), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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(4479), 1, - sym_identifier, - ACTIONS(4483), 1, - anon_sym_await, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(2589), 1, - sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(4112), 1, - sym_primary_expression, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [32119] = 6, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4414), 1, + anon_sym_EQ, 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(3212), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(4418), 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(4408), 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(4481), 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, - [18610] = 26, - ACTIONS(1495), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1501), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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, - 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, + 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, + [32182] = 6, + ACTIONS(4414), 1, + anon_sym_EQ, + ACTIONS(4607), 1, + anon_sym_COMMA, 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(2558), 2, - sym_attribute, - sym_subscript, - ACTIONS(1610), 4, + ACTIONS(4418), 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(4610), 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(4337), 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, - [18720] = 24, - ACTIONS(1632), 1, - anon_sym_LBRACE, - ACTIONS(1636), 1, + anon_sym_CARET, + anon_sym_LT_LT, 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_GT, + ACTIONS(4605), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, 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(2755), 1, - sym_primary_expression, - STATE(3178), 1, - sym_list_splat_pattern, + 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, + [32245] = 6, + ACTIONS(4568), 1, + anon_sym_EQ, 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, + ACTIONS(4561), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4566), 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(4564), 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(1895), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [18826] = 17, - ACTIONS(4487), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4559), 17, + sym__newline, + anon_sym_SEMI, 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_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, 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, + 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, + [32308] = 3, 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, + ACTIONS(4592), 16, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(4496), 12, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -235098,15 +246377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 13, + ACTIONS(4590), 32, + sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -235116,7 +246402,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -235130,1642 +246415,2481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18918] = 24, - ACTIONS(1495), 1, + [32365] = 27, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + STATE(7331), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2532), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [32469] = 27, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 1, + sym_string_start, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + STATE(7298), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2531), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [32573] = 27, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 1, + sym_string_start, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + STATE(7100), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2529), 5, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(2871), 1, - sym_primary_expression, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [32677] = 27, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_COLON, + ACTIONS(4652), 1, + anon_sym_api, + ACTIONS(4654), 1, + anon_sym_extern, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4662), 1, + anon_sym_enum, + ACTIONS(4664), 1, + anon_sym_cppclass, + ACTIONS(4666), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5072), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4660), 2, + anon_sym_struct, + anon_sym_union, + STATE(3312), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2083), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(2085), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(113), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2084), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4648), 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, - [19024] = 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(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(2872), 1, - sym_primary_expression, + [32781] = 27, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4652), 1, + anon_sym_api, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4672), 1, + anon_sym_COLON, + ACTIONS(4674), 1, + anon_sym_extern, + ACTIONS(4678), 1, + anon_sym_enum, + ACTIONS(4680), 1, + anon_sym_cppclass, + ACTIONS(4682), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5025), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4676), 2, + anon_sym_struct, + anon_sym_union, + STATE(3315), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2190), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(2191), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(113), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2132), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4670), 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, - [19130] = 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, - ACTIONS(1879), 1, - anon_sym_sizeof, - ACTIONS(1881), 1, + [32885] = 27, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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(2669), 1, - sym_primary_expression, - STATE(2895), 1, - sym_list_splat_pattern, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + STATE(7208), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1853), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19236] = 24, - ACTIONS(1495), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2530), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [32989] = 26, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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(2877), 1, - sym_primary_expression, + ACTIONS(4684), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19342] = 24, - ACTIONS(1495), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2533), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [33090] = 26, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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(2878), 1, - sym_primary_expression, + ACTIONS(4686), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19448] = 24, - ACTIONS(1495), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2533), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [33191] = 26, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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(2884), 1, - sym_primary_expression, + ACTIONS(4688), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19554] = 24, - ACTIONS(1495), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2533), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [33292] = 26, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4634), 1, + anon_sym_ctypedef, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(4644), 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(2888), 1, - sym_primary_expression, + ACTIONS(4690), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4622), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19660] = 24, - ACTIONS(1495), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2533), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [33393] = 26, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4695), 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, + ACTIONS(4698), 1, + anon_sym_class, + ACTIONS(4716), 1, + anon_sym_long, + ACTIONS(4722), 1, + anon_sym_ctypedef, + ACTIONS(4728), 1, + anon_sym_enum, + ACTIONS(4731), 1, + anon_sym_cppclass, + ACTIONS(4734), 1, + anon_sym_fused, + ACTIONS(4737), 1, + sym__dedent, + ACTIONS(4739), 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, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4704), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4710), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4713), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4719), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4725), 2, + anon_sym_struct, + anon_sym_union, + STATE(3641), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4707), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4701), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2533), 5, sym_string, - STATE(2843), 1, - sym_list_splat_pattern, - STATE(2889), 1, - sym_primary_expression, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [33494] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4758), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [33593] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4760), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [33692] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4762), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [33791] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4764), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1606), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19766] = 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, - ACTIONS(1961), 1, - anon_sym_sizeof, - 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(2723), 1, - sym_primary_expression, - STATE(3221), 1, - sym_list_splat_pattern, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [33890] = 26, + ACTIONS(4766), 1, + sym_identifier, + ACTIONS(4769), 1, + anon_sym_class, + ACTIONS(4775), 1, + anon_sym_extern, + ACTIONS(4781), 1, + anon_sym_operator, + ACTIONS(4790), 1, + anon_sym_long, + ACTIONS(4796), 1, + anon_sym_ctypedef, + ACTIONS(4802), 1, + anon_sym_enum, + ACTIONS(4805), 1, + anon_sym_cppclass, + ACTIONS(4808), 1, + anon_sym_fused, + ACTIONS(4811), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1935), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4784), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4787), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4793), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4799), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(4778), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4772), 5, 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19872] = 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, - 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(2599), 1, - sym_list_splat_pattern, - STATE(2724), 1, - sym_primary_expression, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [33989] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4813), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1587), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [19978] = 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(4413), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34088] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4512), 1, - anon_sym_await, - 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(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4815), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_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(1531), 2, - sym_true, - sym_false, - 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(4415), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [20088] = 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, - ACTIONS(1961), 1, - anon_sym_sizeof, - 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(2713), 1, - sym_primary_expression, - STATE(3221), 1, - sym_list_splat_pattern, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34187] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4817), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1935), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20194] = 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, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34286] = 9, + ACTIONS(4823), 1, aux_sym_integer_token4, - ACTIONS(1957), 1, - sym_float, - ACTIONS(1959), 1, - anon_sym_await, - ACTIONS(1961), 1, - anon_sym_sizeof, - ACTIONS(1963), 1, - sym_string_start, - ACTIONS(2027), 1, - anon_sym_LT, - ACTIONS(2485), 1, - anon_sym_STAR, - STATE(2459), 1, + ACTIONS(4825), 1, + aux_sym_integer_token5, + ACTIONS(4827), 1, + sym_c_integer_signedness, + ACTIONS(4829), 1, + aux_sym_c_integer_type_token1, + STATE(2547), 1, aux_sym_integer_repeat4, - STATE(2698), 1, - sym_string, - STATE(2714), 1, - sym_primary_expression, - STATE(3221), 1, - sym_list_splat_pattern, + STATE(2658), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4821), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4819), 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_with, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, 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(1935), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20300] = 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, - ACTIONS(1840), 1, - anon_sym_sizeof, - 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(2655), 1, - sym_primary_expression, - STATE(2890), 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, + anon_sym_nogil, + [34351] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4831), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, 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, - 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [20406] = 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, - ACTIONS(1961), 1, - anon_sym_sizeof, - 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(2716), 1, - sym_primary_expression, - STATE(3221), 1, - sym_list_splat_pattern, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34450] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4833), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1935), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20512] = 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, - ACTIONS(1961), 1, - anon_sym_sizeof, - 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(2717), 1, - sym_primary_expression, - STATE(3221), 1, - sym_list_splat_pattern, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34549] = 26, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + ACTIONS(4835), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1935), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20618] = 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(4403), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2538), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34648] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_await, - 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(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_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(1531), 2, - sym_true, - sym_false, - 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(4405), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, 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, - [20728] = 5, - ACTIONS(4520), 1, - anon_sym_DQUOTE_DQUOTE, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2544), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34744] = 5, + ACTIONS(4841), 1, + aux_sym_integer_token4, + STATE(2547), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4518), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(4516), 20, + ACTIONS(4839), 5, 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(4514), 31, + ACTIONS(4837), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, 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, - anon_sym_delete, - ACTIONS(4524), 20, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_EQ, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_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_LT, + anon_sym_is, 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, + anon_sym_LT_GT, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [34800] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2543), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34896] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2535), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [34992] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2545), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35088] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2540), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35184] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2534), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35280] = 8, + ACTIONS(4827), 1, + sym_c_integer_signedness, + ACTIONS(4829), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4848), 1, + aux_sym_integer_token1, + STATE(2563), 1, + aux_sym_integer_repeat1, + STATE(2750), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 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(981), 17, + ACTIONS(4844), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + anon_sym_nogil, + [35342] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4538), 1, - sym_string_start, - STATE(5799), 1, - sym_string, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1000), 2, - anon_sym_COLON, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2536), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35438] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2541), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35534] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2537), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35630] = 8, + ACTIONS(4827), 1, + sym_c_integer_signedness, + ACTIONS(4829), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4850), 1, + aux_sym_integer_token2, + STATE(2560), 1, + aux_sym_integer_repeat2, + STATE(2750), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(981), 10, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 33, sym__newline, anon_sym_SEMI, 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(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_COMMA, anon_sym_as, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -236773,65 +248897,53 @@ 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, - [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(4538), 1, - sym_string_start, - STATE(5799), 1, - sym_string, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [35692] = 8, + ACTIONS(4827), 1, + sym_c_integer_signedness, + ACTIONS(4829), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4852), 1, + aux_sym_integer_token3, + STATE(2561), 1, + aux_sym_integer_repeat3, + STATE(2750), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(981), 10, + ACTIONS(4846), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 33, sym__newline, anon_sym_SEMI, 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(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_COMMA, anon_sym_as, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -236839,2636 +248951,1971 @@ 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, - [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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [35754] = 25, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, 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, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3668), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4118), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(4125), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2539), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [35850] = 5, + ACTIONS(4858), 1, + aux_sym_integer_token2, + STATE(2560), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4856), 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(981), 17, + ACTIONS(4854), 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_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_with, anon_sym_STAR_STAR, + anon_sym_in, + 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(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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [35905] = 5, + ACTIONS(4865), 1, + aux_sym_integer_token3, + STATE(2561), 1, + aux_sym_integer_repeat3, 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, + ACTIONS(4863), 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(4485), 17, + ACTIONS(4861), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [35960] = 9, + ACTIONS(4868), 1, + aux_sym_integer_token4, + ACTIONS(4870), 1, + aux_sym_integer_token5, + ACTIONS(4872), 1, + sym_c_integer_signedness, + ACTIONS(4874), 1, + aux_sym_c_integer_type_token1, + STATE(2574), 1, + aux_sym_integer_repeat4, + STATE(2952), 1, + sym_c_integer_type, 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, + ACTIONS(4821), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4819), 31, 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_STAR_STAR, anon_sym_in, 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, - [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, + anon_sym_by, + [36023] = 5, + ACTIONS(4880), 1, + aux_sym_integer_token1, + STATE(2563), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4878), 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(981), 17, + ACTIONS(4876), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_nogil, + [36078] = 8, + ACTIONS(4872), 1, + sym_c_integer_signedness, + ACTIONS(4874), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4883), 1, + aux_sym_integer_token1, + STATE(2589), 1, + aux_sym_integer_repeat1, + STATE(2866), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 16, + ACTIONS(4846), 5, + anon_sym_as, 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(4551), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, 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, - [21494] = 6, - ACTIONS(4557), 1, - anon_sym_COMMA, - ACTIONS(4564), 1, - anon_sym_EQ, + anon_sym_by, + [36138] = 8, + ACTIONS(4872), 1, + sym_c_integer_signedness, + ACTIONS(4874), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4885), 1, + aux_sym_integer_token2, + STATE(2604), 1, + aux_sym_integer_repeat2, + STATE(2866), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 31, + 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_in, + 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, + anon_sym_by, + [36198] = 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(2595), 1, + aux_sym_integer_repeat4, + STATE(3055), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4819), 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_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + anon_sym_by, + [36260] = 8, + ACTIONS(4872), 1, + sym_c_integer_signedness, + ACTIONS(4874), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4895), 1, + aux_sym_integer_token3, + STATE(2585), 1, + aux_sym_integer_repeat3, + STATE(2866), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 31, + 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_in, + 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_LT, - anon_sym_GT, - ACTIONS(4566), 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, + anon_sym_by, + [36320] = 13, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4897), 1, anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_complex, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4401), 2, anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4408), 4, anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 23, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + 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, - [21620] = 5, + [36390] = 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(2587), 1, + aux_sym_integer_repeat4, + STATE(3086), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1602), 3, - anon_sym_EQ, + ACTIONS(4821), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 3, + ACTIONS(4819), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1599), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, + 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(1597), 29, - 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, + anon_sym_by, + [36452] = 14, + ACTIONS(4403), 1, anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_complex, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4401), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4408), 4, anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 22, + 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_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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + [36524] = 5, + ACTIONS(117), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 16, + STATE(2572), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, 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(4573), 32, + ACTIONS(4915), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, - [21738] = 3, + anon_sym_nogil, + [36578] = 5, + ACTIONS(4923), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 16, + STATE(2572), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, 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(4577), 32, + ACTIONS(4919), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, - [21795] = 3, + anon_sym_nogil, + [36632] = 9, + ACTIONS(4926), 1, + aux_sym_integer_token4, + ACTIONS(4928), 1, + aux_sym_integer_token5, + ACTIONS(4930), 1, + sym_c_integer_signedness, + ACTIONS(4932), 1, + aux_sym_c_integer_type_token1, + STATE(2584), 1, + aux_sym_integer_repeat4, + STATE(3134), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 16, + ACTIONS(4821), 5, 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(4581), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4819), 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_STAR_STAR, anon_sym_in, 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, - [21852] = 3, + sym_type_conversion, + [36694] = 5, + ACTIONS(4934), 1, + aux_sym_integer_token4, + STATE(2574), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 16, + ACTIONS(4839), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4837), 34, + 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_EQ, + anon_sym_in, + 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [36748] = 5, + ACTIONS(117), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2571), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 32, + ACTIONS(4397), 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_with, + anon_sym_STAR_STAR, anon_sym_in, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, - [21909] = 5, + anon_sym_nogil, + [36802] = 9, + ACTIONS(4937), 1, + aux_sym_integer_token4, + ACTIONS(4939), 1, + aux_sym_integer_token5, + ACTIONS(4941), 1, + sym_c_integer_signedness, + ACTIONS(4943), 1, + aux_sym_c_integer_type_token1, + STATE(2591), 1, + aux_sym_integer_repeat4, + STATE(3056), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4593), 3, - anon_sym_EQ, + ACTIONS(4821), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4590), 13, - anon_sym_STAR, + ACTIONS(4819), 30, + 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_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, - anon_sym_and, - anon_sym_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, + anon_sym_by, + [36864] = 21, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(4967), 1, + anon_sym_PIPE, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(4971), 1, + anon_sym_AMP, + ACTIONS(4973), 1, + anon_sym_CARET, + ACTIONS(4975), 1, + anon_sym_is, + STATE(4229), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4953), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4955), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4965), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4977), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2329), 2, + sym__not_in, + sym__is_not, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(4959), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 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, + [36949] = 8, + ACTIONS(4930), 1, + sym_c_integer_signedness, + ACTIONS(4932), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4979), 1, + aux_sym_integer_token2, + STATE(2621), 1, + aux_sym_integer_repeat2, + STATE(3163), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_STAR_STAR, anon_sym_in, 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, - [22033] = 6, - ACTIONS(4502), 1, - anon_sym_EQ, + sym_type_conversion, + [37008] = 8, + ACTIONS(4941), 1, + sym_c_integer_signedness, + ACTIONS(4943), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4981), 1, + aux_sym_integer_token1, + STATE(2622), 1, + aux_sym_integer_repeat1, + STATE(3074), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 30, + 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_in, + 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, + anon_sym_by, + [37067] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(4983), 1, + aux_sym_integer_token3, + STATE(2630), 1, + aux_sym_integer_repeat3, + STATE(3132), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 30, 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_STAR_STAR, anon_sym_in, 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, - [22096] = 7, - ACTIONS(4597), 1, - anon_sym_PIPE, + anon_sym_by, + [37126] = 14, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_complex, + ACTIONS(4985), 1, + anon_sym_EQ, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4401), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(4593), 3, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4408), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4590), 12, - anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4901), 3, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(4585), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(4397), 21, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + [37197] = 21, + ACTIONS(4951), 1, anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_AMP, + ACTIONS(5009), 1, + anon_sym_CARET, + ACTIONS(5011), 1, + anon_sym_is, + STATE(4263), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4991), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4993), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5003), 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(5013), 2, 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, + STATE(2378), 2, + sym__not_in, + sym__is_not, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5001), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4997), 6, 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, - [22224] = 6, - ACTIONS(4601), 1, + ACTIONS(4949), 8, anon_sym_COMMA, - ACTIONS(4608), 1, - anon_sym_EQ, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [37282] = 8, + ACTIONS(4941), 1, + sym_c_integer_signedness, + ACTIONS(4943), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5015), 1, + aux_sym_integer_token3, + STATE(2637), 1, + aux_sym_integer_repeat3, + STATE(3074), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 30, + 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_in, + 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, + anon_sym_by, + [37341] = 5, + ACTIONS(5017), 1, + aux_sym_integer_token4, + STATE(2584), 1, + aux_sym_integer_repeat4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4839), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4837), 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_STAR_STAR, anon_sym_in, 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, - [22287] = 6, - ACTIONS(4608), 1, - anon_sym_EQ, + sym_type_conversion, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [37394] = 5, + ACTIONS(5020), 1, + aux_sym_integer_token3, + STATE(2585), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4863), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4861), 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_STAR_STAR, + anon_sym_in, + 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_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [37447] = 21, + ACTIONS(4951), 1, + anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5041), 1, + anon_sym_PIPE, + ACTIONS(5043), 1, + anon_sym_AMP, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5047), 1, + anon_sym_is, + STATE(2694), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5027), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5029), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, + STATE(2269), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5033), 6, 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, - [22350] = 6, - ACTIONS(4564), 1, - anon_sym_EQ, + ACTIONS(4949), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [37532] = 5, + ACTIONS(5051), 1, + aux_sym_integer_token4, + STATE(2587), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4839), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(4837), 33, 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_STAR_STAR, anon_sym_in, 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, - [22413] = 3, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [37585] = 21, + ACTIONS(4951), 1, + anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5041), 1, + anon_sym_PIPE, + ACTIONS(5043), 1, + anon_sym_AMP, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5047), 1, + anon_sym_is, + STATE(4165), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 16, + ACTIONS(5027), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5029), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5039), 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(5049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 32, + STATE(2269), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5033), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 8, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22470] = 3, + [37670] = 5, + ACTIONS(5054), 1, + aux_sym_integer_token1, + STATE(2589), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 16, + ACTIONS(4878), 5, + anon_sym_as, 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(4581), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4876), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, 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, - [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, - 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(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_await, - [22735] = 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(6946), 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(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(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(6906), 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(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, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4670), 1, - sym_identifier, - 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(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_await, - [23047] = 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(6959), 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(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(4689), 1, - anon_sym_LPAREN, - 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, - 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(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, - 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(4616), 1, - anon_sym_LPAREN, - 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(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(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(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(4616), 1, - anon_sym_LPAREN, - 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(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(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(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(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(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(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(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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [37723] = 21, + ACTIONS(4951), 1, + anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LPAREN, - 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(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(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(2417), 5, - sym_string, - 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(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, - 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(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(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_AMP, + ACTIONS(5009), 1, + anon_sym_CARET, + ACTIONS(5011), 1, + anon_sym_is, + STATE(2732), 1, + aux_sym_comparison_operator_repeat1, 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, - 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(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(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(4991), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4993), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5013), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2378), 2, + sym__not_in, + sym__is_not, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5001), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4997), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 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, + [37808] = 5, + ACTIONS(5057), 1, + aux_sym_integer_token4, + STATE(2591), 1, + aux_sym_integer_repeat4, 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, - 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(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(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(4839), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4837), 33, + 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_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [37861] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5060), 1, + aux_sym_integer_token2, + STATE(2618), 1, + aux_sym_integer_repeat2, + STATE(3132), 1, + sym_c_integer_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(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(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(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(4846), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 30, + 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_in, + 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_by, + [37920] = 8, + ACTIONS(4941), 1, + sym_c_integer_signedness, + ACTIONS(4943), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5062), 1, + aux_sym_integer_token2, + STATE(2614), 1, + aux_sym_integer_repeat2, + STATE(3074), 1, + sym_c_integer_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(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(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(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(4846), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 30, + 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_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [37979] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5064), 1, + aux_sym_integer_token1, + STATE(2639), 1, + aux_sym_integer_repeat1, + STATE(3132), 1, + sym_c_integer_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(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(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, + ACTIONS(4846), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 30, + 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_in, + 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_by, + [38038] = 5, + ACTIONS(5066), 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, + STATE(2595), 1, aux_sym_integer_repeat4, - STATE(2562), 1, - sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(4839), 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(4837), 33, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -239488,552 +250935,455 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [38091] = 26, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5069), 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, - 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(5071), 1, + anon_sym_LPAREN, + ACTIONS(5073), 1, + anon_sym_STAR, + ACTIONS(5075), 1, + anon_sym_if, + ACTIONS(5077), 1, + anon_sym_COLON, + ACTIONS(5079), 1, + anon_sym_STAR_STAR, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5843), 1, + sym_case_pattern, + STATE(7228), 1, + sym_if_clause, 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, - 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(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(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(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5967), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5085), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5496), 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, + [38186] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5091), 1, + aux_sym_integer_token2, + STATE(2633), 1, + aux_sym_integer_repeat2, + STATE(3219), 1, + sym_c_integer_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(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(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(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(4846), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 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_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [38245] = 21, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(4967), 1, + anon_sym_PIPE, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(4971), 1, + anon_sym_AMP, + ACTIONS(4973), 1, + anon_sym_CARET, + ACTIONS(4975), 1, + anon_sym_is, + STATE(2713), 1, + aux_sym_comparison_operator_repeat1, 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, - 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(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(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(4953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4977), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2329), 2, + sym__not_in, + sym__is_not, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4959), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 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, + [38330] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, 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, - 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, + ACTIONS(5103), 2, 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(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(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(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___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_with, + 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, + anon_sym_nogil, + [38385] = 14, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, 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(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(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(4985), 1, + anon_sym_EQ, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, 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, - 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(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(4401), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4408), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4397), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [38456] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5105), 1, + aux_sym_integer_token3, + STATE(2608), 1, + aux_sym_integer_repeat3, + STATE(3219), 1, + sym_c_integer_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(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(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, + ACTIONS(4846), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 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_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [38515] = 26, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5069), 1, + sym_identifier, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5073), 1, + anon_sym_STAR, + ACTIONS(5075), 1, + anon_sym_if, + ACTIONS(5079), 1, + anon_sym_STAR_STAR, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5107), 1, + anon_sym_COLON, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5843), 1, + sym_case_pattern, + STATE(7204), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + STATE(5967), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5085), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5496), 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, + [38610] = 8, + ACTIONS(4930), 1, sym_c_integer_signedness, - ACTIONS(4827), 1, + ACTIONS(4932), 1, aux_sym_c_integer_type_token1, - ACTIONS(4843), 1, - aux_sym_integer_token2, - STATE(2448), 1, - aux_sym_integer_repeat2, - STATE(2523), 1, + ACTIONS(5109), 1, + aux_sym_integer_token1, + STATE(2642), 1, + aux_sym_integer_repeat1, + STATE(3163), 1, sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(4846), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -240049,116 +251399,90 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + sym_type_conversion, + [38669] = 5, + ACTIONS(5111), 1, + aux_sym_integer_token2, + STATE(2604), 1, + aux_sym_integer_repeat2, 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, - 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(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, + ACTIONS(4856), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4854), 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_STAR_STAR, + anon_sym_in, + 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_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, + anon_sym_by, + [38722] = 8, + ACTIONS(4930), 1, + sym_c_integer_signedness, + ACTIONS(4932), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5114), 1, + aux_sym_integer_token3, + STATE(2624), 1, + aux_sym_integer_repeat3, + STATE(3163), 1, sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(4846), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -240174,100 +251498,20 @@ static const uint16_t ts_small_parse_table[] = { 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(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(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(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, + sym_type_conversion, + [38781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5118), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 33, + ACTIONS(5116), 34, sym__newline, + sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -240277,9 +251521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -240300,34 +251544,93 @@ static const uint16_t ts_small_parse_table[] = { 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, + [38829] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_PIPE, + ACTIONS(5134), 1, + anon_sym_AMP, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_is, + STATE(2763), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(5120), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 36, + STATE(2259), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 8, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [38911] = 5, + ACTIONS(5142), 1, + aux_sym_integer_token3, + STATE(2608), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4863), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4861), 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_with, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -240347,464 +251650,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [38963] = 9, + ACTIONS(5145), 1, + aux_sym_integer_token4, + ACTIONS(5147), 1, aux_sym_integer_token5, + ACTIONS(5149), 1, sym_c_integer_signedness, + ACTIONS(5151), 1, 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(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(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(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(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, + STATE(2746), 1, + aux_sym_integer_repeat4, + STATE(3424), 1, + sym_c_integer_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(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(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(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(4821), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4819), 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_STAR_STAR, + anon_sym_in, + 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, + [39023] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, + ACTIONS(5177), 1, + anon_sym_is, + STATE(2776), 1, + aux_sym_comparison_operator_repeat1, 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, - 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(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(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(5157), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5159), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5179), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2360), 2, + sym__not_in, + sym__is_not, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5167), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5163), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [39107] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5181), 1, + aux_sym_integer_token1, + STATE(2714), 1, + aux_sym_integer_repeat1, + STATE(3219), 1, + sym_c_integer_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(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(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(4846), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4844), 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_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [39165] = 3, 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, - 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(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(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(5185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5183), 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_with, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [39213] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, + ACTIONS(5199), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_AMP, + ACTIONS(5203), 1, + anon_sym_CARET, + ACTIONS(5205), 1, + anon_sym_is, + STATE(2765), 1, + aux_sym_comparison_operator_repeat1, 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, - 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(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, + ACTIONS(5187), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5189), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5207), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2395), 2, + sym__not_in, + sym__is_not, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5193), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_by, + [39297] = 5, + ACTIONS(5209), 1, aux_sym_integer_token2, - STATE(2448), 1, + STATE(2614), 1, aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 5, + ACTIONS(4856), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 35, - sym__newline, - anon_sym_SEMI, + ACTIONS(4854), 32, 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -240826,39 +251971,38 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [39349] = 5, + ACTIONS(1861), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, + STATE(2635), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 35, - sym__newline, - anon_sym_SEMI, + ACTIONS(4397), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -240874,24 +252018,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, + anon_sym_by, + [39401] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_PIPE, + ACTIONS(5226), 1, + anon_sym_AMP, + ACTIONS(5228), 1, + anon_sym_CARET, + ACTIONS(5230), 1, + anon_sym_is, + STATE(4269), 1, + aux_sym_comparison_operator_repeat1, + 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(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2284), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5218), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 8, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, anon_sym_nogil, - [26122] = 5, - ACTIONS(4874), 1, - aux_sym_integer_token3, - STATE(2450), 1, - aux_sym_integer_repeat3, + [39483] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 35, + ACTIONS(4397), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -240901,10 +252104,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -240924,50 +252126,33 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + [39533] = 5, + ACTIONS(5234), 1, + aux_sym_integer_token2, + STATE(2618), 1, + aux_sym_integer_repeat2, 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(4496), 4, + ACTIONS(4856), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 22, + ACTIONS(4854), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -240977,6 +252162,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, @@ -240985,29 +252171,149 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [39585] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5041), 1, + anon_sym_PIPE, + ACTIONS(5043), 1, + anon_sym_AMP, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5047), 1, + anon_sym_is, + ACTIONS(5237), 1, + anon_sym_DOT, + ACTIONS(5239), 1, + anon_sym_LBRACK, + STATE(4165), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5027), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5029), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5049), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2269), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5033), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [39667] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5259), 1, + anon_sym_PIPE, + ACTIONS(5261), 1, + anon_sym_AMP, + ACTIONS(5263), 1, + anon_sym_CARET, + ACTIONS(5265), 1, + anon_sym_is, + STATE(2774), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5247), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5267), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2290), 2, + sym__not_in, + sym__is_not, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5255), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5251), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_by, + [39751] = 5, + ACTIONS(5269), 1, + aux_sym_integer_token2, + STATE(2621), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(4856), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, + ACTIONS(4854), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -241015,14 +252321,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -241038,46 +252343,35 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + sym_type_conversion, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [39803] = 5, + ACTIONS(5272), 1, + aux_sym_integer_token1, + STATE(2622), 1, + aux_sym_integer_repeat1, 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(4496), 4, + ACTIONS(4878), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 23, + ACTIONS(4876), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -241087,6 +252381,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, @@ -241095,22 +252390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [26381] = 5, - ACTIONS(117), 1, - sym_string_start, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [39855] = 4, + ACTIONS(5279), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, + ACTIONS(5277), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 33, + ACTIONS(5275), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -241121,9 +252416,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241144,39 +252439,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + [39905] = 5, + ACTIONS(5281), 1, + aux_sym_integer_token3, + STATE(2624), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, - anon_sym_as, + ACTIONS(4863), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, + ACTIONS(4861), 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_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241197,124 +252483,274 @@ static const uint16_t ts_small_parse_table[] = { 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_type_conversion, 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, + [39957] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_PIPE, + ACTIONS(5134), 1, + anon_sym_AMP, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_is, + STATE(4284), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(5120), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2259), 2, + sym__not_in, + sym__is_not, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 8, + 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_STAR_STAR, - 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, + [40039] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, + ACTIONS(5199), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, anon_sym_AMP, + ACTIONS(5203), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5205), 1, anon_sym_is, + STATE(2813), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5187), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5189), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5207), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2395), 2, + sym__not_in, + sym__is_not, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5193), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [26559] = 5, - ACTIONS(117), 1, - sym_string_start, + ACTIONS(4949), 7, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_by, + [40123] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5259), 1, + anon_sym_PIPE, + ACTIONS(5261), 1, + anon_sym_AMP, + ACTIONS(5263), 1, + anon_sym_CARET, + ACTIONS(5265), 1, + anon_sym_is, + STATE(2832), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, + ACTIONS(5245), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5247), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 33, - sym__newline, - anon_sym_SEMI, + STATE(2290), 2, + sym__not_in, + sym__is_not, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5255), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5251), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_by, + [40207] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5241), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(5243), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, + ACTIONS(5253), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5298), 1, anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5302), 1, anon_sym_is, + STATE(4293), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5286), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5304), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2294), 2, + sym__not_in, + sym__is_not, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5292), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5290), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [26613] = 5, - ACTIONS(4919), 1, - sym_string_start, + ACTIONS(4949), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [40291] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 5, + ACTIONS(1059), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4915), 33, + ACTIONS(1057), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -241324,10 +252760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241348,29 +252783,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + [40341] = 5, + ACTIONS(5306), 1, + aux_sym_integer_token3, + STATE(2630), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, + ACTIONS(4863), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 29, + ACTIONS(4861), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -241378,8 +252805,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -241400,108 +252827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [26728] = 26, - 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(4934), 1, - anon_sym_STAR, - 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(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(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, - 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, - [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, + anon_sym_by, + [40393] = 4, + ACTIONS(5313), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 5, - anon_sym_as, + ACTIONS(5311), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 29, + ACTIONS(5309), 33, + sym__newline, + anon_sym_SEMI, 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_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241521,106 +252875,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [26884] = 21, - ACTIONS(4960), 1, + anon_sym_nogil, + [40443] = 21, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, - anon_sym_STAR_STAR, - ACTIONS(4974), 1, - anon_sym_EQ, - ACTIONS(4976), 1, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(4986), 1, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(5327), 1, + anon_sym_PIPE, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(4988), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(4990), 1, + ACTIONS(5333), 1, anon_sym_is, - STATE(3973), 1, + STATE(2781), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4968), 2, + ACTIONS(5317), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4980), 2, + ACTIONS(5325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4992), 2, + ACTIONS(5335), 2, anon_sym_LT, anon_sym_GT, - STATE(2379), 2, + STATE(2300), 2, sym__not_in, sym__is_not, - STATE(2973), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4978), 3, + ACTIONS(5323), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4970), 6, + ACTIONS(5321), 6, 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, + ACTIONS(4949), 7, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, 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, + anon_sym_by, + [40527] = 5, + ACTIONS(5337), 1, + aux_sym_integer_token2, + STATE(2633), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + ACTIONS(4856), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(4854), 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_async, - anon_sym_for, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -241636,41 +252983,39 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [40579] = 4, + ACTIONS(5340), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5311), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5309), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -241686,37 +253031,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [40629] = 5, + ACTIONS(1861), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + STATE(2636), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(4915), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241737,31 +253078,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [40681] = 5, + ACTIONS(5342), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + STATE(2636), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 33, + ACTIONS(4919), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -241782,50 +253125,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + anon_sym_by, + [40733] = 5, + ACTIONS(5345), 1, + aux_sym_integer_token3, + STATE(2637), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4863), 5, + anon_sym_as, + anon_sym_STAR, 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, + ACTIONS(4861), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -241835,6 +253161,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, @@ -241843,219 +253170,259 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [40785] = 21, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, - anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5023), 1, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(5327), 1, anon_sym_PIPE, - ACTIONS(5025), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5027), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5333), 1, anon_sym_is, - STATE(2521), 1, + STATE(2769), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(5315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5011), 2, + ACTIONS(5317), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5021), 2, + ACTIONS(5325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, + ACTIONS(5335), 2, anon_sym_LT, anon_sym_GT, - STATE(2368), 2, + STATE(2300), 2, sym__not_in, sym__is_not, - STATE(2920), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5323), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5013), 6, + ACTIONS(5321), 6, 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, + ACTIONS(4949), 7, 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_by, + [40869] = 5, + ACTIONS(5348), 1, + aux_sym_integer_token1, + STATE(2639), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4878), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4876), 32, anon_sym_DOT, - ACTIONS(4962), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, - ACTIONS(4974), 1, - anon_sym_EQ, - ACTIONS(4976), 1, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(4982), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4984), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [40921] = 21, + ACTIONS(4951), 1, + anon_sym_as, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(4986), 1, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_PIPE, + ACTIONS(5298), 1, anon_sym_AMP, - ACTIONS(4988), 1, + ACTIONS(5300), 1, anon_sym_CARET, - ACTIONS(4990), 1, + ACTIONS(5302), 1, anon_sym_is, - STATE(2535), 1, + STATE(2792), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4968), 2, + ACTIONS(5286), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4980), 2, + ACTIONS(5294), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4992), 2, + ACTIONS(5304), 2, anon_sym_LT, anon_sym_GT, - STATE(2379), 2, + STATE(2294), 2, sym__not_in, sym__is_not, - STATE(2973), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4978), 3, + ACTIONS(5292), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4970), 6, + ACTIONS(5290), 6, 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, + ACTIONS(4949), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - sym_type_conversion, - [27440] = 21, - ACTIONS(4974), 1, - anon_sym_EQ, - ACTIONS(4984), 1, + [41005] = 20, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5033), 1, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5051), 1, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, anon_sym_PIPE, - ACTIONS(5053), 1, + ACTIONS(5226), 1, anon_sym_AMP, - ACTIONS(5055), 1, + ACTIONS(5228), 1, anon_sym_CARET, - ACTIONS(5057), 1, + ACTIONS(5230), 1, anon_sym_is, - STATE(2602), 1, + STATE(2819), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(5212), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5039), 2, + ACTIONS(5214), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5049), 2, + ACTIONS(5222), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5059), 2, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - STATE(2265), 2, + STATE(2284), 2, sym__not_in, sym__is_not, - STATE(2539), 2, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5047), 3, + ACTIONS(5220), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5041), 6, + ACTIONS(5218), 6, 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, + ACTIONS(4949), 8, sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_with, 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, + anon_sym_nogil, + [41087] = 5, + ACTIONS(5351), 1, aux_sym_integer_token1, - STATE(2486), 1, + STATE(2642), 1, aux_sym_integer_repeat1, - STATE(2845), 1, - sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(4878), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(4876), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -242063,8 +253430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -242086,232 +253453,99 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(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_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, - [27655] = 26, - 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(4934), 1, - anon_sym_STAR, - 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(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(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, - 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, - [27750] = 21, - ACTIONS(4974), 1, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [41139] = 21, + ACTIONS(4951), 1, anon_sym_as, - ACTIONS(4984), 1, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5005), 1, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, - ACTIONS(5023), 1, + ACTIONS(5171), 1, anon_sym_PIPE, - ACTIONS(5025), 1, + ACTIONS(5173), 1, anon_sym_AMP, - ACTIONS(5027), 1, + ACTIONS(5175), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5177), 1, anon_sym_is, - STATE(3972), 1, + STATE(4271), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(5157), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5011), 2, + ACTIONS(5159), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5021), 2, + ACTIONS(5169), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, + ACTIONS(5179), 2, anon_sym_LT, anon_sym_GT, - STATE(2368), 2, + STATE(2360), 2, sym__not_in, sym__is_not, - STATE(2920), 2, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5167), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5013), 6, + ACTIONS(5163), 6, 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, + ACTIONS(4949), 7, + anon_sym_RPAREN, 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, + [41223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + ACTIONS(5356), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5354), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -242327,42 +253561,35 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [41270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + ACTIONS(5360), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5358), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -242378,37 +253605,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [27953] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + anon_sym_nogil, + [41317] = 3, 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, + ACTIONS(5364), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 29, + ACTIONS(5362), 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_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -242418,6 +253640,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, @@ -242427,38 +253650,91 @@ static const uint16_t ts_small_parse_table[] = { 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, + [41364] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_AMP, + ACTIONS(5388), 1, + anon_sym_CARET, + ACTIONS(5390), 1, + anon_sym_is, + STATE(2939), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5370), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5392), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2483), 2, + sym__not_in, + sym__is_not, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5376), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [41445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(1059), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(1057), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -242478,39 +253754,34 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [41492] = 5, + ACTIONS(1951), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + STATE(2705), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(4397), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -242529,32 +253800,31 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [41543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 33, + ACTIONS(5394), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -242574,39 +253844,292 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [41590] = 21, + ACTIONS(4951), 1, + anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_AMP, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_is, + STATE(4238), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5424), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + ACTIONS(5408), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [41673] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_RPAREN, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [41762] = 24, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, aux_sym_integer_token4, - STATE(2481), 1, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_STAR_STAR, + ACTIONS(5456), 1, + anon_sym_LBRACK, + ACTIONS(5458), 1, + anon_sym_RBRACK, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + STATE(2609), 1, aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + STATE(6495), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, - anon_sym_as, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6406), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5462), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5776), 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, + [41851] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5470), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [41940] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 33, + ACTIONS(5472), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -242622,105 +254145,32 @@ static const uint16_t ts_small_parse_table[] = { 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(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(5057), 1, - anon_sym_is, - STATE(3960), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_nogil, + [41987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(5478), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(5039), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5049), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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, - 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, + ACTIONS(5476), 33, 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, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4839), 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_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -242739,19 +254189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [28375] = 4, - ACTIONS(5097), 1, - aux_sym_c_integer_type_token1, + anon_sym_nogil, + [42034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + ACTIONS(5482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 33, + ACTIONS(5480), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -242762,9 +254211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -242785,98 +254234,34 @@ static const uint16_t ts_small_parse_table[] = { 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(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(3993), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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, - 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, + [42081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, + ACTIONS(4846), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 32, + ACTIONS(4844), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -242892,93 +254277,69 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - 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, + anon_sym_nogil, + [42128] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + ACTIONS(4554), 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, - ACTIONS(5150), 2, + ACTIONS(4557), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - STATE(2337), 2, - sym__not_in, - sym__is_not, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5138), 3, + ACTIONS(4551), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4549), 19, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_in, + anon_sym_not, 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, + 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, + [42179] = 5, + ACTIONS(1794), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 4, + STATE(2675), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4817), 29, + ACTIONS(4397), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -242986,13 +254347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -243008,161 +254369,163 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_type_conversion, + [42230] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 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(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5484), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6005), 1, + sym_case_pattern, 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_LT_LT, - ACTIONS(5140), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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, - 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, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [42319] = 24, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 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, + ACTIONS(5456), 1, anon_sym_LBRACK, - STATE(3960), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(5486), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + STATE(6006), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - 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, - 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(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6406), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5462), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5776), 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, + [42408] = 5, + ACTIONS(1489), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + STATE(2681), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(4397), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243182,19 +254545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [28925] = 4, - ACTIONS(5170), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [42459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5490), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 33, + ACTIONS(5488), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243205,9 +254567,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243228,19 +254590,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [28975] = 4, - ACTIONS(5172), 1, - aux_sym_c_integer_type_token1, + [42506] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5492), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(5892), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [42595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5496), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 33, + ACTIONS(5494), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243251,9 +254676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243274,19 +254699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [29025] = 3, + [42642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, + ACTIONS(5500), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 34, + ACTIONS(5498), 33, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -243296,9 +254720,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243319,100 +254743,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [29073] = 20, - ACTIONS(4984), 1, - anon_sym_not, - 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(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, + [42689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + ACTIONS(5504), 5, anon_sym_STAR, + anon_sym_EQ, 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, 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, + ACTIONS(5502), 33, 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_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_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -243431,177 +254786,259 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [42736] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, - anon_sym_as, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 32, + ACTIONS(1812), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - 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, - anon_sym_GT, - ACTIONS(4856), 32, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1549), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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_nogil, + [42787] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5436), 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(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5506), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [42876] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5214), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5224), 2, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, anon_sym_DASH, - anon_sym_PLUS, - 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, - 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, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5508), 1, 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, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [42965] = 24, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_STAR_STAR, + ACTIONS(5456), 1, + anon_sym_LBRACK, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(5510), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + STATE(6495), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6406), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5462), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5776), 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, + [43054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 6, + ACTIONS(5514), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 32, + ACTIONS(5512), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243611,9 +255048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243634,20 +255072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [29451] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [43101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(5277), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 32, + ACTIONS(5275), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243657,9 +255092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243680,21 +255116,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + [43148] = 5, + ACTIONS(1794), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, + STATE(2682), 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(4870), 32, + ACTIONS(4915), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -243702,8 +255139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243725,212 +255162,225 @@ static const uint16_t ts_small_parse_table[] = { 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, + [43199] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, aux_sym_integer_token4, - STATE(2503), 1, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5516), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, 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), 32, - anon_sym_DOT, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [43288] = 24, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, anon_sym_STAR_STAR, + ACTIONS(5456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + ACTIONS(5460), 1, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - 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(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(2673), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(5518), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + STATE(6495), 1, + sym_case_pattern, 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, - 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, - 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(5099), 1, - anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6406), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5462), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5776), 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, + [43377] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5436), 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(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5520), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - 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, - 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(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [43466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(5522), 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_by, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -243950,86 +255400,102 @@ static const uint16_t ts_small_parse_table[] = { 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(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_nogil, + [43513] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, anon_sym_STAR_STAR, + ACTIONS(5436), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + ACTIONS(5438), 1, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [29889] = 5, - ACTIONS(5246), 1, - aux_sym_integer_token3, - STATE(2508), 1, - aux_sym_integer_repeat3, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5526), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(6307), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, - anon_sym_as, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [43602] = 5, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2755), 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(4870), 32, + 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_async, - anon_sym_for, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -244045,43 +255511,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [43653] = 5, + ACTIONS(5528), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + STATE(2682), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(4919), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -244097,19 +255557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [29999] = 3, + sym_type_conversion, + [43704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 5, + ACTIONS(4576), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 34, + ACTIONS(4574), 33, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -244119,9 +255579,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244142,32 +255602,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + [43751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 5, + ACTIONS(4408), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 32, + ACTIONS(4397), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244187,34 +255645,31 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [43798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, + ACTIONS(5533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 32, + ACTIONS(5531), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244234,39 +255689,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + anon_sym_nogil, + [43845] = 9, + ACTIONS(5535), 1, + aux_sym_integer_token4, + ACTIONS(5537), 1, + aux_sym_integer_token5, + ACTIONS(5539), 1, sym_c_integer_signedness, + ACTIONS(5541), 1, 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, + STATE(2830), 1, + aux_sym_integer_repeat4, + STATE(3494), 1, sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + ACTIONS(4821), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(4819), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244286,36 +255740,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + [43904] = 5, + ACTIONS(1626), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 5, + STATE(2697), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 32, + ACTIONS(4397), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -244331,44 +255785,45 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [43955] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 5, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 32, + ACTIONS(5093), 27, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -244377,102 +255832,32 @@ static const uint16_t ts_small_parse_table[] = { 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(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(2644), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_by, + [44008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + ACTIONS(4610), 5, anon_sym_STAR, + anon_sym_EQ, 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, 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, + ACTIONS(4605), 33, 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, - ACTIONS(4841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4839), 29, + 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -244491,61 +255876,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [30452] = 24, - ACTIONS(1708), 1, + anon_sym_nogil, + [44055] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5275), 1, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5543), 1, anon_sym_RPAREN, - ACTIONS(5277), 1, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(5841), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [44144] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - STATE(2524), 1, + ACTIONS(5545), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6232), 1, + STATE(5955), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244556,83 +256007,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [30541] = 20, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5293), 1, - anon_sym_DOT, - ACTIONS(5295), 1, + [44233] = 24, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_PIPE, - ACTIONS(5313), 1, - anon_sym_AMP, - ACTIONS(5315), 1, - anon_sym_CARET, - ACTIONS(5317), 1, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(5547), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + STATE(5956), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6406), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5462), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5776), 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, + [44322] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5559), 1, anon_sym_is, - STATE(4010), 1, + STATE(2693), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - ACTIONS(5319), 2, + ACTIONS(5562), 2, anon_sym_LT, anon_sym_GT, - STATE(2237), 2, + STATE(2269), 2, sym__not_in, sym__is_not, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5301), 6, + ACTIONS(5551), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(5553), 6, 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, - [30622] = 5, - ACTIONS(5321), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2520), 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, + ACTIONS(5549), 22, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -244640,15 +256109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -244656,44 +256122,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [30673] = 5, - STATE(2527), 1, + [44381] = 5, + STATE(2693), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2368), 2, + STATE(2269), 2, sym__not_in, sym__is_not, - ACTIONS(5326), 5, - anon_sym_as, + ACTIONS(5567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 30, + ACTIONS(5565), 30, + 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_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -244709,78 +256168,17 @@ static const uint16_t ts_small_parse_table[] = { 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(5338), 1, - anon_sym_STAR_STAR, - ACTIONS(5340), 1, - anon_sym_LBRACK, - 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(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(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, - 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, + [44432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, + ACTIONS(4592), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 33, + ACTIONS(4590), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -244791,9 +256189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244814,37 +256212,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [30852] = 9, - ACTIONS(5360), 1, + [44479] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 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, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, + anon_sym_STAR_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACK, + ACTIONS(5438), 1, + anon_sym_DASH, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5569), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(3371), 1, - sym_c_integer_type, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(5987), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [44568] = 5, + ACTIONS(1626), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4819), 4, + STATE(2709), 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(4817), 28, + ACTIONS(4915), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -244864,61 +256322,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [30911] = 24, - ACTIONS(1708), 1, + anon_sym_by, + [44619] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5368), 1, + ACTIONS(5571), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244929,61 +256388,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31000] = 24, - ACTIONS(1985), 1, + [44708] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5380), 1, - anon_sym_RBRACK, - ACTIONS(5382), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5468), 1, sym_float, - STATE(2488), 1, + ACTIONS(5573), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5286), 1, sym_string, - STATE(5298), 1, + STATE(5451), 1, sym_integer, - STATE(5345), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6246), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244994,81 +256453,43 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31089] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5402), 1, - anon_sym_is, - STATE(2527), 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(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, + [44797] = 13, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4897), 1, 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, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [31148] = 3, + ACTIONS(4905), 1, + anon_sym_complex, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4401), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4408), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4397), 21, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -245078,7 +256499,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, @@ -245087,18 +256507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [31195] = 3, + [44864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, + ACTIONS(4564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 33, + ACTIONS(4559), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -245109,9 +256528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -245132,61 +256551,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [31242] = 24, - ACTIONS(1708), 1, + [44911] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5416), 1, + ACTIONS(5575), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5532), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245197,61 +256616,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31331] = 24, - ACTIONS(1985), 1, + [45000] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5418), 1, + ACTIONS(5577), 1, anon_sym_RBRACK, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5286), 1, sym_string, - STATE(5298), 1, + STATE(5451), 1, sym_integer, - STATE(5345), 1, + STATE(5772), 1, sym_dotted_name, - STATE(5535), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245262,61 +256681,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31420] = 24, - ACTIONS(1708), 1, + [45089] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5420), 1, + ACTIONS(5579), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5583), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245327,61 +256746,107 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31509] = 24, - ACTIONS(1708), 1, + [45178] = 5, + ACTIONS(1951), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2719), 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, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_in, + 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_by, + [45229] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5422), 1, + ACTIONS(5581), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245392,95 +256857,104 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [31598] = 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(5372), 1, + [45318] = 21, + ACTIONS(4951), 1, + anon_sym_EQ, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5410), 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(5298), 1, - sym_integer, - STATE(5345), 1, - sym_dotted_name, - STATE(6246), 1, - sym_case_pattern, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_AMP, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_is, + STATE(2978), 1, + aux_sym_comparison_operator_repeat1, 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, - STATE(5984), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5384), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [31687] = 5, - STATE(2549), 1, + ACTIONS(5402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5424), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + ACTIONS(5408), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45401] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5586), 1, + anon_sym_is, + STATE(2708), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2379), 2, + ACTIONS(5589), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2329), 2, sym__not_in, sym__is_not, - ACTIONS(5326), 5, + ACTIONS(5551), 3, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5324), 30, + ACTIONS(5583), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 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_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -245488,6 +256962,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [45460] = 5, + ACTIONS(5592), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2709), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4919), 30, + 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_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -245502,192 +257014,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [31738] = 24, - ACTIONS(1708), 1, + anon_sym_by, + [45511] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, - sym_identifier, - 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(5426), 1, - anon_sym_RPAREN, - STATE(2524), 1, - aux_sym_integer_repeat4, - STATE(5041), 1, - sym_string, - 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(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, - 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, - [31827] = 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(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(5428), 1, - anon_sym_RBRACK, - STATE(2488), 1, - aux_sym_integer_repeat4, - STATE(5056), 1, - sym_string, - 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(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, - 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, - [31916] = 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(5273), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5430), 1, + ACTIONS(5595), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6232), 1, + STATE(5929), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245698,105 +257080,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [32005] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_CARET, - anon_sym_LT_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, + [45600] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5436), 1, - anon_sym_RPAREN, - STATE(2524), 1, + ACTIONS(5597), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5286), 1, sym_string, - STATE(5223), 1, + STATE(5451), 1, sym_integer, - STATE(5322), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6232), 1, + STATE(5930), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -245807,17 +257145,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [32141] = 3, + [45689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, + ACTIONS(5601), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 33, + ACTIONS(5599), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -245828,9 +257166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -245851,34 +257189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32188] = 3, + [45736] = 5, + STATE(2708), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, + STATE(2329), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5565), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -245894,96 +257235,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [32235] = 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(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(5446), 1, - anon_sym_RPAREN, - STATE(2524), 1, - aux_sym_integer_repeat4, - STATE(5041), 1, - sym_string, - 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(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, - 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, - [32324] = 3, + [45787] = 5, + ACTIONS(5603), 1, + aux_sym_integer_token1, + STATE(2714), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(4878), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4876), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246003,37 +257278,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [32371] = 3, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [45838] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5609), 1, + anon_sym_is, + STATE(2715), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, + ACTIONS(5612), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2378), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5448), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5606), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 22, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -246041,24 +257330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [32418] = 3, + sym_type_conversion, + [45897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, + ACTIONS(4572), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 33, + ACTIONS(4570), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246069,9 +257352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246092,17 +257375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32465] = 3, + [45944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, + ACTIONS(5617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 33, + ACTIONS(5615), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246113,9 +257396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246136,17 +257419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32512] = 3, + [45991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 5, + ACTIONS(5621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 33, + ACTIONS(5619), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246157,9 +257440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246180,48 +257463,38 @@ static const uint16_t ts_small_parse_table[] = { 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, + [46038] = 5, + ACTIONS(5623), 1, + sym_string_start, 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(5394), 3, + STATE(2719), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, + anon_sym_as, 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_LT, + anon_sym_GT, + ACTIONS(4919), 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_STAR_STAR, + anon_sym_in, 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, @@ -246229,62 +257502,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [32618] = 24, - ACTIONS(1708), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [46089] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5473), 1, + ACTIONS(5626), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5660), 1, + STATE(5977), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -246295,37 +257574,34 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [32707] = 5, - ACTIONS(5475), 1, - sym_string_start, + [46178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2551), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 5, - anon_sym_as, + ACTIONS(5630), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4915), 30, + ACTIONS(5628), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -246341,66 +257617,83 @@ static const uint16_t ts_small_parse_table[] = { 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(4841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4839), 29, - anon_sym_DOT, + anon_sym_nogil, + [46225] = 24, + ACTIONS(1660), 1, + anon_sym_None, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(1680), 1, + sym_string_start, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5428), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(5432), 1, + anon_sym_STAR, + ACTIONS(5434), 1, anon_sym_STAR_STAR, + ACTIONS(5436), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + ACTIONS(5438), 1, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [32815] = 3, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + sym_float, + ACTIONS(5632), 1, + anon_sym_RPAREN, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5423), 1, + sym_string, + STATE(5526), 1, + sym_integer, + STATE(5605), 1, + sym_dotted_name, + STATE(5880), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + STATE(6217), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5440), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5606), 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, + [46314] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5636), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 33, + ACTIONS(5634), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246411,9 +257704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246434,17 +257727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32862] = 3, + [46361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5640), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 33, + ACTIONS(5638), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246455,9 +257748,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246478,17 +257771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32909] = 3, + [46408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, + ACTIONS(5644), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 33, + ACTIONS(5642), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246499,9 +257792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246522,17 +257815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [32956] = 3, + [46455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(5648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 33, + ACTIONS(5646), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246543,9 +257836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -246566,37 +257859,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [33003] = 5, - ACTIONS(1881), 1, - sym_string_start, + [46502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2601), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(5652), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 30, + ACTIONS(5650), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -246612,45 +257902,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [33054] = 5, + anon_sym_nogil, + [46549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(5656), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 14, + ACTIONS(5654), 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_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_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), 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, @@ -246658,61 +257947,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [33105] = 24, - ACTIONS(1708), 1, + [46596] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5488), 1, + ACTIONS(5658), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5552), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -246723,61 +258012,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [33194] = 24, - ACTIONS(1985), 1, + [46685] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5490), 1, + ACTIONS(5660), 1, anon_sym_RBRACK, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5286), 1, sym_string, - STATE(5298), 1, + STATE(5451), 1, sym_integer, - STATE(5345), 1, + STATE(5772), 1, sym_dotted_name, - STATE(5554), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -246788,63 +258077,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [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, - anon_sym_GT, - ACTIONS(4849), 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_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, + [46774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 33, + ACTIONS(5662), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -246855,53 +258098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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, @@ -246922,34 +258121,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [33428] = 3, + [46821] = 5, + STATE(2715), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, + STATE(2378), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5565), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -246965,62 +258166,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [33475] = 24, - ACTIONS(1708), 1, + sym_type_conversion, + [46872] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5499), 1, + ACTIONS(5666), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5609), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247031,61 +258232,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [33564] = 24, - ACTIONS(1708), 1, + [46961] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5501), 1, - anon_sym_RPAREN, - STATE(2524), 1, + ACTIONS(5668), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5286), 1, sym_string, - STATE(5223), 1, + STATE(5451), 1, sym_integer, - STATE(5322), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247096,61 +258297,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [33653] = 24, - ACTIONS(1985), 1, + [47050] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5503), 1, + ACTIONS(5670), 1, anon_sym_RBRACK, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5286), 1, sym_string, - STATE(5298), 1, + STATE(5451), 1, sym_integer, - STATE(5345), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6246), 1, + STATE(5885), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247161,17 +258362,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [33742] = 3, + [47139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + ACTIONS(5674), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 33, + ACTIONS(5672), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -247182,9 +258383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -247205,126 +258406,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [33789] = 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(5273), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, + [47186] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5678), 5, anon_sym_STAR, - ACTIONS(5279), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5676), 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_with, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(5283), 1, + anon_sym_AT, 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(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(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, - 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, - [33878] = 24, - ACTIONS(1985), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [47233] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5507), 1, - anon_sym_RBRACK, - STATE(2488), 1, + ACTIONS(5680), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5423), 1, sym_string, - STATE(5298), 1, + STATE(5526), 1, sym_integer, - STATE(5345), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6246), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247335,61 +258515,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [33967] = 24, - ACTIONS(1708), 1, + [47322] = 24, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5509), 1, - anon_sym_RPAREN, - STATE(2524), 1, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5286), 1, sym_string, - STATE(5223), 1, + STATE(5451), 1, sym_integer, - STATE(5322), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247400,61 +258580,61 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [34056] = 24, - ACTIONS(1708), 1, + [47411] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5511), 1, + ACTIONS(5684), 1, anon_sym_RPAREN, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5423), 1, sym_string, - STATE(5223), 1, + STATE(5526), 1, sym_integer, - STATE(5322), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247465,37 +258645,31 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [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, + [47500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + ACTIONS(5101), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -247514,43 +258688,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + anon_sym_nogil, + [47547] = 8, + ACTIONS(5149), 1, + sym_c_integer_signedness, + ACTIONS(5151), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5686), 1, + aux_sym_integer_token2, + STATE(2803), 1, + aux_sym_integer_repeat2, + STATE(3433), 1, + sym_c_integer_type, 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(4496), 3, + ACTIONS(4846), 4, + anon_sym_STAR, 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, + ACTIONS(4844), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -247560,6 +258729,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, @@ -247568,31 +258738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [34269] = 3, + [47604] = 8, + ACTIONS(5149), 1, + sym_c_integer_signedness, + ACTIONS(5151), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5688), 1, + aux_sym_integer_token3, + STATE(2804), 1, + aux_sym_integer_repeat3, + STATE(3433), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, + ACTIONS(4846), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -247611,127 +258787,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [34316] = 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(5273), 1, + [47661] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5378), 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(5223), 1, - sym_integer, - STATE(5322), 1, - sym_dotted_name, - STATE(5683), 1, - sym_case_pattern, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_AMP, + ACTIONS(5388), 1, + anon_sym_CARET, + ACTIONS(5390), 1, + anon_sym_is, + STATE(4245), 1, + aux_sym_comparison_operator_repeat1, 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, - STATE(5958), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5285), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [34405] = 24, - ACTIONS(1985), 1, + ACTIONS(5370), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5392), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2483), 2, + sym__not_in, + sym__is_not, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5376), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4949), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [47742] = 24, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5521), 1, - anon_sym_RBRACK, - STATE(2488), 1, + ACTIONS(5690), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5423), 1, sym_string, - STATE(5298), 1, + STATE(5526), 1, sym_integer, - STATE(5345), 1, + STATE(5605), 1, sym_dotted_name, - STATE(5686), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -247742,31 +258913,31 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [34494] = 3, + [47831] = 5, + ACTIONS(5692), 1, + aux_sym_integer_token4, + STATE(2746), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, + ACTIONS(4839), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4837), 32, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -247785,18 +258956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [34541] = 3, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [47882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, + ACTIONS(4584), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 33, + ACTIONS(4582), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -247807,9 +258980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -247830,79 +259003,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [34588] = 21, - ACTIONS(4974), 1, + [47929] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5293), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4578), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5295), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(5543), 1, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5545), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5549), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2741), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [47976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 2, + ACTIONS(4580), 5, anon_sym_STAR, + anon_sym_EQ, 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, + ACTIONS(4578), 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_with, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(5535), 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, - [34671] = 3, + anon_sym_nogil, + [48023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, + ACTIONS(5697), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 33, + ACTIONS(5695), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -247913,9 +259112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -247936,17 +259135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [34718] = 3, + [48070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, + ACTIONS(4592), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 33, + ACTIONS(4590), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -247957,9 +259156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -247980,32 +259179,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [34765] = 5, - ACTIONS(5561), 1, + [48117] = 22, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4640), 1, + anon_sym_cppclass, + ACTIONS(4642), 1, + anon_sym_fused, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3979), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(3980), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3956), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(3957), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [48202] = 8, + ACTIONS(5149), 1, + sym_c_integer_signedness, + ACTIONS(5151), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5699), 1, aux_sym_integer_token1, - STATE(2583), 1, + STATE(2821), 1, aux_sym_integer_repeat1, + STATE(3433), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, - anon_sym_as, + ACTIONS(4846), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 31, + ACTIONS(4844), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -248024,33 +259291,76 @@ static const uint16_t ts_small_parse_table[] = { 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, + [48259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 5, - anon_sym_as, + ACTIONS(5703), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 31, + ACTIONS(5701), 33, + sym__newline, + anon_sym_SEMI, 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [48306] = 5, + ACTIONS(5705), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2755), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4919), 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248070,19 +259380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [34867] = 3, + anon_sym_by, + [48357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, + ACTIONS(4951), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 33, + ACTIONS(4949), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -248093,9 +259402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248116,17 +259425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [34914] = 3, + [48404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 33, + ACTIONS(4594), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -248137,9 +259446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248160,160 +259469,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [34961] = 20, - ACTIONS(4984), 1, + [48451] = 20, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5293), 1, + ACTIONS(5708), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5720), 1, anon_sym_LBRACK, - ACTIONS(5311), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(5313), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5315), 1, + ACTIONS(5730), 1, anon_sym_CARET, - ACTIONS(5317), 1, + ACTIONS(5732), 1, anon_sym_is, - STATE(2800), 1, + STATE(4355), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5297), 2, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5299), 2, + ACTIONS(5714), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5309), 2, + ACTIONS(5724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5319), 2, + ACTIONS(5734), 2, anon_sym_LT, anon_sym_GT, - STATE(2237), 2, + STATE(2463), 2, sym__not_in, sym__is_not, - STATE(2926), 2, + STATE(3512), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5307), 3, + ACTIONS(5722), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5301), 6, + ACTIONS(4949), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5718), 6, 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, + [48531] = 9, + ACTIONS(5556), 1, anon_sym_not, - 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(5543), 1, - anon_sym_PIPE, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(5549), 1, + ACTIONS(5739), 1, anon_sym_is, - STATE(3967), 1, + STATE(2759), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 2, + ACTIONS(5551), 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, - ACTIONS(5551), 2, + ACTIONS(5742), 2, anon_sym_LT, anon_sym_GT, - STATE(2322), 2, + STATE(2259), 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, + ACTIONS(5736), 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(5549), 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_CARET, + anon_sym_LT_LT, + [48589] = 8, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2603), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 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(5745), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -248329,77 +259625,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [35176] = 5, + sym_type_conversion, + [48645] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(5761), 1, + anon_sym_PIPE, + ACTIONS(5763), 1, + anon_sym_AMP, + ACTIONS(5765), 1, + anon_sym_CARET, + ACTIONS(5767), 1, + anon_sym_is, + STATE(3089), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 3, - anon_sym_EQ, + ACTIONS(5751), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5769), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + STATE(2340), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_by, + ACTIONS(5755), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48725] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5708), 1, anon_sym_DOT, + ACTIONS(5710), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(5716), 1, anon_sym_STAR_STAR, + ACTIONS(5720), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(5726), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5728), 1, anon_sym_AMP, + ACTIONS(5730), 1, anon_sym_CARET, + ACTIONS(5732), 1, + anon_sym_is, + STATE(3196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5714), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1597), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5734), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2463), 2, + sym__not_in, + sym__is_not, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_RPAREN, 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, + ACTIONS(5718), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [35227] = 5, - ACTIONS(5575), 1, - aux_sym_integer_token3, - STATE(2591), 1, - aux_sym_integer_repeat3, + [48805] = 5, + STATE(2759), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, - anon_sym_as, + STATE(2259), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 31, + ACTIONS(5565), 30, + sym__newline, + anon_sym_SEMI, 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_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248419,78 +259791,91 @@ static const uint16_t ts_small_parse_table[] = { 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, + [48855] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(5761), 1, + anon_sym_PIPE, + ACTIONS(5763), 1, + anon_sym_AMP, + ACTIONS(5765), 1, + anon_sym_CARET, + ACTIONS(5767), 1, + anon_sym_is, + STATE(3241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2520), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, + ACTIONS(5749), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5769), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(2340), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, anon_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_by, + ACTIONS(5755), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [35329] = 3, + [48935] = 5, + STATE(2798), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, + STATE(2395), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5565), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248510,62 +259895,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [35376] = 24, - ACTIONS(1708), 1, + anon_sym_by, + [48985] = 23, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5069), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5073), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5079), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5578), 1, - anon_sym_RPAREN, - STATE(2524), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5109), 1, sym_string, - STATE(5223), 1, + STATE(5327), 1, sym_integer, - STATE(5322), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5648), 1, + STATE(5843), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(5967), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5085), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5496), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -248576,34 +259959,89 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [35465] = 3, + [49071] = 15, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, + ACTIONS(5005), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_AMP, + ACTIONS(5009), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 5, + ACTIONS(4991), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4993), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5003), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5001), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 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, + [49141] = 4, + ACTIONS(5775), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5277), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5275), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -248619,227 +260057,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [35512] = 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(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(5584), 1, - anon_sym_RPAREN, - STATE(2524), 1, - aux_sym_integer_repeat4, - STATE(5041), 1, - sym_string, - STATE(5223), 1, - sym_integer, - STATE(5322), 1, - sym_dotted_name, - STATE(5654), 1, - sym_case_pattern, + anon_sym_by, + [49189] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5333), 1, + anon_sym_is, + STATE(2780), 1, + aux_sym_comparison_operator_repeat1, 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, - STATE(5958), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5285), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [35601] = 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(5372), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5335), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2300), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 3, + anon_sym_as, anon_sym_STAR, - ACTIONS(5376), 1, + anon_sym_SLASH, + ACTIONS(5321), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, - ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + anon_sym_AT, 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(5298), 1, - sym_integer, - STATE(5345), 1, - sym_dotted_name, - STATE(5573), 1, - sym_case_pattern, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [49247] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5780), 1, + anon_sym_is, + STATE(2770), 1, + aux_sym_comparison_operator_repeat1, 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, - STATE(5984), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5384), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [35690] = 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(5273), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5551), 2, anon_sym_STAR, - ACTIONS(5279), 1, + anon_sym_SLASH, + ACTIONS(5783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2284), 2, + sym__not_in, + sym__is_not, + ACTIONS(5777), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 22, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + anon_sym_AT, 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(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(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, - 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, - [35779] = 3, + 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, + [49305] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 33, + ACTIONS(5745), 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_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -248858,32 +260204,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [35826] = 3, + [49361] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, + anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5093), 26, 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, anon_sym_DASH, anon_sym_PIPE, @@ -248893,7 +260241,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, @@ -248902,38 +260249,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [35873] = 5, - ACTIONS(1881), 1, - sym_string_start, + anon_sym_by, + [49413] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5789), 1, + anon_sym_is, + STATE(2773), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2551), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, + ACTIONS(5792), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2290), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5786), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [49471] = 5, + STATE(2773), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2290), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 30, + ACTIONS(5565), 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_in, 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, @@ -248949,33 +260343,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [35924] = 5, - STATE(2611), 1, + anon_sym_by, + [49521] = 13, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5027), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5029), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 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, + 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, + [49587] = 5, + STATE(2814), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2265), 2, + STATE(2360), 2, sym__not_in, sym__is_not, - ACTIONS(5326), 5, + ACTIONS(5567), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(5565), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -248995,44 +260442,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [35975] = 5, - ACTIONS(1537), 1, - sym_string_start, + [49637] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5802), 1, + anon_sym_is, + STATE(2777), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2620), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, + ACTIONS(5805), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2294), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5799), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [49695] = 6, + ACTIONS(5098), 1, anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 30, + ACTIONS(5093), 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, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -249041,61 +260536,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [36026] = 24, - ACTIONS(1708), 1, + sym_type_conversion, + [49747] = 23, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5808), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5816), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5818), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5822), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5826), 1, sym_float, - ACTIONS(5594), 1, - anon_sym_RPAREN, - STATE(2524), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5353), 1, sym_string, - STATE(5223), 1, + STATE(5522), 1, sym_integer, - STATE(5322), 1, + STATE(5708), 1, sym_dotted_name, - STATE(6232), 1, + STATE(6542), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5824), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(6199), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5820), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5709), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -249106,36 +260600,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [36115] = 3, + [49833] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5831), 1, + anon_sym_is, + STATE(2780), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(5834), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 33, - sym__newline, - anon_sym_SEMI, + STATE(2300), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5828), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 21, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -249143,41 +260648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [36162] = 3, + anon_sym_by, + [49891] = 5, + STATE(2780), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, + STATE(2300), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, + anon_sym_as, 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_GT, + ACTIONS(5565), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -249193,35 +260693,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [36209] = 3, + anon_sym_by, + [49941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + ACTIONS(5118), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5116), 32, + 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -249237,62 +260736,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [36256] = 24, - ACTIONS(1708), 1, + anon_sym_by, + [49987] = 23, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(5271), 1, + ACTIONS(5069), 1, sym_identifier, - ACTIONS(5273), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5073), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5079), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5604), 1, - anon_sym_RPAREN, - STATE(2524), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5109), 1, sym_string, - STATE(5223), 1, + STATE(5327), 1, sym_integer, - STATE(5322), 1, - sym_dotted_name, - STATE(6232), 1, + STATE(5488), 1, sym_case_pattern, + STATE(5511), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(5958), 2, + STATE(5967), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5285), 3, + ACTIONS(5085), 3, anon_sym__, sym_true, sym_false, - STATE(5323), 10, + STATE(5496), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -249303,61 +260800,59 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [36345] = 24, - ACTIONS(1985), 1, + [50073] = 23, + ACTIONS(1899), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1907), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1915), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5448), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5450), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5454), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5456), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5460), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5468), 1, sym_float, - ACTIONS(5606), 1, - anon_sym_RBRACK, - STATE(2488), 1, + STATE(2609), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5286), 1, sym_string, - STATE(5298), 1, + STATE(5451), 1, sym_integer, - STATE(5345), 1, + STATE(5772), 1, sym_dotted_name, - STATE(6246), 1, + STATE(6495), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1903), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1905), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5466), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6406), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5462), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5776), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -249368,93 +260863,93 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [36434] = 3, + [50159] = 12, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(5027), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5029), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 33, + ACTIONS(5795), 19, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [36481] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5615), 1, - anon_sym_is, - STATE(2611), 1, - aux_sym_comparison_operator_repeat1, + [50223] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5618), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2265), 2, - sym__not_in, - sym__is_not, - ACTIONS(5394), 3, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 5, + anon_sym_as, 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_LT, + anon_sym_GT, + ACTIONS(5837), 26, 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_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, @@ -249462,61 +260957,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [36540] = 24, - ACTIONS(1985), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50279] = 23, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(2001), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(5386), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(5621), 1, - anon_sym_RBRACK, - STATE(2488), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5056), 1, + STATE(5423), 1, sym_string, - STATE(5298), 1, + STATE(5526), 1, sym_integer, - STATE(5345), 1, + STATE(5605), 1, sym_dotted_name, - STATE(6246), 1, + STATE(6307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1991), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5388), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - STATE(5984), 2, + STATE(6217), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5384), 3, + ACTIONS(5440), 3, anon_sym__, sym_true, sym_false, - STATE(5346), 10, + STATE(5606), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -249527,34 +261026,34 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [36629] = 3, + [50365] = 4, + ACTIONS(5841), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, + ACTIONS(5311), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(5309), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -249570,99 +261069,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [36676] = 22, - 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(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(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, + anon_sym_by, + [50413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, + ACTIONS(5185), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 31, + ACTIONS(5183), 32, + 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_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -249678,37 +261112,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, + anon_sym_by, + [50459] = 4, + ACTIONS(5843), 1, 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, + ACTIONS(5311), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 31, + ACTIONS(5309), 31, 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_in, 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, @@ -249724,33 +261156,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [36863] = 3, + anon_sym_by, + [50507] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_AMP, + ACTIONS(5388), 1, + anon_sym_CARET, + ACTIONS(5390), 1, + anon_sym_is, + STATE(4245), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5370), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5392), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 33, - sym__newline, - anon_sym_SEMI, + STATE(2483), 2, + sym__not_in, + sym__is_not, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(5376), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50587] = 5, + STATE(2777), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2294), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5565), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -249769,33 +261262,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [36910] = 5, - ACTIONS(5629), 1, + [50637] = 8, + ACTIONS(5539), 1, + sym_c_integer_signedness, + ACTIONS(5541), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5845), 1, aux_sym_integer_token1, - STATE(2618), 1, + STATE(2988), 1, aux_sym_integer_repeat1, + STATE(3539), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 5, - anon_sym_as, + ACTIONS(4846), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 31, + ACTIONS(4844), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -249814,104 +261310,93 @@ static const uint16_t ts_small_parse_table[] = { 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(1716), 1, - aux_sym_integer_token4, - ACTIONS(1728), 1, - sym_string_start, - ACTIONS(5271), 1, - sym_identifier, - ACTIONS(5273), 1, + [50693] = 15, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4961), 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(5223), 1, - sym_integer, - STATE(5322), 1, - sym_dotted_name, - STATE(6232), 1, - sym_case_pattern, + ACTIONS(4967), 1, + anon_sym_PIPE, + ACTIONS(4971), 1, + anon_sym_AMP, + ACTIONS(4973), 1, + anon_sym_CARET, 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, - STATE(5958), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5285), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [37050] = 5, - ACTIONS(5634), 1, - sym_string_start, + ACTIONS(4953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4965), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 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, + [50763] = 8, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2620), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 5, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 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, + ACTIONS(5837), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -249927,160 +261412,100 @@ static const uint16_t ts_small_parse_table[] = { 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(5372), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_STAR, - ACTIONS(5376), 1, - anon_sym_STAR_STAR, - ACTIONS(5378), 1, + sym_type_conversion, + [50819] = 20, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, - anon_sym_DASH, - ACTIONS(5386), 1, - anon_sym_LBRACE, - ACTIONS(5390), 1, - sym_float, - ACTIONS(5637), 1, - anon_sym_RBRACK, - STATE(2488), 1, - aux_sym_integer_repeat4, - STATE(5056), 1, - sym_string, - 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(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, - 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, - [37190] = 20, - ACTIONS(4984), 1, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5328), 1, - anon_sym_DOT, - ACTIONS(5330), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(5338), 1, + ACTIONS(4995), 1, anon_sym_STAR_STAR, - ACTIONS(5340), 1, - anon_sym_LBRACK, - ACTIONS(5346), 1, + ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5348), 1, + ACTIONS(5007), 1, anon_sym_AMP, - ACTIONS(5350), 1, + ACTIONS(5009), 1, anon_sym_CARET, - ACTIONS(5352), 1, + ACTIONS(5011), 1, anon_sym_is, - STATE(3966), 1, + STATE(4263), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(4991), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5334), 2, + ACTIONS(4993), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5344), 2, + ACTIONS(5003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5354), 2, + ACTIONS(5013), 2, anon_sym_LT, anon_sym_GT, - STATE(2253), 2, + STATE(2378), 2, sym__not_in, sym__is_not, - STATE(3236), 2, + STATE(3130), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5342), 3, + ACTIONS(5001), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5336), 6, + ACTIONS(4949), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4997), 6, 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, + [50899] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, + anon_sym_as, 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(5745), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -250096,31 +261521,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37318] = 3, + [50955] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5850), 1, + anon_sym_is, + STATE(2798), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2395), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5847), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + anon_sym_by, + [51013] = 8, + ACTIONS(5539), 1, + sym_c_integer_signedness, + ACTIONS(5541), 1, + aux_sym_c_integer_type_token1, + ACTIONS(5856), 1, + aux_sym_integer_token3, + STATE(2916), 1, + aux_sym_integer_repeat3, + STATE(3539), 1, + sym_c_integer_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4844), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -250140,97 +261618,36 @@ static const uint16_t ts_small_parse_table[] = { 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(5273), 1, + [51069] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5031), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, - anon_sym_DASH, - ACTIONS(5287), 1, - anon_sym_LBRACE, - ACTIONS(5291), 1, - sym_float, - ACTIONS(5643), 1, - anon_sym_RPAREN, - STATE(2524), 1, - aux_sym_integer_repeat4, - STATE(5041), 1, - sym_string, - 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(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, - 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, - [37454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 33, + ACTIONS(5837), 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_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250249,22 +261666,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [51125] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 5, + ACTIONS(1059), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 31, + ACTIONS(1057), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -250272,13 +261687,13 @@ 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_in, 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, @@ -250294,33 +261709,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [37552] = 3, + anon_sym_by, + [51173] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_AMP, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_is, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, + ACTIONS(5402), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5424), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 33, - sym__newline, - anon_sym_SEMI, + STATE(2419), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + ACTIONS(5408), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51253] = 5, + ACTIONS(5858), 1, + aux_sym_integer_token2, + STATE(2803), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4856), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4854), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250339,32 +261813,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37599] = 3, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [51303] = 5, + ACTIONS(5861), 1, + aux_sym_integer_token3, + STATE(2804), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4863), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4861), 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_in, - anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250383,35 +261858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37646] = 3, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [51353] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4408), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4397), 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_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -250427,35 +261903,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37693] = 3, + anon_sym_by, + [51401] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, 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(5795), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -250471,41 +261952,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37740] = 3, + [51457] = 11, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, + ACTIONS(4953), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4965), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(5795), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -250515,35 +262003,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37787] = 3, + [51519] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, 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(5795), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -250559,34 +262051,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [37834] = 5, - ACTIONS(1842), 1, - sym_string_start, + [51575] = 10, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2592), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, + ACTIONS(4953), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -250594,8 +262092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -250605,102 +262101,96 @@ static const uint16_t ts_small_parse_table[] = { 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(5372), 1, + [51635] = 14, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, - anon_sym_STAR, - ACTIONS(5376), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5378), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, - anon_sym_DASH, - ACTIONS(5386), 1, - anon_sym_LBRACE, - ACTIONS(5390), 1, - sym_float, - STATE(2488), 1, - aux_sym_integer_repeat4, - STATE(5056), 1, - sym_string, - STATE(5298), 1, - sym_integer, - STATE(5345), 1, - sym_dotted_name, - STATE(6246), 1, - sym_case_pattern, + ACTIONS(4971), 1, + anon_sym_AMP, + ACTIONS(4973), 1, + anon_sym_CARET, 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, - STATE(5984), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5384), 3, - anon_sym__, - sym_true, - sym_false, - 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, - [37971] = 11, - ACTIONS(5005), 1, + ACTIONS(4953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4965), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4963), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 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, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51703] = 13, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, + ACTIONS(4973), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(4953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5021), 2, + ACTIONS(4955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4965), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2920), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(4963), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 21, + ACTIONS(5795), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -250712,104 +262202,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [38033] = 20, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5099), 1, + [51769] = 12, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5111), 1, - anon_sym_LBRACK, - ACTIONS(5330), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5338), 1, + ACTIONS(4957), 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(4961), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(4953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5334), 2, + ACTIONS(4955), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5344), 2, + ACTIONS(4965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5354), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2253), 2, - sym__not_in, - sym__is_not, - STATE(3236), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5342), 3, + ACTIONS(4963), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4964), 6, - anon_sym_COMMA, + ACTIONS(5797), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 19, + anon_sym_COMMA, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(5336), 6, + 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, + [51833] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5205), 1, + anon_sym_is, + STATE(2798), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5207), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2395), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5193), 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, + ACTIONS(5565), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + anon_sym_by, + [51891] = 9, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5667), 1, + ACTIONS(5867), 1, anon_sym_is, - STATE(2638), 1, + STATE(2814), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5670), 2, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - STATE(2278), 2, + STATE(2360), 2, sym__not_in, sym__is_not, - ACTIONS(5394), 3, + ACTIONS(5551), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5664), 6, + ACTIONS(5864), 6, 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, + ACTIONS(5549), 21, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -250817,7 +262347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250829,45 +262358,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [38171] = 8, - ACTIONS(5005), 1, + [51949] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5093), 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_AT, + anon_sym_DASH, + 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_by, + [52001] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52057] = 11, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(5031), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2920), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, - anon_sym_as, + ACTIONS(5027), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, + ACTIONS(5795), 21, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -250877,33 +262503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [38227] = 5, - ACTIONS(5673), 1, - sym_string_start, + [52119] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2640), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 5, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5095), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5101), 4, anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4915), 29, + ACTIONS(5093), 26, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -250913,7 +262540,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, @@ -250922,110 +262548,42 @@ static const uint16_t ts_small_parse_table[] = { 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(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, - STATE(2524), 1, - aux_sym_integer_repeat4, - STATE(5041), 1, - sym_string, - 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(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, - 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, - [38363] = 10, - 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, + anon_sym_by, + [52171] = 5, + STATE(2770), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + STATE(2284), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, 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, + ACTIONS(5565), 30, + sym__newline, + 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_with, + anon_sym_STAR_STAR, anon_sym_in, + 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, @@ -251035,51 +262593,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [38423] = 14, - ACTIONS(5005), 1, + anon_sym_nogil, + [52221] = 14, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(5031), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5025), 1, + ACTIONS(5043), 1, anon_sym_AMP, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(5027), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5011), 2, + ACTIONS(5029), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5021), 2, + ACTIONS(5039), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2920), 2, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5037), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_as, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 17, + ACTIONS(5795), 17, + sym__newline, + anon_sym_SEMI, 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, @@ -251089,32 +262648,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [38491] = 5, - STATE(2677), 1, - aux_sym_comparison_operator_repeat1, + [52289] = 5, + ACTIONS(5873), 1, + aux_sym_integer_token1, + STATE(2821), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2234), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + ACTIONS(4878), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 30, - sym__newline, + ACTIONS(4876), 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_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -251133,49 +262691,141 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [52339] = 8, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5394), 2, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(5682), 2, anon_sym_LT, anon_sym_GT, - STATE(2337), 2, - sym__not_in, - sym__is_not, - ACTIONS(5676), 6, + ACTIONS(5795), 26, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(5392), 22, - sym__newline, - anon_sym_SEMI, + sym_type_conversion, + [52395] = 11, + ACTIONS(4987), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(4989), 1, anon_sym_LPAREN, + ACTIONS(4995), 1, + anon_sym_STAR_STAR, + ACTIONS(4999), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4991), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5003), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5001), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [52457] = 8, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, anon_sym_STAR_STAR, + ACTIONS(4999), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3130), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 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, @@ -251183,215 +262833,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, 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(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, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(4810), 1, - sym_string, - 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(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, - 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, - [38685] = 13, - ACTIONS(5005), 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, + [52513] = 10, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(4995), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(4991), 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, - STATE(2920), 2, + STATE(3130), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5001), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_as, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 18, + ACTIONS(5795), 23, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [38751] = 12, - ACTIONS(5005), 1, + sym_type_conversion, + [52573] = 14, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, + ACTIONS(4995), 1, anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, + ACTIONS(5007), 1, + anon_sym_AMP, + ACTIONS(5009), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(4991), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5011), 2, + ACTIONS(4993), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5021), 2, + ACTIONS(5003), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2920), 2, + STATE(3130), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5001), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_as, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 19, + ACTIONS(5795), 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, - 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, + sym_type_conversion, + [52641] = 13, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(4995), 1, anon_sym_STAR_STAR, - ACTIONS(4976), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2973), 2, + ACTIONS(4991), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4993), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5003), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3130), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5687), 5, - anon_sym_STAR, + ACTIONS(5001), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 26, + ACTIONS(5795), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -251399,82 +262997,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [38871] = 14, - ACTIONS(5033), 1, + [52707] = 12, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(4995), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, - ACTIONS(5053), 1, - anon_sym_AMP, - ACTIONS(5055), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(4991), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5039), 2, + ACTIONS(4993), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5049), 2, + ACTIONS(5003), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2539), 2, + STATE(3130), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5047), 3, + ACTIONS(5001), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(5795), 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, - [38939] = 8, - ACTIONS(4960), 1, + sym_type_conversion, + [52771] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(5031), 1, anon_sym_STAR_STAR, - ACTIONS(4976), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2973), 2, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(5797), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 26, + ACTIONS(5795), 26, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -251484,7 +263082,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, @@ -251500,27 +263097,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [52827] = 5, + ACTIONS(5876), 1, + aux_sym_integer_token4, + STATE(2830), 1, + aux_sym_integer_repeat4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 28, + ACTIONS(4837), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -251528,8 +263118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -251549,30 +263139,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [39051] = 5, - ACTIONS(1963), 1, - sym_string_start, + aux_sym_integer_token5, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [52877] = 15, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR_STAR, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5041), 1, + anon_sym_PIPE, + ACTIONS(5043), 1, + anon_sym_AMP, + ACTIONS(5045), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2658), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, - anon_sym_as, + ACTIONS(5027), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5029), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5039), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 16, + 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, + [52947] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5265), 1, + anon_sym_is, + STATE(2773), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 29, + STATE(2290), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5251), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, @@ -251580,7 +263238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -251588,34 +263245,34 @@ 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, - [39101] = 8, - ACTIONS(5033), 1, + anon_sym_by, + [53005] = 10, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(5031), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, + ACTIONS(5027), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5687), 5, - anon_sym_STAR, + ACTIONS(5037), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 26, + ACTIONS(5795), 23, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -251624,15 +263281,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -251642,81 +263296,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [39157] = 15, - ACTIONS(4960), 1, + [53065] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACK, - ACTIONS(4982), 1, + ACTIONS(5726), 1, anon_sym_PIPE, - ACTIONS(4986), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(4988), 1, + ACTIONS(5730), 1, anon_sym_CARET, + ACTIONS(5732), 1, + anon_sym_is, + STATE(4355), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4968), 2, + ACTIONS(5714), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4980), 2, + ACTIONS(5724), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2973), 2, + ACTIONS(5734), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2463), 2, + sym__not_in, + sym__is_not, + STATE(3512), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4978), 3, + ACTIONS(5722), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5697), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5695), 16, + ACTIONS(4949), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(5718), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [39227] = 8, - ACTIONS(5364), 1, + [53145] = 8, + ACTIONS(5539), 1, sym_c_integer_signedness, - ACTIONS(5366), 1, + ACTIONS(5541), 1, aux_sym_c_integer_type_token1, - ACTIONS(5699), 1, + ACTIONS(5879), 1, aux_sym_integer_token2, - STATE(2708), 1, + STATE(2915), 1, aux_sym_integer_repeat2, - STATE(3397), 1, + STATE(3539), 1, sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + ACTIONS(4846), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 28, + ACTIONS(4844), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -251724,8 +263383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -251745,35 +263404,28 @@ static const uint16_t ts_small_parse_table[] = { 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(5015), 1, - anon_sym_STAR_STAR, - ACTIONS(5017), 1, - anon_sym_LBRACK, + [53201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2920), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 26, + ACTIONS(4397), 31, + 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_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -251793,33 +263445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [39339] = 5, - ACTIONS(5701), 1, - sym_string_start, + anon_sym_by, + [53246] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2658), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 5, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 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, + ACTIONS(5837), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -251838,36 +263493,34 @@ static const uint16_t ts_small_parse_table[] = { 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, + [53301] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, 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, + ACTIONS(5795), 25, 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, @@ -251886,210 +263539,136 @@ static const uint16_t ts_small_parse_table[] = { 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(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACK, + anon_sym_by, + [53356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(4599), 5, + anon_sym_as, 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, - 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, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 19, - sym__newline, - anon_sym_SEMI, + ACTIONS(4594), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + 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_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(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_is, 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_by, + [53401] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1842), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(5734), 1, - sym_identifier, - ACTIONS(5736), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(5738), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - anon_sym_STAR_STAR, - ACTIONS(5742), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(5744), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(5748), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(5752), 1, + ACTIONS(5089), 1, sym_float, - STATE(2456), 1, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5885), 1, + anon_sym_RBRACE, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(5097), 1, + STATE(5109), 1, sym_string, - STATE(5257), 1, + STATE(5327), 1, sym_integer, - STATE(5427), 1, + STATE(5511), 1, sym_dotted_name, - STATE(6308), 1, - sym_case_pattern, + STATE(5638), 1, + sym_splat_pattern, + STATE(6326), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5750), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(6140), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5746), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5428), 10, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, - sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, sym_none, - [39675] = 8, - 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, + [53488] = 5, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2920), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, - anon_sym_as, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - anon_sym_COMMA, + ACTIONS(4397), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -252109,44 +263688,46 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_type_conversion, + [53537] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, anon_sym_LPAREN, + ACTIONS(5161), 1, anon_sym_STAR_STAR, + ACTIONS(5165), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(5077), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 26, - anon_sym_DOT, + ACTIONS(5745), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -252155,89 +263736,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [39783] = 13, - ACTIONS(5033), 1, - anon_sym_DOT, - ACTIONS(5035), 1, + [53592] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(5055), 1, - anon_sym_CARET, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5887), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5039), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5049), 2, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [53679] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, anon_sym_DASH, - anon_sym_PLUS, - 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, - anon_sym_LT, - 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, - 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(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5889), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2278), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 5, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [53766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5514), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 29, + ACTIONS(5512), 31, 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_in, 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, @@ -252253,39 +263903,33 @@ static const uint16_t ts_small_parse_table[] = { 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(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACK, + anon_sym_by, + [53811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(5524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(5522), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -252301,32 +263945,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [39955] = 8, - ACTIONS(5005), 1, + anon_sym_by, + [53856] = 8, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, - anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2920), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5687), 5, + ACTIONS(5797), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 26, - anon_sym_COMMA, + ACTIONS(5795), 25, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -252349,239 +263992,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [40011] = 15, - ACTIONS(5005), 1, + anon_sym_by, + [53911] = 10, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5007), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5015), 1, - anon_sym_STAR_STAR, - ACTIONS(5017), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5023), 1, - anon_sym_PIPE, - ACTIONS(5025), 1, - anon_sym_AMP, - ACTIONS(5027), 1, - anon_sym_CARET, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5009), 2, + ACTIONS(5315), 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, - STATE(2920), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5019), 3, + ACTIONS(5323), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5697), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5695), 16, - anon_sym_COMMA, + ACTIONS(5795), 22, + anon_sym_GT_GT, 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(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, - 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(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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [40145] = 5, - ACTIONS(5754), 1, - aux_sym_integer_token1, - STATE(2671), 1, - aux_sym_integer_repeat1, + anon_sym_by, + [53970] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4654), 1, + anon_sym_extern, + ACTIONS(4662), 1, + anon_sym_enum, + ACTIONS(4666), 1, + anon_sym_fused, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4625), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_CARET, - anon_sym_LT_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(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4660), 2, + anon_sym_struct, + anon_sym_union, + STATE(3875), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1462), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [54049] = 11, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2337), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5324), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(5257), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5255), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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, - STATE(2331), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 5, + ACTIONS(5797), 3, 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, + ACTIONS(5795), 20, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -252591,128 +264150,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [40295] = 8, - ACTIONS(5033), 1, + anon_sym_by, + [54110] = 14, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5315), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5317), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5325), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5323), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(5795), 16, 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_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [40351] = 11, - ACTIONS(5033), 1, + anon_sym_by, + [54177] = 13, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(5331), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(5315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5049), 2, + ACTIONS(5317), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5325), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2539), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5047), 3, + ACTIONS(5323), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_EQ, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(5795), 17, 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, - [40413] = 5, - ACTIONS(5757), 1, - aux_sym_integer_token4, - STATE(2676), 1, - aux_sym_integer_repeat4, + anon_sym_by, + [54242] = 4, + ACTIONS(5891), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4851), 4, + ACTIONS(5311), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4849), 31, + ACTIONS(5309), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -252732,50 +264298,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - aux_sym_integer_token5, - sym_c_integer_signedness, + anon_sym_by, + [54289] = 4, + ACTIONS(5893), 1, 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, + ACTIONS(5311), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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), 22, - sym__newline, + ACTIONS(5309), 30, 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_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -252783,164 +264335,89 @@ static const uint16_t ts_small_parse_table[] = { 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(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(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, - 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, - 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(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(4046), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_by, + [54336] = 4, + ACTIONS(5895), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5710), 2, + ACTIONS(5311), 5, anon_sym_STAR, + anon_sym_EQ, 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, + ACTIONS(5309), 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_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(5714), 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, - [40681] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + anon_sym_by, + [54383] = 3, 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, + ACTIONS(5118), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 26, + ACTIONS(5116), 31, + sym_string_start, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + 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, @@ -252949,90 +264426,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [40733] = 15, - ACTIONS(5033), 1, + anon_sym_by, + [54428] = 12, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5051), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_AMP, - ACTIONS(5055), 1, - anon_sym_CARET, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, + ACTIONS(5315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5039), 2, + ACTIONS(5317), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5049), 2, + ACTIONS(5325), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2539), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5047), 3, + ACTIONS(5323), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5697), 3, - anon_sym_EQ, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5695), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 18, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [54491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2973), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5630), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, + ACTIONS(5628), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -253052,112 +264519,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [40859] = 23, - ACTIONS(1517), 1, + anon_sym_by, + [54536] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4930), 1, - sym_identifier, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(4940), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(4942), 1, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5897), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [54623] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - STATE(2452), 1, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5899), 1, + anon_sym_RBRACE, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5198), 1, - sym_case_pattern, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - STATE(5564), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4946), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5199), 10, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, - sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, sym_none, - [40945] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5772), 1, - anon_sym_is, - STATE(2684), 1, - aux_sym_comparison_operator_repeat1, + [54710] = 3, 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, + ACTIONS(5490), 5, 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_LT, + anon_sym_GT, + ACTIONS(5488), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -253165,39 +264681,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [41003] = 8, - 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, + 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_by, + [54755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(5494), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -253213,47 +264729,39 @@ static const uint16_t ts_small_parse_table[] = { 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(4972), 1, - anon_sym_STAR_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACK, + anon_sym_by, + [54800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5636), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(5660), 21, + ACTIONS(5634), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + 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, @@ -253263,37 +264771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [41121] = 5, - ACTIONS(1674), 1, - sym_string_start, + anon_sym_by, + [54845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, + ACTIONS(5703), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5701), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -253309,35 +264813,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [41171] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + anon_sym_by, + [54890] = 4, + ACTIONS(5901), 1, + aux_sym_c_integer_type_token1, 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, + ACTIONS(5311), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 26, + ACTIONS(5309), 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_STAR_STAR, anon_sym_in, - anon_sym_by, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -253347,6 +264847,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, @@ -253355,34 +264856,29 @@ static const uint16_t ts_small_parse_table[] = { 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(4972), 1, - anon_sym_STAR_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACK, + anon_sym_by, + [54937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2973), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5697), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, + ACTIONS(5695), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -253402,48 +264898,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [41279] = 10, - ACTIONS(5033), 1, + anon_sym_by, + [54982] = 8, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(5249), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2539), 2, + STATE(3076), 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(5797), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 25, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -253453,42 +264945,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [41339] = 10, - ACTIONS(4960), 1, + anon_sym_by, + [55037] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5903), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [55124] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5905), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [55211] = 10, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(5249), 1, anon_sym_STAR_STAR, - ACTIONS(4976), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2973), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4978), 3, + ACTIONS(5255), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_EQ, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 23, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 22, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -253502,23 +265120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [41399] = 5, - ACTIONS(1674), 1, - sym_string_start, + anon_sym_by, + [55270] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2640), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 5, + ACTIONS(1059), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 29, + ACTIONS(1057), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -253527,8 +265142,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -253548,198 +265163,330 @@ static const uint16_t ts_small_parse_table[] = { 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_by, + [55317] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4408), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 30, anon_sym_DOT, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, - ACTIONS(5724), 1, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5726), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(5728), 1, anon_sym_CARET, - ACTIONS(5730), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(4046), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [55364] = 14, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_AMP, + ACTIONS(5263), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5710), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5247), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5722), 2, + ACTIONS(5257), 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, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5720), 3, + ACTIONS(5255), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4964), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5797), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 16, 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, - ACTIONS(5714), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [41529] = 14, - ACTIONS(4960), 1, - anon_sym_DOT, - ACTIONS(4962), 1, + anon_sym_by, + [55431] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, - anon_sym_STAR_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACK, - ACTIONS(4986), 1, - anon_sym_AMP, - ACTIONS(4988), 1, - anon_sym_CARET, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4654), 1, + anon_sym_extern, + ACTIONS(4662), 1, + anon_sym_enum, + ACTIONS(4666), 1, + anon_sym_fused, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4625), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4660), 2, + anon_sym_struct, + anon_sym_union, + STATE(3875), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1484), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [55510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(4572), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4968), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4980), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2973), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4978), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_by, + [55555] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 17, + ACTIONS(5795), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_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, - [41597] = 13, - ACTIONS(4960), 1, + [55610] = 11, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(4972), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(4976), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4966), 2, + ACTIONS(5157), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4968), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4980), 2, + ACTIONS(5169), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2973), 2, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4978), 3, + ACTIONS(5167), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_EQ, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 18, + ACTIONS(5795), 20, + 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_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [41663] = 5, - ACTIONS(5778), 1, - aux_sym_integer_token2, - STATE(2696), 1, - aux_sym_integer_repeat2, + [55671] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 4, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 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(5795), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -253758,31 +265505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, + [55726] = 4, + ACTIONS(5907), 1, 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(4872), 4, + ACTIONS(5311), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 31, + ACTIONS(5309), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -253803,38 +265547,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [41763] = 5, - ACTIONS(1963), 1, - sym_string_start, + anon_sym_by, + [55773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2653), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 5, + ACTIONS(5674), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5672), 31, 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_in, 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, @@ -253850,60 +265589,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [41813] = 24, - ACTIONS(1517), 1, + anon_sym_by, + [55818] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5788), 1, + ACTIONS(5909), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5830), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6606), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -253913,44 +265653,45 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [41900] = 8, - ACTIONS(5033), 1, + [55905] = 10, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5191), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5187), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 22, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -253960,30 +265701,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [41955] = 3, + anon_sym_by, + [55964] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4554), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4557), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 31, + ACTIONS(4551), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, 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(4549), 17, + anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + 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, anon_sym_by, + [56013] = 4, + ACTIONS(5911), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5311), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5309), 30, + 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -254002,30 +265788,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42000] = 3, + anon_sym_by, + [56060] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(1059), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 31, + ACTIONS(1057), 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_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -254044,32 +265831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42045] = 3, + anon_sym_by, + [56107] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 31, - sym_string_start, + ACTIONS(4397), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -254085,40 +265874,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [42090] = 3, + anon_sym_by, + [56154] = 15, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5157), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5159), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5167), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 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, + [56223] = 10, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5157), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5167), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 31, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(5795), 22, + 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, @@ -254128,232 +265978,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42135] = 11, - ACTIONS(5033), 1, + [56282] = 14, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5173), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + ACTIONS(5157), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5140), 2, + ACTIONS(5159), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5169), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2539), 2, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5138), 3, + ACTIONS(5167), 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, + ACTIONS(5797), 3, anon_sym_as, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(1525), 1, - aux_sym_integer_token4, - ACTIONS(1537), 1, - sym_string_start, - ACTIONS(4932), 1, + [56349] = 13, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 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, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, - sym_identifier, - ACTIONS(5790), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(4810), 1, - sym_string, - STATE(4964), 1, - sym_integer, - 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(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, - [42283] = 3, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5157), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5159), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5167), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 31, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(5795), 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_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, - [42328] = 5, - ACTIONS(5792), 1, - aux_sym_integer_token2, - STATE(2708), 1, - aux_sym_integer_repeat2, + [56414] = 12, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5165), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 4, + ACTIONS(5157), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5159), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5169), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5167), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4856), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, 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, + [56477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4872), 4, + ACTIONS(5356), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4870), 30, + ACTIONS(5354), 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -254369,157 +266175,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, + anon_sym_by, + [56522] = 4, + ACTIONS(5913), 1, aux_sym_c_integer_type_token1, - [42426] = 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(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, - ACTIONS(5798), 1, - anon_sym_RBRACE, - 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, - [42513] = 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(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, - ACTIONS(5800), 1, - anon_sym_RBRACE, - 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, - [42600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5277), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 31, + ACTIONS(5275), 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_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -254539,94 +266218,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42645] = 8, - ACTIONS(5099), 1, + anon_sym_by, + [56569] = 14, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, + ACTIONS(5201), 1, + anon_sym_AMP, + ACTIONS(5203), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3180), 2, + ACTIONS(5187), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5189), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, 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, + ACTIONS(5795), 16, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42700] = 11, - 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, + anon_sym_by, + [56636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + ACTIONS(5118), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(5115), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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), 20, + ACTIONS(5116), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, + anon_sym_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -254636,43 +266313,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42761] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + anon_sym_by, + [56681] = 3, 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, + ACTIONS(5101), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 25, + ACTIONS(5093), 31, 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_in, - anon_sym_RBRACK, + 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, @@ -254681,140 +266355,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42812] = 8, - ACTIONS(5099), 1, + anon_sym_by, + [56726] = 15, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, + ACTIONS(5296), 1, + anon_sym_PIPE, + ACTIONS(5298), 1, + anon_sym_AMP, + ACTIONS(5300), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3180), 2, + ACTIONS(5284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5286), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5292), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, + ACTIONS(5771), 15, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42867] = 10, - ACTIONS(5099), 1, + [56795] = 13, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, + ACTIONS(5203), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + ACTIONS(5187), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3180), 2, + ACTIONS(5189), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5113), 3, + ACTIONS(5195), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 22, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(5795), 17, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42926] = 14, - ACTIONS(5099), 1, + anon_sym_by, + [56860] = 13, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, + ACTIONS(5249), 1, anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, - ACTIONS(5119), 1, - anon_sym_AMP, - ACTIONS(5121), 1, + ACTIONS(5263), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5105), 2, + ACTIONS(5247), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5115), 2, + ACTIONS(5257), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3180), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5113), 3, + ACTIONS(5255), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 16, - anon_sym_COMMA, + ACTIONS(5795), 17, anon_sym_if, anon_sym_async, anon_sym_for, @@ -254824,35 +266506,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [42993] = 4, - ACTIONS(5802), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [56925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, - anon_sym_as, + ACTIONS(5118), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 30, + ACTIONS(5116), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -254873,123 +266555,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(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, - ACTIONS(5804), 1, - anon_sym_RBRACE, - 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, - [43127] = 24, - ACTIONS(1517), 1, + sym_type_conversion, + [56970] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5806), 1, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5632), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6260), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -254999,97 +266619,103 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [43214] = 13, - ACTIONS(5099), 1, + [57057] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, + ACTIONS(5929), 1, + anon_sym_PIPE, + ACTIONS(5931), 1, + anon_sym_AMP, + ACTIONS(5933), 1, anon_sym_CARET, + ACTIONS(5935), 1, + anon_sym_is, + STATE(3305), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + ACTIONS(5917), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5105), 2, + ACTIONS(5919), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5115), 2, + ACTIONS(5927), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3180), 2, + ACTIONS(5937), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2286), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5113), 3, + ACTIONS(5925), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(4949), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5660), 17, - anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, + anon_sym_else, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_is, + ACTIONS(5923), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43279] = 12, - ACTIONS(5099), 1, + [57136] = 12, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + ACTIONS(5187), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5105), 2, + ACTIONS(5189), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5115), 2, + ACTIONS(5197), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3180), 2, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5113), 3, + ACTIONS(5195), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 18, - anon_sym_COMMA, + ACTIONS(5795), 18, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, @@ -255102,35 +266728,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [57199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5185), 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_from, + ACTIONS(5183), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -255149,105 +266770,125 @@ static const uint16_t ts_small_parse_table[] = { 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_by, + [57244] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4576), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4574), 31, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5814), 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_STAR_STAR, - ACTIONS(5820), 1, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5822), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(5824), 1, anon_sym_CARET, - ACTIONS(5826), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(4066), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [57289] = 5, + ACTIONS(1064), 1, + anon_sym_COMMA, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5808), 2, + ACTIONS(1059), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, 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, + ACTIONS(1057), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(5812), 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, - [43476] = 10, - 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, + sym_type_conversion, + [57338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + ACTIONS(5277), 5, + anon_sym_as, 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(5138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5660), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(5275), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + 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, @@ -255257,35 +266898,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43535] = 5, - ACTIONS(2001), 1, - sym_string_start, + anon_sym_by, + [57383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2743), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 4, + ACTIONS(5533), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5531), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -255301,207 +266940,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43584] = 14, - ACTIONS(5033), 1, + anon_sym_by, + [57428] = 12, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5249), 1, anon_sym_STAR_STAR, - ACTIONS(5144), 1, - anon_sym_AMP, - ACTIONS(5146), 1, - anon_sym_CARET, + ACTIONS(5253), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5132), 2, + ACTIONS(5247), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2539), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5138), 3, + ACTIONS(5255), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(5797), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 18, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43651] = 13, - ACTIONS(5033), 1, + anon_sym_by, + [57491] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5124), 1, anon_sym_STAR_STAR, - ACTIONS(5146), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, 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, - ACTIONS(5662), 2, anon_sym_LT, anon_sym_GT, - 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, + ACTIONS(5795), 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_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43716] = 20, - ACTIONS(4614), 1, + [57546] = 20, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(4612), 1, sym_identifier, - ACTIONS(4616), 1, + ACTIONS(4614), 1, anon_sym_LPAREN, - ACTIONS(4620), 1, - anon_sym_class, - ACTIONS(4632), 1, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(4640), 1, + ACTIONS(4674), 1, + anon_sym_extern, + ACTIONS(4678), 1, anon_sym_enum, - ACTIONS(4644), 1, + ACTIONS(4682), 1, anon_sym_fused, - ACTIONS(5830), 1, - anon_sym_extern, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(4348), 1, + STATE(4652), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4638), 2, + ACTIONS(4676), 2, anon_sym_struct, anon_sym_union, - STATE(3728), 2, + STATE(3973), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(4578), 2, + STATE(4856), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(3588), 6, + STATE(1792), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [43795] = 12, - ACTIONS(5033), 1, + [57625] = 11, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5124), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 2, + ACTIONS(5120), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5132), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5140), 2, + ACTIONS(5130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5662), 2, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - STATE(2539), 2, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5138), 3, + ACTIONS(5128), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 19, + ACTIONS(5795), 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, @@ -255510,34 +267141,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [43858] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [57686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 6, + ACTIONS(5640), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5638), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -255558,34 +267189,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [43905] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [57731] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 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_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57786] = 5, + ACTIONS(5939), 1, + aux_sym_integer_token2, + STATE(2915), 1, + aux_sym_integer_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4856), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(4854), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [57835] = 5, + ACTIONS(5942), 1, + aux_sym_integer_token3, + STATE(2916), 1, + aux_sym_integer_repeat3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4863), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4861), 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -255601,197 +267323,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [43952] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [57884] = 10, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, anon_sym_LPAREN, - 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(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, 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(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, - 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, + ACTIONS(5120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 23, + 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_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, + [57943] = 14, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 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(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(5134), 1, + anon_sym_AMP, + ACTIONS(5136), 1, + anon_sym_CARET, 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(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, + ACTIONS(5120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58010] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5644), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5642), 31, + 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_in, + 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_by, + [58055] = 13, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(5136), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(5120), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 18, + 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_STAR_STAR, - 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_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58120] = 12, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5795), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [44159] = 5, - ACTIONS(988), 1, - anon_sym_COMMA, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [58183] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5945), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [58270] = 4, + ACTIONS(5947), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 6, + ACTIONS(5277), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 28, + ACTIONS(5275), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -255807,61 +267677,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [44208] = 24, - ACTIONS(1517), 1, + anon_sym_by, + [58317] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5832), 1, + ACTIONS(5949), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5397), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(5869), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -255871,31 +267741,34 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [44295] = 5, - STATE(2740), 1, - aux_sym_comparison_operator_repeat1, + [58404] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2253), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 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, + ACTIONS(5795), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -255915,47 +267788,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44344] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5837), 1, - anon_sym_is, - STATE(2740), 1, - aux_sym_comparison_operator_repeat1, + [58459] = 11, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5394), 2, + ACTIONS(5284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5840), 2, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5292), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - STATE(2253), 2, - sym__not_in, - sym__is_not, - ACTIONS(5834), 6, + ACTIONS(5795), 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, - ACTIONS(5392), 21, + [58520] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4582), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -255963,31 +267873,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [44401] = 5, - STATE(2817), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [58565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2322), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 5, + ACTIONS(4580), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 28, + ACTIONS(4578), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -256007,95 +267921,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44450] = 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(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, - ACTIONS(5843), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(4810), 1, - sym_string, - 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(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, - [44537] = 5, - ACTIONS(2001), 1, - sym_string_start, + anon_sym_by, + [58610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2757), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 4, + ACTIONS(4580), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 29, + ACTIONS(4578), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -256114,33 +267963,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44586] = 4, - ACTIONS(5845), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [58655] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -256156,29 +268011,27 @@ static const uint16_t ts_small_parse_table[] = { 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, + [58710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5648), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 30, + ACTIONS(5646), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -256199,45 +268052,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [44680] = 8, - ACTIONS(5208), 1, + anon_sym_by, + [58755] = 10, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3069), 2, + ACTIONS(5284), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5292), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, - anon_sym_RPAREN, + ACTIONS(5795), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -256247,83 +268102,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44735] = 11, - ACTIONS(5208), 1, + [58814] = 14, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, + ACTIONS(5298), 1, + anon_sym_AMP, + ACTIONS(5300), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + ACTIONS(5284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5224), 2, + ACTIONS(5286), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5294), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3069), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5222), 3, + ACTIONS(5292), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 20, - anon_sym_RPAREN, + ACTIONS(5795), 16, 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, - [44796] = 5, - ACTIONS(5849), 1, - aux_sym_integer_token1, - STATE(2748), 1, - aux_sym_integer_repeat1, + [58881] = 6, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(1554), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 4, + ACTIONS(1549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1551), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 30, + ACTIONS(1812), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -256339,90 +268200,76 @@ static const uint16_t ts_small_parse_table[] = { 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, + [58932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + ACTIONS(5652), 5, + anon_sym_as, 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, + ACTIONS(5650), 31, + 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_in, + 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, - [44914] = 8, - ACTIONS(5208), 1, + anon_sym_by, + [58977] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3069), 2, + STATE(2650), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 5, - anon_sym_as, + ACTIONS(5839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, - anon_sym_RPAREN, + ACTIONS(5837), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -256442,46 +268289,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + [59032] = 6, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4557), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, + anon_sym_as, 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, + ACTIONS(4551), 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_STAR_STAR, anon_sym_in, + 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, @@ -256491,247 +268334,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45028] = 14, - ACTIONS(5208), 1, + [59083] = 8, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, - ACTIONS(5228), 1, - anon_sym_AMP, - ACTIONS(5230), 1, - anon_sym_CARET, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, 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, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5222), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5839), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 16, - anon_sym_RPAREN, + ACTIONS(5837), 25, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [59138] = 5, + STATE(3011), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + STATE(2483), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5565), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5224), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(3069), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5222), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, - anon_sym_as, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59187] = 4, + ACTIONS(5951), 1, + aux_sym_c_integer_type_token1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5311), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 17, - anon_sym_RPAREN, + ACTIONS(5309), 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_STAR_STAR, anon_sym_in, + 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, - [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(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, - ACTIONS(5852), 1, - anon_sym_RBRACE, - 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, - [45247] = 12, - ACTIONS(5208), 1, + sym_type_conversion, + [59234] = 13, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, + ACTIONS(5300), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5212), 2, + ACTIONS(5284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5214), 2, + ACTIONS(5286), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5224), 2, + ACTIONS(5294), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3069), 2, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5222), 3, + ACTIONS(5292), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5662), 3, + ACTIONS(5797), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 18, - anon_sym_RPAREN, + ACTIONS(5795), 17, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_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, + [59299] = 4, + ACTIONS(5953), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, - anon_sym_as, + ACTIONS(5311), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 31, - sym_string_start, + ACTIONS(5309), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -256752,82 +268562,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45355] = 5, - ACTIONS(5854), 1, - sym_string_start, + sym_type_conversion, + [59346] = 15, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, + ACTIONS(5199), 1, + anon_sym_PIPE, + ACTIONS(5201), 1, + anon_sym_AMP, + ACTIONS(5203), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2757), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 4, + ACTIONS(5187), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5189), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_as, 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, + ACTIONS(5771), 15, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45404] = 8, - 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, + anon_sym_by, + [59415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3180), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(5360), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 25, + ACTIONS(5358), 31, + 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_in, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -256843,104 +268658,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45459] = 5, + anon_sym_by, + [59460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5396), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + ACTIONS(5394), 31, 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_in, 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(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_by, + [59505] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5857), 1, + ACTIONS(5955), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -256950,60 +268764,60 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [45595] = 24, - ACTIONS(1517), 1, + [59592] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5859), 1, + ACTIONS(5957), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257013,60 +268827,177 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [45682] = 24, - ACTIONS(1517), 1, + [59679] = 15, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(5327), 1, + anon_sym_PIPE, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5317), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5325), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5323), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 15, + anon_sym_if, + 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, + anon_sym_by, + [59748] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(5959), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [59835] = 24, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(5961), 1, + anon_sym_RBRACE, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257076,30 +269007,128 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [45769] = 3, + [59922] = 12, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(5284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5286), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5292), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59985] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 31, + ACTIONS(4844), 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_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + 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_by, - anon_sym_STAR_STAR, + [60030] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5745), 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, @@ -257118,34 +269147,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45814] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [60085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 6, + ACTIONS(5474), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5472), 31, 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -257161,119 +269188,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45861] = 20, - ACTIONS(135), 1, - anon_sym_class, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, + anon_sym_by, + [60130] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 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(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, 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(1524), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [45940] = 24, - ACTIONS(1517), 1, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 25, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [60185] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5863), 1, + ACTIONS(5963), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257283,60 +269299,60 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [46027] = 24, - ACTIONS(1517), 1, + [60272] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5865), 1, + ACTIONS(5965), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257346,34 +269362,32 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [46114] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [60359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(4610), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(4605), 31, 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -257389,122 +269403,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - STATE(5205), 1, - sym_type_parameter, + anon_sym_by, + [60404] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5970), 1, + anon_sym_is, + STATE(2959), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(5973), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5551), 3, 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, + ACTIONS(5967), 6, 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, - [46212] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - 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(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, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1584), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [46291] = 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, + ACTIONS(5549), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -257512,16 +269439,12 @@ 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_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -257529,125 +269452,124 @@ 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, - [46336] = 8, - ACTIONS(5033), 1, + [60461] = 15, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5124), 1, anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_PIPE, + ACTIONS(5134), 1, + anon_sym_AMP, + ACTIONS(5136), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(5120), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5122), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5773), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 26, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5128), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5771), 16, 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_CARET, - anon_sym_LT_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, + [60530] = 4, + ACTIONS(5976), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(5277), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 14, + ACTIONS(5275), 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_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), 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, + anon_sym_by, + [60577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + ACTIONS(4564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 30, + ACTIONS(4559), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -257668,35 +269590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [46487] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [60622] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 6, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, 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(5745), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -257712,29 +269638,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46534] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [60677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(4572), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(4570), 31, 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -257755,119 +269679,61 @@ static const uint16_t ts_small_parse_table[] = { 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(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(3148), 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_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_by, + [60722] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5871), 1, + ACTIONS(5978), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257877,114 +269743,60 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [46747] = 15, - 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(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(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, - ACTIONS(5697), 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(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, + [60809] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5980), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5691), 1, + STATE(5979), 1, sym_splat_pattern, - STATE(6363), 1, + STATE(6846), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -257994,35 +269806,34 @@ static const uint16_t ts_small_parse_table[] = { 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, + [60896] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + ACTIONS(5837), 25, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -258041,60 +269852,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46958] = 24, - ACTIONS(1517), 1, + anon_sym_by, + [60951] = 24, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(5738), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5784), 1, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5877), 1, + ACTIONS(5982), 1, anon_sym_RBRACE, - STATE(2452), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5109), 1, sym_string, - STATE(4964), 1, + STATE(5327), 1, sym_integer, - STATE(5195), 1, + STATE(5511), 1, sym_dotted_name, - STATE(5440), 1, + STATE(5675), 1, sym_splat_pattern, - STATE(5726), 1, + STATE(6628), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(5786), 3, + ACTIONS(5883), 3, anon_sym__, sym_true, sym_false, - STATE(5725), 9, + STATE(6623), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -258104,34 +269916,90 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [47045] = 8, - ACTIONS(5099), 1, - anon_sym_DOT, - ACTIONS(5101), 1, + [61038] = 20, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, anon_sym_LPAREN, - ACTIONS(5109), 1, - anon_sym_STAR_STAR, - ACTIONS(5111), 1, - anon_sym_LBRACK, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3180), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 5, - anon_sym_as, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3976), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(4028), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [61117] = 5, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2983), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 25, + ACTIONS(4397), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -258151,38 +270019,33 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, - anon_sym_STAR_STAR, + [61166] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(1059), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1057), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -258198,29 +270061,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47155] = 4, - ACTIONS(5879), 1, - aux_sym_c_integer_type_token1, + sym_type_conversion, + [61213] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, - anon_sym_as, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 30, + ACTIONS(4397), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -258241,34 +270104,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47202] = 4, - ACTIONS(5881), 1, - aux_sym_c_integer_type_token1, + sym_type_conversion, + [61260] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 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, + ACTIONS(5745), 25, + anon_sym_RPAREN, anon_sym_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, @@ -258284,40 +270151,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47249] = 4, - ACTIONS(5883), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [61315] = 11, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5187), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5195), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 20, + anon_sym_RPAREN, 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, @@ -258327,19 +270201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47296] = 4, - ACTIONS(5885), 1, + anon_sym_by, + [61376] = 4, + ACTIONS(5984), 1, aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5277), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 30, + ACTIONS(5275), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -258347,14 +270222,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -258370,30 +270244,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47343] = 8, - ACTIONS(5208), 1, + sym_type_conversion, + [61423] = 8, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5210), 1, + ACTIONS(5155), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3069), 2, + STATE(3052), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(5797), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 25, + ACTIONS(5795), 25, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -258417,33 +270291,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47398] = 3, + anon_sym_by, + [61478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, + ACTIONS(5478), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 31, - sym_string_start, + ACTIONS(5476), 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_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -258459,36 +270333,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [61523] = 5, + STATE(2959), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1599), 5, - anon_sym_as, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 27, + ACTIONS(5565), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -258504,36 +270378,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + [61572] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 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, + ACTIONS(5837), 25, 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, @@ -258549,93 +270424,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [61627] = 5, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(1821), 1, + anon_sym_EQ, 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, + ACTIONS(1059), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 25, + ACTIONS(1057), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -258645,6 +270460,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, @@ -258653,32 +270469,34 @@ static const uint16_t ts_small_parse_table[] = { 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, + [61676] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5249), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5745), 25, 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, @@ -258697,31 +270515,29 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [61731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(4592), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(4590), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -258741,159 +270557,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [61776] = 5, + ACTIONS(1915), 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, - ACTIONS(5887), 1, - anon_sym_RBRACE, - 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, - [47860] = 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(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, - ACTIONS(5889), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(3000), 2, 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, - [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, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 4, anon_sym_STAR, anon_sym_SLASH, - 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), 21, + ACTIONS(4915), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -258901,13 +270580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_by, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -258915,35 +270596,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [48004] = 5, - STATE(2799), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2237), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + ACTIONS(5664), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 29, + ACTIONS(5662), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -258959,34 +270643,33 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR_STAR, + anon_sym_by, + [61870] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4985), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - sym__newline, - anon_sym_as, + ACTIONS(4397), 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_STAR_STAR, anon_sym_in, - anon_sym_with, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -259005,160 +270688,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [48108] = 15, - ACTIONS(5033), 1, + [61919] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5216), 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, - ACTIONS(5130), 2, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 4, 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, - ACTIONS(5697), 2, anon_sym_LT, anon_sym_GT, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5695), 16, + ACTIONS(5837), 26, sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_with, 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, - [48177] = 20, - ACTIONS(4614), 1, + anon_sym_nogil, + [61974] = 20, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(4612), 1, sym_identifier, - ACTIONS(4616), 1, + ACTIONS(4614), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(4793), 1, - anon_sym_class, - ACTIONS(4795), 1, + ACTIONS(4674), 1, anon_sym_extern, - ACTIONS(4801), 1, + ACTIONS(4678), 1, anon_sym_enum, - ACTIONS(4805), 1, + ACTIONS(4682), 1, anon_sym_fused, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(4380), 1, + STATE(4652), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4799), 2, + ACTIONS(4676), 2, anon_sym_struct, anon_sym_union, - STATE(3719), 2, + STATE(3973), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(4578), 2, + STATE(4856), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(3868), 6, + STATE(1821), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [48256] = 11, - 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, + [62053] = 5, + ACTIONS(5986), 1, + aux_sym_integer_token1, + STATE(2988), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + ACTIONS(4878), 4, anon_sym_STAR, 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, + ACTIONS(4876), 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_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, + anon_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(5660), 21, - sym__newline, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + [62102] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5837), 25, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_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, @@ -259168,31 +270884,29 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [62157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + ACTIONS(4592), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 30, + ACTIONS(4590), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -259212,37 +270926,33 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR_STAR, + anon_sym_by, + [62202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(4576), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 26, - sym__newline, - anon_sym_as, + ACTIONS(4574), 31, + 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_in, - anon_sym_with, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259258,38 +270968,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [48419] = 8, - ACTIONS(5033), 1, + anon_sym_by, + [62247] = 8, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(4947), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(5184), 1, + ACTIONS(5319), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, + STATE(2945), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(5747), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 26, - sym__newline, - anon_sym_as, + ACTIONS(5745), 25, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259305,97 +271015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [48474] = 20, - ACTIONS(4614), 1, - sym_identifier, - 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, - 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR_STAR, + anon_sym_by, + [62302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2539), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5482), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 26, - sym__newline, - anon_sym_as, + ACTIONS(5480), 31, + 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_in, - anon_sym_with, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259410,47 +271056,40 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR_STAR, + anon_sym_LT_GT, + anon_sym_by, + [62347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + ACTIONS(5621), 5, + anon_sym_as, 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, + ACTIONS(5619), 31, + 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_in, - anon_sym_with, + 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, @@ -259460,28 +271099,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [48667] = 3, + anon_sym_by, + [62392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 5, + ACTIONS(4584), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 31, - sym_string_start, + ACTIONS(4582), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -259502,39 +271141,33 @@ static const uint16_t ts_small_parse_table[] = { 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(5218), 1, - anon_sym_STAR_STAR, - ACTIONS(5220), 1, - anon_sym_LBRACK, + anon_sym_by, + [62437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3069), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 5, + ACTIONS(4580), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 25, - anon_sym_RPAREN, + ACTIONS(4578), 31, + 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_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259550,52 +271183,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [48767] = 14, - ACTIONS(5033), 1, + anon_sym_by, + [62482] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5184), 1, + ACTIONS(5216), 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(5178), 2, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 4, 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, - 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), 17, + ACTIONS(5745), 26, sym__newline, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, + 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, @@ -259603,102 +271231,88 @@ static const uint16_t ts_small_parse_table[] = { 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(5045), 1, - anon_sym_LBRACK, - ACTIONS(5184), 1, - anon_sym_STAR_STAR, - ACTIONS(5194), 1, - anon_sym_CARET, + [62537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + ACTIONS(4580), 5, + anon_sym_as, 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, - 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), 18, - sym__newline, - anon_sym_as, + ACTIONS(4578), 31, + 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_in, - anon_sym_with, + 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, - [48899] = 12, - ACTIONS(5033), 1, + anon_sym_by, + [62582] = 8, + ACTIONS(5023), 1, anon_sym_DOT, - ACTIONS(5035), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(5045), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(5184), 1, + ACTIONS(5216), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5178), 2, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, 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, - 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), 19, + ACTIONS(5795), 26, sym__newline, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, + 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, @@ -259706,101 +271320,78 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + [62637] = 5, + ACTIONS(5989), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, + STATE(3000), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 4, 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, - STATE(3180), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5113), 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, + ACTIONS(4919), 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_STAR_STAR, anon_sym_in, + 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, - [49031] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5905), 1, - anon_sym_is, - STATE(2817), 1, - aux_sym_comparison_operator_repeat1, + [62686] = 3, 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(5394), 3, + ACTIONS(4592), 5, + anon_sym_as, 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_LT, + anon_sym_GT, + ACTIONS(4590), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -259808,18 +271399,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [49088] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [62731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 5, + ACTIONS(5656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 31, - sym_string_start, + ACTIONS(5654), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -259828,8 +271425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -259850,33 +271447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49133] = 3, + anon_sym_by, + [62776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, + ACTIONS(5500), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 31, + ACTIONS(5498), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259892,95 +271489,92 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + anon_sym_by, + [62821] = 20, + ACTIONS(4612), 1, sym_identifier, - ACTIONS(5911), 1, - anon_sym_RBRACE, - 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(4614), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(5992), 1, + anon_sym_extern, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, 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, - [49265] = 3, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3980), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3667), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [62900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, + ACTIONS(4951), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 30, + ACTIONS(4949), 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_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -259996,26 +271590,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49309] = 3, + anon_sym_by, + [62945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5504), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(5502), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260036,27 +271632,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49353] = 3, + anon_sym_by, + [62990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, + ACTIONS(4592), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, + ACTIONS(4590), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260077,39 +271674,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49397] = 3, + anon_sym_by, + [63035] = 11, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 5, - anon_sym_as, + ACTIONS(5212), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 21, + sym__newline, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -260119,30 +271724,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49441] = 4, - ACTIONS(5913), 1, - aux_sym_c_integer_type_token1, + anon_sym_nogil, + [63096] = 8, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, - anon_sym_as, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, 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, + ACTIONS(5795), 26, + sym__newline, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + 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, @@ -260161,32 +271771,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_nogil, + [63151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(988), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(983), 5, + ACTIONS(5185), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 26, + ACTIONS(5183), 31, + sym_string_start, 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -260205,17 +271813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49537] = 3, + anon_sym_by, + [63196] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5997), 1, + anon_sym_is, + STATE(3011), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5551), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(6000), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + STATE(2483), 2, + sym__not_in, + sym__is_not, + ACTIONS(5994), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -260223,15 +271848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -260239,38 +271862,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + [63253] = 20, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4638), 1, + anon_sym_enum, + ACTIONS(4642), 1, + anon_sym_fused, + ACTIONS(5992), 1, + anon_sym_extern, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4683), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4636), 2, + anon_sym_struct, + anon_sym_union, + STATE(3980), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3675), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [63332] = 20, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(4746), 1, + anon_sym_extern, + ACTIONS(4752), 1, + anon_sym_enum, + ACTIONS(4756), 1, + anon_sym_fused, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4750), 2, + anon_sym_struct, + anon_sym_union, + STATE(3976), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3987), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [63411] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, + ACTIONS(5929), 1, + anon_sym_PIPE, + ACTIONS(5931), 1, + anon_sym_AMP, + ACTIONS(5933), 1, + anon_sym_CARET, + ACTIONS(5935), 1, anon_sym_is, + STATE(4394), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5927), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5937), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2286), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5925), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(5923), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49581] = 3, + [63490] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6003), 1, + aux_sym_integer_token1, + STATE(3173), 1, + aux_sym_integer_repeat1, + STATE(3219), 1, + sym_c_integer_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, + ACTIONS(4846), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 30, + ACTIONS(4844), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -260286,27 +272086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49625] = 3, + [63545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, + ACTIONS(1059), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 30, + ACTIONS(1057), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260327,39 +272127,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49669] = 3, + anon_sym_by, + [63590] = 10, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, - anon_sym_as, + ACTIONS(5212), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 23, + sym__newline, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -260369,17 +272176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49713] = 3, + anon_sym_nogil, + [63649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, + ACTIONS(5617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 30, + ACTIONS(5615), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -260388,8 +272196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260410,114 +272218,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49757] = 4, - ACTIONS(4557), 1, - anon_sym_COMMA, + anon_sym_by, + [63694] = 14, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, + ACTIONS(5226), 1, + anon_sym_AMP, + ACTIONS(5228), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(5212), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 29, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 17, + sym__newline, 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [63761] = 13, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, + ACTIONS(5228), 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(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5795), 18, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + 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, - sym_type_conversion, - [49803] = 3, + anon_sym_nogil, + [63826] = 12, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5212), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5214), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 19, + sym__newline, 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_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, + anon_sym_nogil, + [63889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + ACTIONS(5118), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 30, + ACTIONS(5116), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -260533,18 +272416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [49891] = 3, + anon_sym_by, + [63934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, + ACTIONS(5601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 30, + ACTIONS(5599), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -260553,8 +272436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260575,32 +272458,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49935] = 3, + anon_sym_by, + [63979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, + ACTIONS(5185), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 30, + ACTIONS(5183), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -260616,27 +272500,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [49979] = 3, + anon_sym_by, + [64024] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5795), 25, anon_sym_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, @@ -260656,39 +272547,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [50023] = 3, + anon_sym_by, + [64079] = 11, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(5319), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, - anon_sym_as, + ACTIONS(5315), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5323), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5795), 20, anon_sym_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, @@ -260698,32 +272597,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50067] = 3, + anon_sym_by, + [64140] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, - anon_sym_as, + ACTIONS(1059), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 30, + ACTIONS(1057), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -260739,30 +272640,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50111] = 5, - ACTIONS(998), 1, + anon_sym_by, + [64187] = 4, + ACTIONS(4410), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1599), 5, - anon_sym_as, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 27, + ACTIONS(4397), 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_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260782,60 +272683,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50159] = 5, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [64234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, - anon_sym_as, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 27, + ACTIONS(1812), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1549), 17, + 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_PERCENT, - anon_sym_SLASH_SLASH, + 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_by, + [64283] = 15, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR_STAR, + ACTIONS(5224), 1, + anon_sym_PIPE, + ACTIONS(5226), 1, anon_sym_AMP, + ACTIONS(5228), 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(5222), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5773), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2650), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5220), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5771), 16, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + 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, - [50207] = 3, + anon_sym_nogil, + [64352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, + ACTIONS(5185), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 30, + ACTIONS(5183), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -260843,8 +272801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260866,29 +272824,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [50251] = 3, + [64397] = 6, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(6005), 1, + anon_sym_LBRACK, + STATE(5548), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 30, + ACTIONS(4397), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -260907,26 +272869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50295] = 3, + [64448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, + ACTIONS(5364), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 30, + ACTIONS(5362), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260947,27 +272910,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [50339] = 3, + anon_sym_by, + [64493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, + ACTIONS(5678), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 30, + ACTIONS(5676), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -260988,173 +272952,136 @@ static const uint16_t ts_small_parse_table[] = { 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_by, + [64538] = 15, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5243), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, + ACTIONS(5249), 1, anon_sym_STAR_STAR, - ACTIONS(5543), 1, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5259), 1, anon_sym_PIPE, - ACTIONS(5545), 1, + ACTIONS(5261), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5263), 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, - ACTIONS(5531), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5533), 2, + ACTIONS(5247), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5541), 2, + ACTIONS(5257), 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, + STATE(3076), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5539), 3, + ACTIONS(5255), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4964), 4, + ACTIONS(5773), 3, 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, - 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, + ACTIONS(5771), 15, 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_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [50505] = 3, + anon_sym_by, + [64607] = 12, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, - anon_sym_as, + ACTIONS(5402), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - 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, - [50549] = 3, + [64669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, + ACTIONS(1059), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 30, + ACTIONS(1057), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261170,17 +273097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50593] = 3, + anon_sym_by, + [64713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(5654), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -261188,8 +273116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -261211,32 +273139,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [50637] = 3, + [64757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, + ACTIONS(5678), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 30, + ACTIONS(5676), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261252,32 +273179,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50681] = 3, + anon_sym_by, + [64801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 5, + ACTIONS(5360), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 30, + ACTIONS(5358), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261293,17 +273220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50725] = 3, + anon_sym_by, + [64845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, + ACTIONS(5500), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 30, + ACTIONS(5498), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -261311,14 +273239,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261334,38 +273261,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_type_conversion, + [64889] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 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, + ACTIONS(5795), 24, anon_sym_COMMA, anon_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, @@ -261377,78 +273308,74 @@ static const uint16_t ts_small_parse_table[] = { 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(5303), 1, - anon_sym_STAR_STAR, - ACTIONS(5305), 1, - anon_sym_LBRACK, + [64943] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1812), 14, + anon_sym_DOT, + anon_sym_LPAREN, 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_CARET, anon_sym_LT_LT, + ACTIONS(1549), 16, + 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, - [50871] = 3, + anon_sym_by, + [64991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 30, + ACTIONS(4397), 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_in, 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, @@ -261464,27 +273391,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50915] = 3, + anon_sym_by, + [65035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, - anon_sym_as, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, + ACTIONS(4397), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -261505,43 +273432,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [50959] = 8, - ACTIONS(5293), 1, + sym_type_conversion, + [65079] = 11, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5406), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(5402), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 25, + ACTIONS(5795), 19, 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, @@ -261551,30 +273482,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51013] = 4, - ACTIONS(5923), 1, - aux_sym_c_integer_type_token1, + [65139] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 24, 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, @@ -261593,37 +273528,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51059] = 4, - ACTIONS(5919), 1, + [65193] = 5, + ACTIONS(6011), 1, anon_sym_and, + ACTIONS(6013), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(6009), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(6007), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -261635,38 +273571,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51105] = 3, + [65241] = 10, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(5402), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 21, 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, @@ -261676,76 +273619,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51149] = 3, + [65299] = 14, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5418), 1, + anon_sym_AMP, + ACTIONS(5420), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(5402), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 15, 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, - [51193] = 3, + [65365] = 4, + ACTIONS(6011), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5356), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(5354), 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_in, 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, @@ -261758,30 +273713,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51237] = 4, - ACTIONS(5925), 1, - aux_sym_c_integer_type_token1, + [65411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, + ACTIONS(5396), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, + ACTIONS(5394), 30, 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -261800,72 +273753,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51283] = 3, + anon_sym_by, + [65455] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5420), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(5402), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5797), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5795), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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, + [65519] = 5, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, + ACTIONS(1064), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1059), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 30, + ACTIONS(1057), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261881,31 +273848,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [51371] = 5, - ACTIONS(1728), 1, - sym_string_start, + [65567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4897), 4, + ACTIONS(4846), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4895), 28, + ACTIONS(4844), 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_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -261925,31 +273888,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51419] = 3, + anon_sym_by, + [65611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 30, + ACTIONS(4844), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -261965,28 +273929,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [51463] = 3, + anon_sym_by, + [65655] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, + ACTIONS(4549), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 30, + ACTIONS(4551), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -262007,31 +273972,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51507] = 3, + [65701] = 5, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(1549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1551), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 30, + ACTIONS(1812), 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_in, 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, @@ -262047,35 +274015,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + [65749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(4610), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, + ACTIONS(4605), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, - anon_sym_by, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -262094,46 +274055,41 @@ static const uint16_t ts_small_parse_table[] = { 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(5303), 1, - anon_sym_STAR_STAR, - ACTIONS(5305), 1, - anon_sym_LBRACK, + anon_sym_by, + [65793] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5297), 2, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5309), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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), 20, + ACTIONS(4551), 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_STAR_STAR, anon_sym_in, - anon_sym_by, + 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, @@ -262143,28 +274099,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51665] = 3, + [65841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, + ACTIONS(5514), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 30, + ACTIONS(5512), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -262184,32 +274139,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51709] = 3, + anon_sym_by, + [65885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, + ACTIONS(5524), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 30, + ACTIONS(5522), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -262225,92 +274180,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51753] = 15, - ACTIONS(5328), 1, + anon_sym_by, + [65929] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1059), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1057), 30, anon_sym_DOT, - ACTIONS(5330), 1, anon_sym_LPAREN, - ACTIONS(5338), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(5340), 1, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(5346), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5348), 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(5350), 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, + [65973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(5674), 5, 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(5697), 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(5695), 15, + ACTIONS(5672), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, 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, + anon_sym_by, + [66017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 5, + ACTIONS(5356), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, + ACTIONS(5354), 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_else, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -262322,35 +274303,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [51873] = 8, - ACTIONS(5293), 1, + anon_sym_by, + [66061] = 8, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5378), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, + ACTIONS(5795), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -262369,42 +274350,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51927] = 10, - ACTIONS(5293), 1, + [66115] = 11, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5378), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5297), 2, + ACTIONS(5370), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5662), 2, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5307), 3, + ACTIONS(5380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 22, + ACTIONS(5795), 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_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -262417,42 +274399,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [51985] = 5, + [66175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(5678), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 14, + ACTIONS(5676), 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_STAR_STAR, + anon_sym_in, 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), 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, @@ -262460,32 +274440,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [52033] = 3, + [66219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, + ACTIONS(5630), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 30, + ACTIONS(5628), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -262501,28 +274480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52077] = 3, + anon_sym_by, + [66263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, + ACTIONS(5636), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 30, + ACTIONS(5634), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -262542,34 +274521,29 @@ static const uint16_t ts_small_parse_table[] = { 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(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, - anon_sym_STAR_STAR, + anon_sym_by, + [66307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 5, + ACTIONS(5703), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 24, + ACTIONS(5701), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -262588,29 +274562,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52175] = 3, + anon_sym_by, + [66351] = 8, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -262629,80 +274609,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52219] = 14, - ACTIONS(5293), 1, + [66405] = 10, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5378), 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(5297), 2, + ACTIONS(5370), 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, - ACTIONS(5662), 2, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5307), 3, + ACTIONS(5380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 16, + ACTIONS(5795), 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_RBRACK, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52285] = 3, + [66463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(5697), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 30, + ACTIONS(5695), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -262722,39 +274697,39 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [66507] = 6, + ACTIONS(6017), 1, + anon_sym_as, + ACTIONS(6022), 1, + anon_sym_and, + ACTIONS(6024), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4496), 5, + ACTIONS(6020), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 26, + ACTIONS(6015), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_by, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -262766,34 +274741,29 @@ static const uint16_t ts_small_parse_table[] = { 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(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, - anon_sym_STAR_STAR, + sym_type_conversion, + [66557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 5, + ACTIONS(5396), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 24, + ACTIONS(5394), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -262812,136 +274782,41 @@ static const uint16_t ts_small_parse_table[] = { 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(5303), 1, - anon_sym_STAR_STAR, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5315), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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), 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(5303), 1, - anon_sym_STAR_STAR, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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), 18, - anon_sym_COMMA, + [66601] = 7, + ACTIONS(6028), 1, anon_sym_as, + ACTIONS(6032), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_by, - anon_sym_PIPE, - anon_sym_not, + ACTIONS(6034), 1, anon_sym_and, + ACTIONS(6036), 1, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [52559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(6030), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 30, + ACTIONS(6026), 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, + anon_sym_in, 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, @@ -262953,31 +274828,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [52603] = 5, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [66653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(988), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(983), 5, + ACTIONS(5674), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 27, + ACTIONS(5672), 30, 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -262997,38 +274868,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52651] = 7, - ACTIONS(5919), 1, + anon_sym_by, + [66697] = 7, + ACTIONS(6011), 1, anon_sym_and, - ACTIONS(5921), 1, + ACTIONS(6013), 1, anon_sym_or, - ACTIONS(5939), 1, + ACTIONS(6040), 1, anon_sym_as, - ACTIONS(5941), 1, + ACTIONS(6044), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 5, + ACTIONS(6042), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(6038), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_PERCENT, @@ -263042,17 +274914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52703] = 3, + [66749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, + ACTIONS(5277), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 30, + ACTIONS(5275), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -263060,13 +274932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263082,38 +274954,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [52747] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [66793] = 6, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, + ACTIONS(6046), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(6020), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(6015), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -263125,27 +274999,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52793] = 3, + [66843] = 7, + ACTIONS(6011), 1, + anon_sym_and, + ACTIONS(6013), 1, + anon_sym_or, + ACTIONS(6040), 1, + anon_sym_as, + ACTIONS(6044), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, - anon_sym_as, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 30, + ACTIONS(6049), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -263153,8 +275033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -263166,30 +275044,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52837] = 5, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [66895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(988), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(983), 5, + ACTIONS(5356), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 27, + ACTIONS(5354), 30, 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -263209,32 +275084,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52885] = 3, + anon_sym_by, + [66939] = 5, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(1549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1551), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 30, + ACTIONS(1812), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263250,74 +275128,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [52929] = 5, + [66987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 3, + ACTIONS(5101), 5, 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(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_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263333,32 +275168,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [67031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(4846), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(4844), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -263378,31 +275209,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53071] = 3, + anon_sym_by, + [67075] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 30, + ACTIONS(4551), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263418,29 +275253,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [53115] = 3, + [67123] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + ACTIONS(4403), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 30, + ACTIONS(4397), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -263460,60 +275296,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53159] = 5, + [67171] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5767), 1, + anon_sym_is, + STATE(3238), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5567), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 3, - anon_sym_as, + ACTIONS(5769), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + STATE(2340), 2, + sym__not_in, + sym__is_not, + ACTIONS(5755), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 20, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_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_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, + anon_sym_by, + [67227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, + ACTIONS(5504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 30, + ACTIONS(5502), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -263522,9 +275362,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -263544,37 +275383,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53251] = 4, - ACTIONS(5945), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [67271] = 5, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, - anon_sym_as, + ACTIONS(6009), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, + ACTIONS(6007), 28, + sym__newline, + anon_sym_SEMI, 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -263586,17 +275427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53297] = 3, + [67319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, + ACTIONS(5533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 30, + ACTIONS(5531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -263604,13 +275445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263626,88 +275467,84 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [67363] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 5, + ACTIONS(4554), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4557), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(4551), 14, 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, + ACTIONS(4549), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53393] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + anon_sym_by, + [67411] = 4, + ACTIONS(6034), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5077), 3, + ACTIONS(5356), 5, + anon_sym_STAR, + anon_sym_EQ, 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, + ACTIONS(5354), 29, + 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_in, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -263716,32 +275553,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53443] = 3, + [67457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, + ACTIONS(1059), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 30, + ACTIONS(1057), 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_in, 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, @@ -263757,17 +275593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53487] = 3, + anon_sym_by, + [67501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, + ACTIONS(5617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 30, + ACTIONS(5615), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -263775,13 +275612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -263797,37 +275634,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [53531] = 3, + anon_sym_by, + [67545] = 23, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + ACTIONS(5881), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + STATE(5979), 1, + sym_splat_pattern, + STATE(6846), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(5883), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6623), 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, + [67629] = 7, + ACTIONS(6028), 1, anon_sym_as, + ACTIONS(6032), 1, + anon_sym_if, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 30, + ACTIONS(6038), 26, + sym__newline, + anon_sym_SEMI, 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_in, 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, @@ -263839,35 +275741,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53575] = 3, + [67681] = 7, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6032), 1, + anon_sym_if, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, + ACTIONS(6051), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 30, + ACTIONS(6049), 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, + anon_sym_in, 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, @@ -263879,34 +275786,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [53619] = 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, + [67733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3236), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(4951), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 25, + ACTIONS(4949), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -263926,209 +275826,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53673] = 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), 30, + anon_sym_by, + [67777] = 14, + ACTIONS(5366), 1, anon_sym_DOT, + ACTIONS(5368), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(5374), 1, anon_sym_STAR_STAR, + ACTIONS(5378), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5386), 1, anon_sym_AMP, + ACTIONS(5388), 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, - [53717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, - anon_sym_as, + ACTIONS(5370), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53761] = 3, + [67843] = 13, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, + ACTIONS(5370), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [53805] = 15, - ACTIONS(5293), 1, + [67907] = 12, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5303), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, - ACTIONS(5305), 1, + ACTIONS(5378), 1, anon_sym_LBRACK, - ACTIONS(5311), 1, - anon_sym_PIPE, - ACTIONS(5313), 1, - anon_sym_AMP, - ACTIONS(5315), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5297), 2, + ACTIONS(5370), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5299), 2, + ACTIONS(5372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5309), 2, + ACTIONS(5382), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5697), 2, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5307), 3, + ACTIONS(5380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5695), 15, + ACTIONS(5795), 18, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_by, + 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, - [53873] = 4, + [67969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, + ACTIONS(5664), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 27, + ACTIONS(5662), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -264144,31 +276020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [53919] = 3, + anon_sym_by, + [68013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, + ACTIONS(5277), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 30, + ACTIONS(5275), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264184,33 +276061,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [53963] = 3, + anon_sym_by, + [68057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 5, + ACTIONS(5514), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 30, + ACTIONS(5512), 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_in, 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, @@ -264226,19 +276102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54007] = 4, - ACTIONS(5951), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [68101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + ACTIONS(5524), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 29, + ACTIONS(5522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -264246,8 +276121,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -264268,32 +276143,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54053] = 3, + anon_sym_by, + [68145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5533), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5531), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264309,17 +276184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54097] = 3, + anon_sym_by, + [68189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, + ACTIONS(4610), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 30, + ACTIONS(4605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -264327,13 +276203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264349,31 +276225,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54141] = 5, - STATE(2925), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_by, + [68233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2240), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + ACTIONS(5500), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 28, + ACTIONS(5498), 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_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -264393,46 +276266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54189] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(5956), 1, - anon_sym_is, - STATE(2925), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_by, + [68277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5394), 2, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(5959), 2, anon_sym_LT, anon_sym_GT, - STATE(2240), 2, - sym__not_in, - sym__is_not, - 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(5392), 20, + ACTIONS(4397), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -264440,58 +276301,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [54245] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_by, + [68321] = 20, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_AMP, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_is, + STATE(3471), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 5, + ACTIONS(5402), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5424), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(2419), 2, + sym__not_in, + sym__is_not, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4949), 4, 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, + ACTIONS(5408), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54289] = 3, + [68399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, + ACTIONS(5630), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 30, + ACTIONS(5628), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -264499,13 +276384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264521,30 +276406,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54333] = 3, + anon_sym_by, + [68443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5630), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5628), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -264563,29 +276447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54377] = 4, - ACTIONS(5962), 1, - aux_sym_c_integer_type_token1, + anon_sym_by, + [68487] = 5, + ACTIONS(1680), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 5, - anon_sym_as, + STATE(3172), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4917), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, + ACTIONS(4915), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -264605,34 +276491,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54423] = 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, + [68535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3236), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(5636), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 25, + ACTIONS(5634), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -264651,32 +276531,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54477] = 3, + anon_sym_by, + [68579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, + ACTIONS(5640), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 30, + ACTIONS(5638), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264692,30 +276572,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54521] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [68623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + ACTIONS(5644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5642), 30, 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -264734,32 +276613,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54567] = 4, - ACTIONS(4568), 1, - anon_sym_COMMA, + anon_sym_by, + [68667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(5648), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(5646), 30, 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_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264775,29 +276654,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54613] = 5, - ACTIONS(5964), 1, - aux_sym_integer_token1, - STATE(2934), 1, - aux_sym_integer_repeat1, + anon_sym_by, + [68711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 4, + ACTIONS(5652), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4863), 29, + ACTIONS(5650), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -264817,33 +276695,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [54661] = 3, + anon_sym_by, + [68755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + ACTIONS(5664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 30, + ACTIONS(5662), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264859,33 +276736,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54705] = 4, - ACTIONS(4491), 1, - anon_sym_COMMA, + anon_sym_by, + [68799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(5636), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5634), 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_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -264901,33 +276777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54751] = 3, + anon_sym_by, + [68843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, + ACTIONS(5474), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 30, + ACTIONS(5472), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -264943,31 +276818,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54795] = 3, + anon_sym_by, + [68887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, + ACTIONS(5703), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 30, + ACTIONS(5701), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -264983,30 +276859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [54839] = 3, + anon_sym_by, + [68931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, + ACTIONS(5678), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 30, + ACTIONS(5676), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -265025,29 +276900,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54883] = 3, + anon_sym_by, + [68975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, + ACTIONS(5360), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 30, + ACTIONS(5358), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -265066,32 +276941,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54927] = 3, + anon_sym_by, + [69019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(5478), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 30, + ACTIONS(5476), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -265107,32 +276982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [54971] = 3, + anon_sym_by, + [69063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, - anon_sym_as, + ACTIONS(5360), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 30, + ACTIONS(5358), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -265148,40 +277023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55015] = 7, - ACTIONS(5969), 1, - anon_sym_as, - ACTIONS(5973), 1, - anon_sym_if, - ACTIONS(5975), 1, - anon_sym_and, - ACTIONS(5977), 1, - anon_sym_or, + anon_sym_by, + [69107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, + ACTIONS(5482), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 27, + ACTIONS(5480), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265193,17 +277064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55067] = 3, + anon_sym_by, + [69151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 30, + ACTIONS(5394), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -265211,8 +277083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -265234,35 +277106,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [55111] = 4, - ACTIONS(5935), 1, - anon_sym_and, + [69195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(5504), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, + ACTIONS(5502), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265275,39 +277146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [55157] = 5, - ACTIONS(5975), 1, - anon_sym_and, - ACTIONS(5977), 1, - anon_sym_or, + anon_sym_by, + [69239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + ACTIONS(5697), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 28, + ACTIONS(5695), 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_in, 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, @@ -265319,17 +277187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55205] = 3, + anon_sym_by, + [69283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + ACTIONS(5652), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 30, + ACTIONS(5650), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -265338,9 +277207,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -265360,17 +277228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55249] = 3, + anon_sym_by, + [69327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, + ACTIONS(4846), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 30, + ACTIONS(4844), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -265378,14 +277247,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -265401,29 +277269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55293] = 3, + sym_type_conversion, + [69371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, + ACTIONS(5674), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 30, + ACTIONS(5672), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -265442,32 +277310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55337] = 3, + anon_sym_by, + [69415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, + ACTIONS(5356), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 30, + ACTIONS(5354), 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_in, 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, @@ -265483,36 +277351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55381] = 4, - ACTIONS(5975), 1, - anon_sym_and, + anon_sym_by, + [69459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, - anon_sym_as, + ACTIONS(4572), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265525,18 +277392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55427] = 3, + anon_sym_by, + [69503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, + ACTIONS(5101), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 30, - sym_string_start, + ACTIONS(5093), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -265544,8 +277411,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -265566,29 +277433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55471] = 3, + anon_sym_by, + [69547] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5101), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 30, - anon_sym_DOT, + ACTIONS(5095), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5093), 25, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -265598,41 +277470,92 @@ static const uint16_t ts_small_parse_table[] = { 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, + [69597] = 15, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, anon_sym_AMP, + ACTIONS(5420), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5404), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(5414), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5412), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5773), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5771), 14, + 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, - [55515] = 3, + [69665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 30, + ACTIONS(4594), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -265648,40 +277571,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55559] = 7, - ACTIONS(5969), 1, - anon_sym_as, - ACTIONS(5973), 1, - anon_sym_if, - ACTIONS(5975), 1, - anon_sym_and, - ACTIONS(5977), 1, - anon_sym_or, + anon_sym_by, + [69709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(5617), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 27, + ACTIONS(5615), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265693,28 +277612,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55611] = 3, + anon_sym_by, + [69753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 5, + ACTIONS(5621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 30, + ACTIONS(5619), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -265734,32 +277653,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55655] = 3, + anon_sym_by, + [69797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, + ACTIONS(4564), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 30, + ACTIONS(4559), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -265775,27 +277694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55699] = 3, + anon_sym_by, + [69841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 5, - anon_sym_as, + ACTIONS(5514), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 30, + ACTIONS(5512), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -265816,32 +277735,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55743] = 3, + sym_type_conversion, + [69885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 5, - anon_sym_as, + ACTIONS(5524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 30, - sym_string_start, + ACTIONS(5522), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265857,32 +277776,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55787] = 3, + sym_type_conversion, + [69929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 30, + ACTIONS(4594), 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_in, 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, @@ -265898,33 +277817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55831] = 7, - ACTIONS(5969), 1, - anon_sym_as, - ACTIONS(5973), 1, - anon_sym_if, - ACTIONS(5975), 1, - anon_sym_and, - ACTIONS(5977), 1, - anon_sym_or, + anon_sym_by, + [69973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(4572), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 27, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -265932,6 +277845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -265943,32 +277858,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55883] = 4, - ACTIONS(4601), 1, - anon_sym_COMMA, + sym_type_conversion, + [70017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(5277), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 29, + ACTIONS(5275), 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_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -265984,33 +277899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [55929] = 3, + anon_sym_by, + [70061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + ACTIONS(5533), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 30, + ACTIONS(5531), 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_in, 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, @@ -266026,29 +277940,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [55973] = 3, + anon_sym_by, + [70105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, + ACTIONS(4564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 30, + ACTIONS(4559), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -266067,32 +277981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56017] = 3, + anon_sym_by, + [70149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, + ACTIONS(5601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 30, + ACTIONS(5599), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -266108,32 +278022,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56061] = 3, + anon_sym_by, + [70193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, + ACTIONS(5364), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 30, + ACTIONS(5362), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -266149,17 +278063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56105] = 3, + anon_sym_by, + [70237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, + ACTIONS(5630), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 30, + ACTIONS(5628), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266167,8 +278082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266190,17 +278105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [56149] = 3, + [70281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, + ACTIONS(5636), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 30, + ACTIONS(5634), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266208,8 +278123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266231,17 +278146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [56193] = 3, + [70325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, + ACTIONS(5640), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 30, + ACTIONS(5638), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266249,13 +278164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -266271,30 +278186,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + anon_sym_by, + [70369] = 7, + ACTIONS(6022), 1, + anon_sym_and, + ACTIONS(6024), 1, + anon_sym_or, + ACTIONS(6053), 1, + anon_sym_as, + ACTIONS(6055), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6038), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, sym_type_conversion, - [56237] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [70421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, - anon_sym_as, + ACTIONS(4599), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(4594), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266314,17 +278272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56283] = 3, + anon_sym_by, + [70465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(5703), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 30, + ACTIONS(5701), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266332,8 +278291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266355,60 +278314,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [56327] = 5, + [70509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5474), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1602), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + ACTIONS(5472), 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_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, - sym_type_conversion, - [56375] = 3, + anon_sym_by, + [70553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 5, + ACTIONS(4564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 30, + ACTIONS(4559), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266416,13 +278373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -266438,33 +278395,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [56419] = 3, + anon_sym_by, + [70597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, + ACTIONS(5640), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 30, + ACTIONS(5638), 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_in, 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, @@ -266480,40 +278436,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [70641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 5, + ACTIONS(5697), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(5695), 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_in, 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, @@ -266525,17 +278477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56515] = 3, + sym_type_conversion, + [70685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 30, + ACTIONS(5394), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266544,9 +278497,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266566,68 +278518,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56559] = 3, + anon_sym_by, + [70729] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, - anon_sym_as, + ACTIONS(4554), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4557), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4551), 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(4549), 16, + 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, - [56603] = 3, + anon_sym_by, + [70777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(5101), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + 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_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266648,32 +278602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56647] = 3, + sym_type_conversion, + [70821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(5642), 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_in, 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, @@ -266689,31 +278643,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56691] = 5, - ACTIONS(5979), 1, - sym_string_start, + anon_sym_by, + [70865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4917), 4, + ACTIONS(4592), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4915), 28, + ACTIONS(4590), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -266732,78 +278684,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [70909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(5533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 30, + ACTIONS(5531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -266811,8 +278703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266834,31 +278726,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [56867] = 3, + [70953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, + ACTIONS(4576), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 30, + ACTIONS(4574), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -266874,30 +278766,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [56911] = 3, + anon_sym_by, + [70997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 5, + ACTIONS(5648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 30, - sym_string_start, + ACTIONS(5646), 30, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -266916,28 +278807,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56955] = 3, + anon_sym_by, + [71041] = 5, + ACTIONS(6057), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, + STATE(3172), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4921), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 30, + ACTIONS(4919), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -266957,31 +278851,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56999] = 3, + [71089] = 5, + ACTIONS(6060), 1, + aux_sym_integer_token1, + STATE(3173), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, + ACTIONS(4878), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 30, + ACTIONS(4876), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -266997,18 +278892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [57043] = 3, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [71137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, + ACTIONS(5478), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 30, + ACTIONS(5476), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267017,9 +278913,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267039,29 +278934,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57087] = 3, + anon_sym_by, + [71181] = 6, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(6063), 1, + anon_sym_LBRACK, + STATE(5687), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, + ACTIONS(4408), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 30, + ACTIONS(4397), 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_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -267080,36 +278979,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57131] = 5, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [71231] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(6068), 1, + anon_sym_is, + STATE(3176), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1599), 5, - anon_sym_as, + ACTIONS(5551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(6071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 27, + STATE(2463), 2, + sym__not_in, + sym__is_not, + ACTIONS(6065), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 20, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -267117,38 +279026,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [57179] = 3, + [71287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, - anon_sym_as, + ACTIONS(5640), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(5638), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -267164,27 +279066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57223] = 3, + sym_type_conversion, + [71331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(5644), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(5642), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267205,17 +279107,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57267] = 3, + sym_type_conversion, + [71375] = 4, + ACTIONS(6022), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, + ACTIONS(5356), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 30, + ACTIONS(5354), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267223,17 +279128,15 @@ 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_in, 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, @@ -267246,17 +279149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57311] = 3, + sym_type_conversion, + [71421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, + ACTIONS(5648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 30, + ACTIONS(5646), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267264,14 +279168,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -267287,17 +279190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57355] = 3, + sym_type_conversion, + [71465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(5664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 30, + ACTIONS(5662), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267305,8 +279209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267328,29 +279232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [57399] = 3, + [71509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, + ACTIONS(5652), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 30, + ACTIONS(5650), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -267369,17 +279272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57443] = 3, + anon_sym_by, + [71553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 5, + ACTIONS(1059), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 30, + ACTIONS(1057), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267388,9 +279292,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267410,17 +279313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57487] = 3, + anon_sym_by, + [71597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(5664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 30, + ACTIONS(5662), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267429,9 +279333,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267451,28 +279354,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [57531] = 3, + anon_sym_by, + [71641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(5101), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(5093), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -267492,34 +279395,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [71685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3236), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5514), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, + ACTIONS(5512), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -267538,46 +279436,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [71729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(5474), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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), 20, + ACTIONS(5472), 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_STAR_STAR, anon_sym_in, + 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, @@ -267587,41 +279477,40 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [71773] = 7, + ACTIONS(6022), 1, + anon_sym_and, + ACTIONS(6024), 1, + anon_sym_or, + ACTIONS(6053), 1, + anon_sym_as, + ACTIONS(6055), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3236), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(6051), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 25, + ACTIONS(6049), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + 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, @@ -267633,45 +279522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + sym_type_conversion, + [71825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(4951), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - 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), 22, + ACTIONS(4949), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -267681,81 +279563,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [71869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(5652), 5, 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, - 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, + ACTIONS(5650), 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_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + 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, - [57867] = 3, + sym_type_conversion, + [71913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5478), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(5476), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -267774,118 +279645,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [71957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5332), 2, + ACTIONS(4576), 5, 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, - 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_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [57975] = 12, - ACTIONS(5328), 1, + ACTIONS(4574), 30, 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(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), 18, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_in, - anon_sym_RBRACK, + 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, - [58037] = 3, + sym_type_conversion, + [72001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(5644), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 30, + ACTIONS(5642), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -267893,13 +279705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -267915,30 +279727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [58081] = 3, + anon_sym_by, + [72045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, + ACTIONS(5482), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 30, + ACTIONS(5480), 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -267957,32 +279768,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58125] = 3, + anon_sym_by, + [72089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(5619), 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_in, 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, @@ -267998,28 +279809,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58169] = 3, + anon_sym_by, + [72133] = 5, + STATE(3176), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, + STATE(2463), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 30, + ACTIONS(5565), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268039,17 +279853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58213] = 3, + [72181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, + ACTIONS(4576), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 30, + ACTIONS(4574), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268058,9 +279872,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268080,32 +279893,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58257] = 3, + anon_sym_by, + [72225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, - anon_sym_as, + ACTIONS(5621), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 30, + ACTIONS(5619), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -268121,17 +279934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58301] = 3, + sym_type_conversion, + [72269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, + ACTIONS(5482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 30, + ACTIONS(5480), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268140,9 +279954,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268162,17 +279975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58345] = 3, + anon_sym_by, + [72313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, + ACTIONS(5474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 30, + ACTIONS(5472), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268180,14 +279994,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -268203,30 +280016,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58389] = 5, - ACTIONS(1728), 1, - sym_string_start, + sym_type_conversion, + [72357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2867), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4496), 4, + ACTIONS(5648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(5646), 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_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268246,17 +280057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58437] = 3, + anon_sym_by, + [72401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, + ACTIONS(4584), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 30, + ACTIONS(4582), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268264,8 +280076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268287,27 +280099,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [58481] = 3, + [72445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, - anon_sym_as, + ACTIONS(4580), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 30, + ACTIONS(4578), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268328,34 +280139,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58525] = 5, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [72489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, - anon_sym_as, + ACTIONS(4580), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 27, + ACTIONS(4578), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -268371,29 +280180,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58573] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [72533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(5703), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5701), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268413,32 +280221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58619] = 3, + anon_sym_by, + [72577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, + ACTIONS(5504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 30, + ACTIONS(5502), 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_in, 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, @@ -268454,17 +280262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58663] = 3, + anon_sym_by, + [72621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, + ACTIONS(5478), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 30, + ACTIONS(5476), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268472,8 +280281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268495,17 +280304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [58707] = 3, + [72665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, + ACTIONS(4592), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 30, + ACTIONS(4590), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268513,14 +280322,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -268536,17 +280344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58751] = 3, + sym_type_conversion, + [72709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, + ACTIONS(4592), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 30, + ACTIONS(4590), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268554,14 +280363,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -268577,32 +280385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58795] = 3, + sym_type_conversion, + [72753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, + ACTIONS(5617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 30, + ACTIONS(5615), 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_in, 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, @@ -268618,17 +280426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58839] = 3, + anon_sym_by, + [72797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, + ACTIONS(5621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 30, + ACTIONS(5619), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268637,9 +280446,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268659,39 +280467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58883] = 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, + anon_sym_by, + [72841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 5, + ACTIONS(5601), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, + ACTIONS(5599), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -268703,28 +280508,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [58935] = 3, + anon_sym_by, + [72885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, - anon_sym_as, + ACTIONS(5482), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 30, + ACTIONS(5480), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268745,32 +280549,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [58979] = 3, + sym_type_conversion, + [72929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, + ACTIONS(5364), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 30, + ACTIONS(5362), 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_in, 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, @@ -268786,30 +280590,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59023] = 5, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [72973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(4584), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(4582), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -268829,34 +280631,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59071] = 8, - ACTIONS(5293), 1, + anon_sym_by, + [73017] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4554), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4557), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 14, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 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, + ACTIONS(4549), 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, + [73065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(4580), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 24, + ACTIONS(4578), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -268875,34 +280715,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59125] = 5, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [73109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(4610), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(4605), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -268918,46 +280756,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + sym_type_conversion, + [73153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 2, + ACTIONS(5697), 5, 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_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 19, + ACTIONS(5695), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -268967,17 +280797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59233] = 3, + anon_sym_by, + [73197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, + ACTIONS(4580), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 30, + ACTIONS(4578), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -268985,13 +280816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -269007,35 +280838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [59277] = 8, - ACTIONS(5293), 1, + anon_sym_by, + [73241] = 8, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5368), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, + ACTIONS(5374), 1, anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 5, + ACTIONS(5839), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 24, + ACTIONS(5837), 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, @@ -269054,39 +280885,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59331] = 6, - ACTIONS(5919), 1, - anon_sym_and, - ACTIONS(5921), 1, - anon_sym_or, - ACTIONS(5984), 1, - anon_sym_as, + [73295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 5, + ACTIONS(5678), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(5676), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -269098,17 +280925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59381] = 3, + anon_sym_by, + [73339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, + ACTIONS(5504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 30, + ACTIONS(5502), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -269116,14 +280944,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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -269139,70 +280966,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59425] = 15, - ACTIONS(5293), 1, + sym_type_conversion, + [73383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4582), 30, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, - ACTIONS(5543), 1, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(5545), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(5547), 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_by, + [73427] = 8, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - STATE(2926), 2, + STATE(3420), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5539), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5697), 3, - anon_sym_EQ, + ACTIONS(5747), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5695), 14, + ACTIONS(5745), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59493] = 3, + [73481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(5617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(5615), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -269210,8 +281072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -269233,45 +281095,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [59537] = 10, - 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, + [73525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 2, + ACTIONS(4580), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - 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(5660), 21, + ACTIONS(4578), 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_STAR_STAR, anon_sym_in, + 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, @@ -269281,185 +281135,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59595] = 14, - 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(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_CARET, + anon_sym_by, + [73569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5531), 2, + ACTIONS(5601), 5, 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, - 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_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [59661] = 13, - ACTIONS(5293), 1, + ACTIONS(5599), 30, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, - anon_sym_STAR_STAR, - ACTIONS(5547), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - 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(5660), 16, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_STAR_STAR, 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, - [59725] = 12, - 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(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, - 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(5660), 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, - [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, + sym_type_conversion, + [73613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 5, + ACTIONS(5364), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 26, + ACTIONS(5362), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -269467,6 +281204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -269479,38 +281218,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [59839] = 6, - ACTIONS(5935), 1, - anon_sym_and, - ACTIONS(5937), 1, - anon_sym_or, - ACTIONS(5989), 1, - anon_sym_as, + [73657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 5, + ACTIONS(5601), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, + ACTIONS(5599), 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_else, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -269522,22 +281258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [59889] = 5, - ACTIONS(5935), 1, - anon_sym_and, - ACTIONS(5937), 1, - anon_sym_or, + anon_sym_by, + [73701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + ACTIONS(5364), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 28, + ACTIONS(5362), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -269545,15 +281277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -269565,40 +281299,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [59937] = 6, - ACTIONS(5975), 1, - anon_sym_and, - ACTIONS(5977), 1, - anon_sym_or, - ACTIONS(5992), 1, - anon_sym_as, + anon_sym_by, + [73745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(5490), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 28, + ACTIONS(5488), 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_in, 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, @@ -269610,17 +281340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [59987] = 3, + anon_sym_by, + [73789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, + ACTIONS(5496), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 29, + ACTIONS(5494), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -269628,8 +281359,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -269650,28 +281381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60030] = 3, + anon_sym_by, + [73833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, - anon_sym_as, + ACTIONS(4592), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4590), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -269690,28 +281422,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60073] = 3, + anon_sym_by, + [73877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(4592), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(4590), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -269730,28 +281463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60116] = 3, + anon_sym_by, + [73921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(5490), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(5488), 30, 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -269770,28 +281504,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60159] = 3, + anon_sym_by, + [73965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(5496), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(5494), 30, 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -269810,33 +281545,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60202] = 3, + anon_sym_by, + [74009] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(6077), 1, + anon_sym_is, + STATE(3238), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(5551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(6080), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + STATE(2340), 2, + sym__not_in, + sym__is_not, + ACTIONS(6074), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 20, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_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, @@ -269844,37 +281592,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [60245] = 3, + anon_sym_by, + [74065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, - anon_sym_as, + ACTIONS(4599), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 29, + ACTIONS(4594), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -269890,31 +281633,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60288] = 3, + sym_type_conversion, + [74109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, - anon_sym_as, + ACTIONS(4564), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 29, + ACTIONS(4559), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -269930,28 +281674,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60331] = 4, + sym_type_conversion, + [74153] = 5, + STATE(3238), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4557), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4560), 5, - anon_sym_as, + STATE(2340), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 27, + ACTIONS(5565), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -269971,31 +281717,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60376] = 3, + anon_sym_by, + [74201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, - anon_sym_as, + ACTIONS(5490), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5488), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -270011,31 +281758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60419] = 3, + sym_type_conversion, + [74245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, - anon_sym_as, + ACTIONS(5496), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 29, + ACTIONS(5494), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270051,17 +281799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60462] = 3, + sym_type_conversion, + [74289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 5, + ACTIONS(4580), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 29, + ACTIONS(4578), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -270069,8 +281818,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -270091,35 +281840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60505] = 3, + anon_sym_by, + [74333] = 5, + ACTIONS(6022), 1, + anon_sym_and, + ACTIONS(6024), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, - anon_sym_as, + ACTIONS(6009), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 29, + ACTIONS(6007), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270131,35 +281883,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60548] = 3, + sym_type_conversion, + [74381] = 7, + ACTIONS(6011), 1, + anon_sym_and, + ACTIONS(6013), 1, + anon_sym_or, + ACTIONS(6040), 1, + anon_sym_as, + ACTIONS(6044), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, - anon_sym_as, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 29, + ACTIONS(6026), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270171,28 +281929,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60591] = 3, + [74433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 5, + ACTIONS(4572), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 29, + ACTIONS(4570), 30, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -270211,31 +281969,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60634] = 3, + anon_sym_by, + [74477] = 4, + ACTIONS(4607), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(4610), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270251,31 +282011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60677] = 3, + sym_type_conversion, + [74523] = 4, + ACTIONS(4403), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, - anon_sym_as, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 29, + ACTIONS(4397), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270291,31 +282053,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60720] = 3, + sym_type_conversion, + [74569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, - anon_sym_as, + ACTIONS(4951), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 29, + ACTIONS(4949), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270331,68 +282094,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60763] = 3, + sym_type_conversion, + [74613] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, - anon_sym_as, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 29, + ACTIONS(1812), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1549), 16, + 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, - [60806] = 3, + anon_sym_by, + [74661] = 5, + ACTIONS(1680), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, - anon_sym_as, + STATE(3115), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4408), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 29, + ACTIONS(4397), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -270411,31 +282181,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60849] = 3, + [74709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, - anon_sym_as, + ACTIONS(5360), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 29, + ACTIONS(5358), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270451,36 +282221,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60892] = 4, + sym_type_conversion, + [74753] = 7, + ACTIONS(6022), 1, + anon_sym_and, + ACTIONS(6024), 1, + anon_sym_or, + ACTIONS(6053), 1, + anon_sym_as, + ACTIONS(6055), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4571), 5, - anon_sym_as, + ACTIONS(6030), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 27, + ACTIONS(6026), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270492,27 +282266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60937] = 3, + sym_type_conversion, + [74805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 5, - anon_sym_as, + ACTIONS(5656), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 29, + ACTIONS(5654), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -270532,35 +282307,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [60980] = 3, + anon_sym_by, + [74849] = 6, + ACTIONS(6011), 1, + anon_sym_and, + ACTIONS(6013), 1, + anon_sym_or, + ACTIONS(6083), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 29, + ACTIONS(6015), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -270572,31 +282352,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61023] = 3, + [74899] = 4, + ACTIONS(4596), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, - anon_sym_as, + ACTIONS(4599), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(4594), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -270612,28 +282393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61066] = 3, + sym_type_conversion, + [74945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, + ACTIONS(5656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 29, + ACTIONS(5654), 30, 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -270652,58 +282434,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61109] = 4, + anon_sym_by, + [74989] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(1812), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1549), 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, - [61154] = 3, + sym_type_conversion, + [75037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, + ACTIONS(5500), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 29, + ACTIONS(5498), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -270712,8 +282497,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -270733,17 +282518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61197] = 3, + anon_sym_by, + [75081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 29, + ACTIONS(4397), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -270752,8 +282538,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -270773,72 +282559,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61240] = 7, - ACTIONS(4597), 1, - anon_sym_EQ, + anon_sym_by, + [75125] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(4403), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4408), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4595), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(4397), 27, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4585), 12, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(4587), 12, + [75173] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(5406), 1, anon_sym_STAR_STAR, + ACTIONS(5410), 1, 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(4604), 5, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5837), 24, 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, @@ -270857,17 +282649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61334] = 3, + [75227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + ACTIONS(4610), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 29, + ACTIONS(4605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -270876,8 +282668,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -270897,28 +282689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61377] = 3, + anon_sym_by, + [75271] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5406), 1, + anon_sym_STAR_STAR, + ACTIONS(5410), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5745), 24, 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, @@ -270937,33 +282736,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61420] = 3, + [75325] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5422), 1, + anon_sym_is, + STATE(2959), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5424), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 29, + ACTIONS(5567), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5408), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 20, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -270971,34 +282783,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, - [61463] = 3, + [75381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, - anon_sym_as, + ACTIONS(5524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 29, + ACTIONS(5522), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271017,116 +282823,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61506] = 4, + anon_sym_by, + [75425] = 4, + ACTIONS(4561), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(981), 3, + ACTIONS(4564), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4559), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(983), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, - 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(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, - ACTIONS(6005), 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(5997), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [61630] = 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, + [75471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, + ACTIONS(4951), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 29, + ACTIONS(4949), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -271135,8 +282885,8 @@ 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -271156,31 +282906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61673] = 3, + anon_sym_by, + [75515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, - anon_sym_as, + ACTIONS(5674), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 29, + ACTIONS(5672), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -271196,31 +282947,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61716] = 3, + sym_type_conversion, + [75559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, - anon_sym_as, + ACTIONS(5356), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 29, + ACTIONS(5354), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -271236,69 +282988,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61759] = 4, + sym_type_conversion, + [75603] = 15, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5368), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_STAR_STAR, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_AMP, + ACTIONS(5388), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4601), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4604), 5, - anon_sym_as, + ACTIONS(5370), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5773), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + STATE(3420), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5771), 15, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61804] = 3, + [75671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(5656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, + ACTIONS(5654), 30, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271317,27 +283082,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61847] = 3, + anon_sym_by, + [75715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, - anon_sym_as, + ACTIONS(5490), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 29, + ACTIONS(5488), 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_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -271357,29 +283123,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61890] = 5, - ACTIONS(998), 1, + anon_sym_by, + [75759] = 5, + ACTIONS(1074), 1, anon_sym_COLON_EQ, - ACTIONS(1897), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 4, + ACTIONS(1064), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1059), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 28, + ACTIONS(1057), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -271399,29 +283167,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61937] = 5, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, - ACTIONS(5003), 1, - anon_sym_EQ, + [75807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 4, + ACTIONS(5496), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(5494), 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_COLON, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -271441,108 +283207,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [61984] = 3, + anon_sym_by, + [75851] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, - anon_sym_as, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 29, + ACTIONS(1812), 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(1549), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62027] = 3, + anon_sym_by, + [75899] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, - anon_sym_as, + ACTIONS(4554), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4557), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 29, + ACTIONS(4551), 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(4549), 16, + 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, - [62070] = 3, + anon_sym_by, + [75947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 5, + ACTIONS(5500), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 29, + ACTIONS(5498), 30, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271561,28 +283334,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62113] = 3, + anon_sym_by, + [75991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 5, + ACTIONS(4592), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 29, + ACTIONS(4590), 30, 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271601,31 +283375,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62156] = 3, + anon_sym_by, + [76035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 5, - anon_sym_as, + ACTIONS(5277), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 29, + ACTIONS(5275), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -271641,68 +283416,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62199] = 3, + sym_type_conversion, + [76079] = 12, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 5, - anon_sym_as, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 17, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62242] = 3, + anon_sym_by, + [76140] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, - anon_sym_as, + ACTIONS(4408), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 29, + ACTIONS(4397), 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271721,35 +283507,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62285] = 3, + [76185] = 7, + ACTIONS(6086), 1, + anon_sym_as, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(6092), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 5, - anon_sym_as, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 29, + ACTIONS(6049), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -271761,37 +283550,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62328] = 3, + anon_sym_by, + [76236] = 10, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 5, - anon_sym_as, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 29, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 21, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -271801,27 +283598,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62371] = 3, + [76293] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 5, - anon_sym_as, + ACTIONS(4408), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 29, + ACTIONS(6094), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(4397), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -271841,110 +283639,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62414] = 5, + [76338] = 9, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(6099), 1, + anon_sym_is, + STATE(3287), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 3, - anon_sym_as, + ACTIONS(6102), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + STATE(2286), 2, + sym__not_in, + sym__is_not, + ACTIONS(6096), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - 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, - [62461] = 3, + [76393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, - anon_sym_as, + ACTIONS(4580), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [62504] = 3, + ACTIONS(4578), 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, + [76436] = 6, + ACTIONS(5098), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 5, - anon_sym_as, - anon_sym_STAR, + ACTIONS(5103), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5101), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 29, - anon_sym_DOT, + ACTIONS(5095), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5093), 24, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -271954,7 +283760,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, @@ -271963,34 +283768,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62547] = 7, - ACTIONS(6009), 1, + [76485] = 7, + ACTIONS(6105), 1, anon_sym_as, - ACTIONS(6011), 1, + ACTIONS(6107), 1, anon_sym_if, - ACTIONS(6013), 1, + ACTIONS(6109), 1, anon_sym_and, - ACTIONS(6015), 1, + ACTIONS(6111), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 26, + ACTIONS(6026), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272007,33 +283811,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62598] = 6, - ACTIONS(6013), 1, + anon_sym_by, + [76536] = 6, + ACTIONS(6109), 1, anon_sym_and, - ACTIONS(6015), 1, + ACTIONS(6111), 1, anon_sym_or, - ACTIONS(6017), 1, + ACTIONS(6113), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, + ACTIONS(6015), 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272050,32 +283854,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62647] = 5, - ACTIONS(6013), 1, + anon_sym_by, + [76585] = 5, + ACTIONS(6109), 1, anon_sym_and, - ACTIONS(6015), 1, + ACTIONS(6111), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + ACTIONS(6009), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 27, + ACTIONS(6007), 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272092,35 +283896,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62694] = 4, - ACTIONS(6013), 1, - anon_sym_and, + anon_sym_by, + [76632] = 6, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4547), 1, + anon_sym_LBRACK, + STATE(5928), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, - anon_sym_as, + ACTIONS(4408), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 28, + ACTIONS(4397), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + 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, @@ -272133,39 +283940,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62739] = 7, - ACTIONS(6009), 1, - anon_sym_as, - ACTIONS(6011), 1, - anon_sym_if, - ACTIONS(6013), 1, + [76681] = 4, + ACTIONS(6109), 1, anon_sym_and, - ACTIONS(6015), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(5356), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, + ACTIONS(5354), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -272177,27 +283980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62790] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + anon_sym_by, + [76726] = 7, + ACTIONS(6105), 1, + anon_sym_as, + ACTIONS(6107), 1, + anon_sym_if, + ACTIONS(6109), 1, + anon_sym_and, + ACTIONS(6111), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, + ACTIONS(6042), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 28, + ACTIONS(6038), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -272205,8 +284013,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, @@ -272218,34 +284024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62835] = 7, - ACTIONS(6009), 1, + anon_sym_by, + [76777] = 7, + ACTIONS(6116), 1, anon_sym_as, - ACTIONS(6011), 1, + ACTIONS(6118), 1, anon_sym_if, - ACTIONS(6013), 1, + ACTIONS(6120), 1, anon_sym_and, - ACTIONS(6015), 1, + ACTIONS(6122), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, + ACTIONS(6049), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272262,27 +284069,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62886] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [76828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, + ACTIONS(4576), 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(4574), 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, + [76871] = 7, + ACTIONS(6105), 1, + anon_sym_as, + ACTIONS(6107), 1, + anon_sym_if, + ACTIONS(6109), 1, + anon_sym_and, + ACTIONS(6111), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6051), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(6049), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -272290,8 +284141,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, @@ -272303,62 +284152,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62931] = 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, + anon_sym_by, + [76922] = 7, + ACTIONS(4588), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3370), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(4554), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4557), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 24, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4586), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4549), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [62984] = 3, + ACTIONS(4551), 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, + [76973] = 6, + ACTIONS(6120), 1, + anon_sym_and, + ACTIONS(6122), 1, + anon_sym_or, + ACTIONS(6124), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 29, + ACTIONS(6015), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -272366,8 +284220,8 @@ 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -272375,8 +284229,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, @@ -272388,42 +284240,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63027] = 8, - ACTIONS(5706), 1, - anon_sym_DOT, + [77022] = 11, ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, anon_sym_LPAREN, ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(5718), 1, + ACTIONS(5720), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3370), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 24, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 19, 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, @@ -272433,33 +284288,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63080] = 7, - ACTIONS(6020), 1, + [77081] = 7, + ACTIONS(6127), 1, anon_sym_as, - ACTIONS(6022), 1, + ACTIONS(6129), 1, anon_sym_if, - ACTIONS(6024), 1, + ACTIONS(6131), 1, anon_sym_and, - ACTIONS(6026), 1, + ACTIONS(6133), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 26, + ACTIONS(6038), 26, sym__newline, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -272477,33 +284331,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63131] = 6, - ACTIONS(6024), 1, + anon_sym_nogil, + [77132] = 21, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_STAR_STAR, + ACTIONS(5456), 1, + anon_sym_LBRACK, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(6135), 1, + sym_identifier, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6137), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5600), 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, + [77211] = 5, + ACTIONS(6120), 1, anon_sym_and, - ACTIONS(6026), 1, + ACTIONS(6122), 1, anon_sym_or, - ACTIONS(6028), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(6009), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(6007), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272520,37 +284432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63180] = 5, - ACTIONS(6024), 1, - anon_sym_and, - ACTIONS(6026), 1, - anon_sym_or, + [77258] = 5, + STATE(3287), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, + STATE(2286), 2, + sym__not_in, + sym__is_not, + ACTIONS(5567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 28, - sym__newline, - anon_sym_SEMI, + ACTIONS(5565), 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_in, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -272562,35 +284474,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63227] = 4, - ACTIONS(6024), 1, - anon_sym_and, + [77305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(4572), 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(5608), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4570), 21, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, 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, + [77348] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4607), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4610), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4605), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -272603,24 +284555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63272] = 7, - ACTIONS(6020), 1, + [77393] = 7, + ACTIONS(6139), 1, anon_sym_as, - ACTIONS(6022), 1, + ACTIONS(6141), 1, anon_sym_if, - ACTIONS(6024), 1, + ACTIONS(6143), 1, anon_sym_and, - ACTIONS(6026), 1, + ACTIONS(6145), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, + ACTIONS(6049), 26, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -272628,8 +284580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -272647,39 +284599,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63323] = 7, - ACTIONS(6020), 1, + [77444] = 7, + ACTIONS(6127), 1, anon_sym_as, - ACTIONS(6022), 1, + ACTIONS(6129), 1, anon_sym_if, - ACTIONS(6024), 1, + ACTIONS(6131), 1, anon_sym_and, - ACTIONS(6026), 1, + ACTIONS(6133), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, + ACTIONS(6049), 26, sym__newline, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_with, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [77495] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4561), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4564), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4559), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -272691,54 +284684,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63374] = 21, - ACTIONS(1826), 1, + [77540] = 21, + ACTIONS(1469), 1, anon_sym_None, - ACTIONS(1834), 1, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(1842), 1, + ACTIONS(1489), 1, sym_string_start, - ACTIONS(5736), 1, + ACTIONS(5071), 1, anon_sym_LPAREN, - ACTIONS(5738), 1, + ACTIONS(5073), 1, anon_sym_STAR, - ACTIONS(5740), 1, + ACTIONS(5079), 1, anon_sym_STAR_STAR, - ACTIONS(5742), 1, + ACTIONS(5081), 1, anon_sym_LBRACK, - ACTIONS(5744), 1, + ACTIONS(5083), 1, anon_sym_DASH, - ACTIONS(5748), 1, + ACTIONS(5087), 1, anon_sym_LBRACE, - ACTIONS(5752), 1, + ACTIONS(5089), 1, sym_float, - ACTIONS(6031), 1, + ACTIONS(6147), 1, sym_identifier, - STATE(2456), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(5097), 1, + STATE(5109), 1, sym_string, - STATE(5257), 1, + STATE(5327), 1, sym_integer, - STATE(5427), 1, + STATE(5511), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5750), 2, + ACTIONS(1566), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(6033), 3, + ACTIONS(6149), 3, anon_sym__, sym_true, sym_false, - STATE(5503), 10, + STATE(5444), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -272749,86 +284742,91 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(5740), 1, - anon_sym_STAR_STAR, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5744), 1, - anon_sym_DASH, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5752), 1, - sym_float, - ACTIONS(6031), 1, + [77619] = 21, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6151), 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(6155), 1, + anon_sym_COLON, + ACTIONS(6157), 1, + anon_sym_class, + ACTIONS(6159), 1, + anon_sym_api, + ACTIONS(6163), 1, + anon_sym_enum, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5076), 1, + sym_maybe_typed_name, 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, - 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(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6161), 2, + anon_sym_struct, + anon_sym_union, + STATE(3620), 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(6153), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [77698] = 8, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 5, - anon_sym_as, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5837), 24, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272847,34 +284845,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63575] = 7, - ACTIONS(6037), 1, + [77751] = 7, + ACTIONS(6127), 1, anon_sym_as, - ACTIONS(6039), 1, + ACTIONS(6129), 1, anon_sym_if, - ACTIONS(6041), 1, + ACTIONS(6131), 1, anon_sym_and, - ACTIONS(6043), 1, + ACTIONS(6133), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 26, + ACTIONS(6026), 26, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -272891,38 +284888,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63626] = 6, - ACTIONS(6041), 1, - anon_sym_and, - ACTIONS(6043), 1, - anon_sym_or, - ACTIONS(6045), 1, - anon_sym_as, + anon_sym_nogil, + [77802] = 21, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6159), 1, + anon_sym_api, + ACTIONS(6165), 1, + sym_identifier, + ACTIONS(6169), 1, + anon_sym_COLON, + ACTIONS(6171), 1, + anon_sym_class, + ACTIONS(6175), 1, + anon_sym_enum, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5069), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6173), 2, + anon_sym_struct, + anon_sym_union, + STATE(3620), 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(6167), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [77881] = 8, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 24, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -272934,77 +284992,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63675] = 5, - ACTIONS(6041), 1, - anon_sym_and, - ACTIONS(6043), 1, - anon_sym_or, + [77934] = 15, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(5761), 1, + anon_sym_PIPE, + ACTIONS(5763), 1, + anon_sym_AMP, + ACTIONS(5765), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, - anon_sym_as, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5915), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5751), 2, 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_LT_LT, + ACTIONS(5759), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + ACTIONS(5773), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(5771), 14, + 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, - [63722] = 4, - ACTIONS(6041), 1, - anon_sym_and, + anon_sym_by, + [78001] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5795), 24, + 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, @@ -273017,41 +285088,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [78054] = 21, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5073), 1, + anon_sym_STAR, + ACTIONS(5079), 1, + anon_sym_STAR_STAR, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(6147), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6177), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5455), 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, + [78133] = 11, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5759), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 19, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -273061,39 +285194,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + anon_sym_by, + [78192] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(4561), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4564), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, + ACTIONS(4559), 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_in, 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, @@ -273105,121 +285236,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [63869] = 3, + [78237] = 12, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, - anon_sym_as, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5714), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 29, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [78298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, + ACTIONS(4580), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5967), 26, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_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, - anon_sym_nogil, - [63963] = 6, - ACTIONS(6052), 1, - anon_sym_and, - ACTIONS(6054), 1, - anon_sym_or, - ACTIONS(6056), 1, - anon_sym_as, + ACTIONS(4578), 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, + [78341] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 27, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5837), 24, + 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, @@ -273231,37 +285369,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [64012] = 5, - ACTIONS(6052), 1, - anon_sym_and, - ACTIONS(6054), 1, - anon_sym_or, + anon_sym_by, + [78394] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 28, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5745), 24, 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, @@ -273273,74 +285414,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [64059] = 4, - ACTIONS(6052), 1, - anon_sym_and, + anon_sym_by, + [78447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(4592), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5608), 29, - sym__newline, - 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_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, - anon_sym_nogil, - [64104] = 7, - ACTIONS(6048), 1, - anon_sym_as, - ACTIONS(6050), 1, - anon_sym_if, - ACTIONS(6052), 1, + ACTIONS(4590), 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, + [78490] = 6, + ACTIONS(6131), 1, anon_sym_and, - ACTIONS(6054), 1, + ACTIONS(6133), 1, anon_sym_or, + ACTIONS(6179), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 26, + ACTIONS(6015), 27, sym__newline, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -273359,36 +285498,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [64155] = 7, - ACTIONS(6048), 1, + [78539] = 21, + ACTIONS(1899), 1, + anon_sym_None, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(5450), 1, + anon_sym_LPAREN, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_STAR_STAR, + ACTIONS(5456), 1, + anon_sym_LBRACK, + ACTIONS(5460), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + sym_float, + ACTIONS(6135), 1, + sym_identifier, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5286), 1, + sym_string, + STATE(5451), 1, + sym_integer, + STATE(5772), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6182), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5601), 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, + [78618] = 7, + ACTIONS(6184), 1, anon_sym_as, - ACTIONS(6050), 1, + ACTIONS(6186), 1, anon_sym_if, - ACTIONS(6052), 1, + ACTIONS(6188), 1, anon_sym_and, - ACTIONS(6054), 1, + ACTIONS(6190), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 26, - sym__newline, + ACTIONS(6026), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_PERCENT, @@ -273402,36 +285599,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [64206] = 3, + anon_sym_by, + [78669] = 6, + ACTIONS(6188), 1, + anon_sym_and, + ACTIONS(6190), 1, + anon_sym_or, + ACTIONS(6192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 29, + ACTIONS(6015), 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_in, 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, @@ -273443,35 +285642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64249] = 3, + anon_sym_by, + [78718] = 5, + ACTIONS(6188), 1, + anon_sym_and, + ACTIONS(6190), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 5, + ACTIONS(6009), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 29, + ACTIONS(6007), 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_in, 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, @@ -273483,35 +285684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64292] = 4, + anon_sym_by, + [78765] = 4, + ACTIONS(6188), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 4, + ACTIONS(5356), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6059), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(4485), 26, + ACTIONS(5354), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -273524,35 +285725,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64337] = 3, + anon_sym_by, + [78810] = 7, + ACTIONS(6184), 1, + anon_sym_as, + ACTIONS(6186), 1, + anon_sym_if, + ACTIONS(6188), 1, + anon_sym_and, + ACTIONS(6190), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 5, - anon_sym_as, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 29, + ACTIONS(6038), 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_in, 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, @@ -273564,35 +285769,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64380] = 3, + anon_sym_by, + [78861] = 7, + ACTIONS(6184), 1, + anon_sym_as, + ACTIONS(6186), 1, + anon_sym_if, + ACTIONS(6188), 1, + anon_sym_and, + ACTIONS(6190), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 5, - anon_sym_as, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 29, + ACTIONS(6049), 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_in, 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, @@ -273604,54 +285813,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64423] = 21, - ACTIONS(1708), 1, + anon_sym_by, + [78912] = 21, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(5273), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5816), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5818), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5822), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5826), 1, sym_float, - ACTIONS(6061), 1, + ACTIONS(6195), 1, sym_identifier, - STATE(2524), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5353), 1, sym_string, - STATE(5223), 1, + STATE(5522), 1, sym_integer, - STATE(5322), 1, + STATE(5708), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5824), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(6063), 3, + ACTIONS(6197), 3, anon_sym__, sym_true, sym_false, - STATE(5477), 10, + STATE(5751), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -273662,54 +285872,54 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [64502] = 21, - ACTIONS(1708), 1, + [78991] = 21, + ACTIONS(1778), 1, anon_sym_None, - ACTIONS(1716), 1, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(1728), 1, + ACTIONS(1794), 1, sym_string_start, - ACTIONS(5273), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5277), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5279), 1, + ACTIONS(5814), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5816), 1, anon_sym_LBRACK, - ACTIONS(5283), 1, + ACTIONS(5818), 1, anon_sym_DASH, - ACTIONS(5287), 1, + ACTIONS(5822), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5826), 1, sym_float, - ACTIONS(6061), 1, + ACTIONS(6195), 1, sym_identifier, - STATE(2524), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(5041), 1, + STATE(5353), 1, sym_string, - STATE(5223), 1, + STATE(5522), 1, sym_integer, - STATE(5322), 1, + STATE(5708), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5824), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(6065), 3, + ACTIONS(6199), 3, anon_sym__, sym_true, sym_false, - STATE(5479), 10, + STATE(5752), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -273720,18 +285930,18 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [64581] = 4, - ACTIONS(6067), 1, + [79070] = 4, + ACTIONS(6201), 1, aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 4, + ACTIONS(5311), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, + ACTIONS(5309), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -273739,8 +285949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -273761,18 +285971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64626] = 4, - ACTIONS(6069), 1, + [79115] = 4, + ACTIONS(6203), 1, aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 4, + ACTIONS(5311), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 29, + ACTIONS(5309), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -273780,8 +285990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -273802,45 +286012,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64671] = 9, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(6074), 1, - anon_sym_is, - STATE(3147), 1, - aux_sym_comparison_operator_repeat1, + [79160] = 5, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, + ACTIONS(1821), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5394), 2, + ACTIONS(1059), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6077), 2, anon_sym_LT, anon_sym_GT, - STATE(2279), 2, - sym__not_in, - sym__is_not, - ACTIONS(6071), 6, + ACTIONS(1057), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(5392), 19, + [79207] = 5, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(4985), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -273848,36 +286090,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [64726] = 5, - STATE(3147), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [79254] = 13, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, + ACTIONS(5730), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2279), 2, - sym__not_in, - sym__is_not, - ACTIONS(5326), 4, + ACTIONS(5712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5714), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 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, + [79317] = 5, + ACTIONS(6131), 1, + anon_sym_and, + ACTIONS(6133), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 27, + ACTIONS(6007), 28, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, - anon_sym_in, + anon_sym_COLON, + anon_sym_with, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [79364] = 4, + ACTIONS(6131), 1, anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 29, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_in, + 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, @@ -273890,44 +286228,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64773] = 15, - ACTIONS(5706), 1, - anon_sym_DOT, + anon_sym_nogil, + [79409] = 15, ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, anon_sym_LPAREN, ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(5718), 1, + ACTIONS(5720), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_PIPE, ACTIONS(5726), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5730), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5697), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5710), 2, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5712), 2, + ACTIONS(5714), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5722), 2, + ACTIONS(5724), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(3370), 2, + ACTIONS(5773), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3512), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5720), 3, + ACTIONS(5722), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5695), 14, + ACTIONS(5771), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -273942,18 +286281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64840] = 4, - ACTIONS(6080), 1, + [79476] = 4, + ACTIONS(6205), 1, aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 4, + ACTIONS(5277), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 29, + ACTIONS(5275), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -273961,8 +286300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -273983,54 +286322,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [64885] = 21, - ACTIONS(1517), 1, + [79521] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 24, + 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_CARET, + anon_sym_LT_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_by, + [79574] = 21, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(4940), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(4942), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(6082), 1, + ACTIONS(6207), 1, sym_identifier, - STATE(2452), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5423), 1, sym_string, - STATE(4964), 1, + STATE(5526), 1, sym_integer, - STATE(5195), 1, + STATE(5605), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(6084), 3, + ACTIONS(6209), 3, anon_sym__, sym_true, sym_false, - STATE(5245), 10, + STATE(5738), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -274041,54 +286425,54 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [64964] = 21, - ACTIONS(1517), 1, + [79653] = 21, + ACTIONS(1660), 1, anon_sym_None, - ACTIONS(1525), 1, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(1537), 1, + ACTIONS(1680), 1, sym_string_start, - ACTIONS(4932), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(4934), 1, + ACTIONS(5432), 1, anon_sym_STAR, - ACTIONS(4940), 1, + ACTIONS(5434), 1, anon_sym_STAR_STAR, - ACTIONS(4942), 1, + ACTIONS(5436), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(5438), 1, anon_sym_DASH, - ACTIONS(4948), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5446), 1, sym_float, - ACTIONS(6082), 1, + ACTIONS(6207), 1, sym_identifier, - STATE(2452), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(4810), 1, + STATE(5423), 1, sym_string, - STATE(4964), 1, + STATE(5526), 1, sym_integer, - STATE(5195), 1, + STATE(5605), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - ACTIONS(6086), 3, + ACTIONS(6211), 3, anon_sym__, sym_true, sym_false, - STATE(5247), 10, + STATE(5756), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -274099,37 +286483,43 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [65043] = 3, + [79732] = 10, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 4, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 21, anon_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, @@ -274139,39 +286529,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65086] = 5, + anon_sym_by, + [79789] = 14, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(5763), 1, + anon_sym_AMP, + ACTIONS(5765), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5749), 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, + ACTIONS(5751), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5759), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1597), 15, - anon_sym_COMMA, + ACTIONS(5795), 15, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -274181,16 +286580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65133] = 3, + anon_sym_by, + [79854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 4, + ACTIONS(5185), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 30, + ACTIONS(5183), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -274199,8 +286599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -274221,69 +286621,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65176] = 5, + [79897] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_STAR_STAR, + ACTIONS(5765), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(5749), 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, + ACTIONS(5751), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5759), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5757), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(4585), 15, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5795), 16, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, 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, - [65223] = 8, - ACTIONS(5706), 1, - anon_sym_DOT, + anon_sym_by, + [79960] = 8, ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, anon_sym_LPAREN, ACTIONS(5716), 1, anon_sym_STAR_STAR, - ACTIONS(5718), 1, + ACTIONS(5720), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3370), 2, + STATE(3512), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 24, + ACTIONS(5795), 24, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -274308,88 +286716,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [80013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5710), 2, + ACTIONS(4592), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5722), 2, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(3370), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5720), 3, - anon_sym_AT, + anon_sym_SLASH, 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_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, - [65335] = 8, - ACTIONS(5706), 1, + ACTIONS(4590), 21, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_STAR_STAR, - ACTIONS(5718), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [80056] = 7, + ACTIONS(6213), 1, + anon_sym_as, + ACTIONS(6215), 1, + anon_sym_if, + ACTIONS(6217), 1, + anon_sym_and, + ACTIONS(6219), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3370), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 24, + ACTIONS(6026), 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_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -274401,44 +286800,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65388] = 10, - 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, + [80107] = 4, + ACTIONS(6120), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5710), 2, + ACTIONS(5356), 5, + anon_sym_as, 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_LT, + anon_sym_GT, + ACTIONS(5354), 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_STAR_STAR, anon_sym_in, + 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, @@ -274448,37 +286841,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65445] = 5, - ACTIONS(4506), 1, - anon_sym_from, + [80152] = 6, + ACTIONS(6217), 1, + anon_sym_and, + ACTIONS(6219), 1, + anon_sym_or, + ACTIONS(6221), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4571), 4, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 27, + ACTIONS(6015), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -274490,88 +286884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65492] = 14, - 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(5726), 1, - anon_sym_AMP, - ACTIONS(5728), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5662), 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(5660), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, + [80201] = 5, + ACTIONS(6217), 1, anon_sym_and, + ACTIONS(6219), 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, - [65557] = 5, - ACTIONS(4506), 1, - anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4496), 4, + ACTIONS(6009), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(6007), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -274583,135 +286926,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(5662), 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(5660), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, + [80248] = 4, + ACTIONS(6217), 1, 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, - [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(5662), 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(5660), 17, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5356), 5, 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, - [65728] = 5, - ACTIONS(4606), 1, - anon_sym_from, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4601), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4604), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 27, + ACTIONS(5354), 28, 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -274724,31 +286967,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65775] = 6, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, - ACTIONS(4549), 1, - anon_sym_LBRACK, - STATE(5644), 1, - sym_type_parameter, + [80293] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 6, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 25, + ACTIONS(4551), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -274767,78 +287008,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65824] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - 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, + [80338] = 7, + ACTIONS(6213), 1, + anon_sym_as, + ACTIONS(6215), 1, + anon_sym_if, + ACTIONS(6217), 1, + anon_sym_and, + ACTIONS(6219), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4557), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(4560), 4, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 27, + ACTIONS(6038), 26, 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_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -274850,97 +287052,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [65916] = 4, + [80389] = 7, + ACTIONS(6213), 1, + anon_sym_as, + ACTIONS(6215), 1, + anon_sym_if, + ACTIONS(6217), 1, + anon_sym_and, + ACTIONS(6219), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4496), 13, + ACTIONS(6051), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(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(4599), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6049), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4604), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80440] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 3, + ACTIONS(4551), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4560), 13, + ACTIONS(4554), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -274954,7 +287118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4562), 18, + ACTIONS(4549), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -274973,36 +287137,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [66051] = 4, + [80485] = 7, + ACTIONS(6116), 1, + anon_sym_as, + ACTIONS(6118), 1, + anon_sym_if, + ACTIONS(6120), 1, + anon_sym_and, + ACTIONS(6122), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4557), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4560), 5, - anon_sym_as, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 27, + ACTIONS(6038), 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_in, 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, @@ -275014,26 +287181,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66096] = 3, + [80536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 5, - anon_sym_as, + ACTIONS(5118), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5116), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -275054,26 +287221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66139] = 3, + [80579] = 7, + ACTIONS(6116), 1, + anon_sym_as, + ACTIONS(6118), 1, + anon_sym_if, + ACTIONS(6120), 1, + anon_sym_and, + ACTIONS(6122), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 5, - anon_sym_as, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 29, + ACTIONS(6026), 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -275081,8 +287254,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, @@ -275094,35 +287265,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66182] = 3, + [80630] = 21, + ACTIONS(1469), 1, + anon_sym_None, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5073), 1, + anon_sym_STAR, + ACTIONS(5079), 1, + anon_sym_STAR_STAR, + ACTIONS(5081), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_DASH, + ACTIONS(5087), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + sym_float, + ACTIONS(5881), 1, + sym_identifier, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5109), 1, + sym_string, + STATE(5327), 1, + sym_integer, + STATE(5511), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6224), 3, + anon_sym__, + sym_true, + sym_false, + STATE(6566), 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, + [80709] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1057), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1059), 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(1090), 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, + [80754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 5, + ACTIONS(4584), 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(4582), 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, + [80797] = 7, + ACTIONS(6139), 1, anon_sym_as, + ACTIONS(6141), 1, + anon_sym_if, + ACTIONS(6143), 1, + anon_sym_and, + ACTIONS(6145), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 29, + ACTIONS(6026), 26, + 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_STAR_STAR, + anon_sym_in, 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, @@ -275134,29 +287448,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66225] = 4, + [80848] = 8, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, - anon_sym_as, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5745), 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, @@ -275175,27 +287493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66270] = 3, + [80901] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4607), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4610), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(4605), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -275215,35 +287534,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66313] = 3, + [80946] = 7, + ACTIONS(6086), 1, + anon_sym_as, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(6092), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 5, - anon_sym_as, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 29, + ACTIONS(6026), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -275255,28 +287577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66356] = 3, + anon_sym_by, + [80997] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 5, + ACTIONS(4403), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 29, + ACTIONS(4397), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -275295,69 +287619,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66399] = 5, + [81042] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(1059), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(4593), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 14, + ACTIONS(1057), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, 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(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, - [66446] = 3, + [81087] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 5, + ACTIONS(4596), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 29, + ACTIONS(4594), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -275377,35 +287701,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66489] = 3, + [81132] = 6, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(6092), 1, + anon_sym_or, + ACTIONS(6226), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(6015), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -275417,35 +287743,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66532] = 3, + anon_sym_by, + [81181] = 5, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(6092), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 5, + ACTIONS(6009), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(6007), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -275457,35 +287785,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66575] = 3, + anon_sym_by, + [81228] = 6, + ACTIONS(6143), 1, + anon_sym_and, + ACTIONS(6145), 1, + anon_sym_or, + ACTIONS(6229), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 29, + ACTIONS(6015), 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_STAR_STAR, + anon_sym_in, 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, @@ -275497,35 +287829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66618] = 3, + [81277] = 5, + ACTIONS(6143), 1, + anon_sym_and, + ACTIONS(6145), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 5, - anon_sym_as, + ACTIONS(6009), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 29, + ACTIONS(6007), 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_STAR_STAR, + anon_sym_in, 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, @@ -275537,11 +287871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [66661] = 3, + [81324] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 13, + ACTIONS(4605), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4610), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -275555,15 +287893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4610), 21, + ACTIONS(4418), 18, 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, @@ -275577,69 +287912,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [81369] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 13, + ACTIONS(4397), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4408), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -275653,15 +287934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4551), 21, + ACTIONS(4418), 18, 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, @@ -275675,11 +287953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [66826] = 3, + [81414] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 13, + ACTIONS(4594), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4599), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -275693,15 +287975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4573), 21, + ACTIONS(4603), 18, 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, @@ -275715,91 +287994,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [66869] = 3, + [81459] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 13, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4554), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81504] = 4, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_in, + 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, - ACTIONS(4581), 21, + 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_by, + [81549] = 4, + ACTIONS(6143), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 29, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_in, 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, + 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, + [81594] = 7, + ACTIONS(6086), 1, + anon_sym_as, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6090), 1, + anon_sym_and, + ACTIONS(6092), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 13, + ACTIONS(6042), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6038), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_GT, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, + 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_by, + [81645] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 13, + ACTIONS(4559), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -275813,15 +288183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4577), 21, + ACTIONS(4566), 18, 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, @@ -275835,11 +288202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [66998] = 3, + [81690] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 13, + ACTIONS(1812), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1551), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -275853,15 +288224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4577), 21, + ACTIONS(1549), 18, 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, @@ -275875,27 +288243,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [67041] = 3, + [81735] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 5, + ACTIONS(4403), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4408), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 29, + ACTIONS(4397), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -275915,35 +288284,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67084] = 3, + [81780] = 7, + ACTIONS(6139), 1, + anon_sym_as, + ACTIONS(6141), 1, + anon_sym_if, + ACTIONS(6143), 1, + anon_sym_and, + ACTIONS(6145), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, - anon_sym_as, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 29, + ACTIONS(6038), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -275955,28 +288328,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67127] = 3, + [81831] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 5, + ACTIONS(4596), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 29, + ACTIONS(4594), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -275995,26 +288369,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67170] = 3, + [81876] = 14, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_STAR_STAR, + ACTIONS(5720), 1, + anon_sym_LBRACK, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5730), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, + ACTIONS(5712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5714), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + STATE(3512), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5722), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 15, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81941] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5101), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 29, + ACTIONS(5093), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276035,28 +288459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67213] = 3, + [81983] = 4, + ACTIONS(6232), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 5, - anon_sym_as, + ACTIONS(5311), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 29, + ACTIONS(5309), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276075,28 +288499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67256] = 3, + [82027] = 4, + ACTIONS(6234), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 5, - anon_sym_as, + ACTIONS(5311), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 29, + ACTIONS(5309), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276115,26 +288539,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67299] = 3, + [82071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 5, - anon_sym_as, + ACTIONS(5656), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 29, + ACTIONS(5654), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276155,26 +288578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67342] = 3, + [82113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 5, - anon_sym_as, + ACTIONS(5500), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 29, + ACTIONS(5498), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276195,69 +288617,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67385] = 4, + [82155] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 3, + ACTIONS(4554), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4557), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4551), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1599), 13, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1597), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(4549), 15, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [67430] = 3, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 5, - anon_sym_as, + ACTIONS(4408), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 29, + ACTIONS(4397), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276276,26 +288697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67473] = 3, + [82243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, - anon_sym_as, + ACTIONS(4951), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, + ACTIONS(4949), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276316,28 +288736,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67516] = 3, + [82285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 5, - anon_sym_as, + ACTIONS(5185), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 29, + ACTIONS(5183), 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_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276356,72 +288775,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67559] = 6, - ACTIONS(5074), 1, - anon_sym_STAR, + [82327] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5077), 3, + ACTIONS(1551), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5071), 4, + ACTIONS(1812), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, 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_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_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(1549), 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, - [67608] = 4, + [82373] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4571), 5, - anon_sym_as, + ACTIONS(1551), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 27, + ACTIONS(1812), 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_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276440,94 +288856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(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, + [82417] = 7, + ACTIONS(6236), 1, + anon_sym_as, + ACTIONS(6238), 1, + anon_sym_if, + ACTIONS(6240), 1, + anon_sym_and, + ACTIONS(6242), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4496), 5, - anon_sym_as, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(6026), 25, 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -276539,26 +288899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67777] = 3, + [82467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 5, - anon_sym_as, + ACTIONS(1059), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 29, + ACTIONS(1057), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276579,67 +288938,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67820] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4587), 3, + [82509] = 11, + ACTIONS(5398), 1, anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(4590), 13, - anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(5921), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5927), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5925), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5795), 18, + anon_sym_as, + anon_sym_GT_GT, + 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_LT_LT, - 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 5, - anon_sym_as, + ACTIONS(5678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 29, + ACTIONS(5676), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276660,142 +289024,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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(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, + [82609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 5, - anon_sym_as, + ACTIONS(5360), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 29, + ACTIONS(5358), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276816,26 +289063,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68109] = 3, + [82651] = 6, + ACTIONS(6240), 1, + anon_sym_and, + ACTIONS(6242), 1, + anon_sym_or, + ACTIONS(6244), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 5, - anon_sym_as, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 29, + ACTIONS(6015), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276843,8 +289094,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, @@ -276856,29 +289105,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68152] = 4, + [82699] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4601), 2, - anon_sym_RPAREN, + ACTIONS(4554), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4557), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4586), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(4604), 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(4549), 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(4551), 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, + [82747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 27, + ACTIONS(4594), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -276897,28 +289186,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68197] = 4, + [82789] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(4590), 5, - anon_sym_as, + ACTIONS(1551), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 27, + ACTIONS(1812), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -276938,26 +289226,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68242] = 3, + [82833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 5, - anon_sym_as, + ACTIONS(4564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 29, + ACTIONS(4559), 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_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -276978,28 +289265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68285] = 3, + [82875] = 4, + ACTIONS(6247), 1, + aux_sym_c_integer_type_token1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, - anon_sym_as, + ACTIONS(5277), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(5275), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -277018,64 +289305,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68328] = 12, - ACTIONS(5293), 1, + [82919] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4610), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4605), 29, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, + 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, + [82961] = 7, + ACTIONS(6249), 1, + anon_sym_as, + ACTIONS(6251), 1, + anon_sym_if, + ACTIONS(6253), 1, + anon_sym_and, + ACTIONS(6255), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, + ACTIONS(6030), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5808), 2, + ACTIONS(6026), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_in, + 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, + [83011] = 5, + ACTIONS(6240), 1, + anon_sym_and, + ACTIONS(6242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6007), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5818), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5816), 3, - anon_sym_AT, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 16, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83057] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4554), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_else, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, 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, + [83101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(5396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(5394), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277083,8 +289485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277105,34 +289507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68430] = 3, + [83143] = 6, + ACTIONS(6253), 1, + anon_sym_and, + ACTIONS(6255), 1, + anon_sym_or, + ACTIONS(6257), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 4, + ACTIONS(6020), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5412), 29, + ACTIONS(6015), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -277144,16 +289549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68472] = 3, + [83191] = 4, + ACTIONS(6240), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 29, + ACTIONS(5354), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277161,8 +289568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277170,7 +289577,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, @@ -277183,25 +289589,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68514] = 3, + [83235] = 7, + ACTIONS(6236), 1, + anon_sym_as, + ACTIONS(6238), 1, + anon_sym_if, + ACTIONS(6240), 1, + anon_sym_and, + ACTIONS(6242), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 4, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 29, + ACTIONS(6038), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277209,8 +289621,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, @@ -277222,27 +289632,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68556] = 3, + [83285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5253), 4, + ACTIONS(4846), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5251), 29, - sym_string_start, + ACTIONS(4844), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -277261,57 +289671,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68598] = 5, + [83327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(5118), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 14, + ACTIONS(5116), 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_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83369] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5514), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5512), 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_STAR_STAR, anon_sym_in, + 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, - [68644] = 3, + [83411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 4, + ACTIONS(5524), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 29, + ACTIONS(5522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277319,8 +289766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277341,20 +289788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68686] = 5, - ACTIONS(6108), 1, + [83453] = 5, + ACTIONS(6253), 1, anon_sym_and, - ACTIONS(6110), 1, + ACTIONS(6255), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, + ACTIONS(6009), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 27, + ACTIONS(6007), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277362,10 +289810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -277382,18 +289829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68732] = 4, - ACTIONS(6108), 1, - anon_sym_and, + [83499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(5630), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 28, + ACTIONS(5628), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277401,8 +289846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277410,6 +289855,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, @@ -277422,16 +289868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68776] = 3, + [83541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 4, + ACTIONS(5636), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 29, + ACTIONS(5634), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277439,8 +289885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277461,16 +289907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68818] = 3, + [83583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 4, + ACTIONS(5703), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 29, + ACTIONS(5701), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277478,8 +289924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277500,38 +289946,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [83625] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 25, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5795), 23, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_if, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -277543,31 +289990,25 @@ static const uint16_t ts_small_parse_table[] = { 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, + [83677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(5697), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 25, + ACTIONS(5695), 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_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277575,6 +290016,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, @@ -277586,25 +290029,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68960] = 3, + [83719] = 7, + ACTIONS(6236), 1, + anon_sym_as, + ACTIONS(6238), 1, + anon_sym_if, + ACTIONS(6240), 1, + anon_sym_and, + ACTIONS(6242), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 29, + ACTIONS(6049), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277612,8 +290061,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, @@ -277625,16 +290072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69002] = 3, + [83769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + ACTIONS(5674), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 29, + ACTIONS(5672), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277642,8 +290089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277664,28 +290111,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69044] = 4, - ACTIONS(6116), 1, - aux_sym_c_integer_type_token1, + [83811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 28, + ACTIONS(5354), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -277704,16 +290150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69088] = 3, + [83853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(4592), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(4590), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277721,8 +290167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277743,77 +290189,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69130] = 5, + [83895] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5795), 23, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_else, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - 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, - [69176] = 3, + [83947] = 10, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5176), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5174), 29, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5925), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 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, @@ -277823,55 +290279,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69218] = 3, + [84003] = 14, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, + ACTIONS(5931), 1, + anon_sym_AMP, + ACTIONS(5933), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5525), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5523), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5919), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5927), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5925), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 14, + anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69260] = 3, + [84067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 4, + ACTIONS(5277), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5527), 29, + ACTIONS(5275), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277879,8 +290346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277901,16 +290368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69302] = 3, + [84109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5647), 4, + ACTIONS(5533), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5645), 29, + ACTIONS(5531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277918,8 +290385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277940,16 +290407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69344] = 3, + [84151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 4, + ACTIONS(5640), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5652), 29, + ACTIONS(5638), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277957,8 +290424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -277979,16 +290446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69386] = 3, + [84193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 4, + ACTIONS(5644), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5656), 29, + ACTIONS(5642), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -277996,8 +290463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -278018,16 +290485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69428] = 3, + [84235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5358), 4, + ACTIONS(5648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 29, + ACTIONS(5646), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -278035,8 +290502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -278057,28 +290524,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69470] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [84277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 4, + ACTIONS(5652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 28, + ACTIONS(5650), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -278097,28 +290563,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69514] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [84319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 4, + ACTIONS(5474), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(5472), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -278137,58 +290602,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69558] = 6, + [84361] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(5921), 1, + anon_sym_STAR_STAR, + ACTIONS(5933), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 2, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4595), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(4585), 12, + ACTIONS(5917), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5927), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5925), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 15, 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_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_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [69606] = 3, + [84423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 4, + ACTIONS(5478), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5596), 29, + ACTIONS(5476), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -278196,8 +290668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -278218,16 +290690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69648] = 3, + [84465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(5482), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 29, + ACTIONS(5480), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -278235,8 +290707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -278257,89 +290729,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69690] = 15, - ACTIONS(5293), 1, + [84507] = 8, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5921), 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(5697), 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, + STATE(3164), 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, - [69756] = 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(5971), 4, + ACTIONS(5839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 25, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5837), 23, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, + 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, @@ -278351,37 +290773,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69806] = 6, - ACTIONS(6122), 1, - anon_sym_and, - ACTIONS(6124), 1, - anon_sym_or, - ACTIONS(6126), 1, - anon_sym_as, + [84559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(5504), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 26, + ACTIONS(5502), 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_in, 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, @@ -278393,20 +290812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69854] = 5, - ACTIONS(6122), 1, - anon_sym_and, - ACTIONS(6124), 1, - anon_sym_or, + [84601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, + ACTIONS(5617), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 27, + ACTIONS(5615), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -278414,15 +290829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -278434,28 +290851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69900] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [84643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 4, + ACTIONS(5601), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 28, + ACTIONS(5599), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -278474,28 +290890,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69944] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [84685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 4, + ACTIONS(5364), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 28, + ACTIONS(5362), 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_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -278514,18 +290929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69988] = 4, - ACTIONS(6122), 1, - anon_sym_and, + [84727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(5490), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 28, + ACTIONS(5488), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -278533,15 +290946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -278554,44 +290968,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70032] = 9, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5549), 1, - anon_sym_is, - STATE(2817), 1, - aux_sym_comparison_operator_repeat1, + [84769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5326), 2, + ACTIONS(5496), 4, anon_sym_STAR, anon_sym_SLASH, - 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), 18, + ACTIONS(5494), 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_STAR_STAR, + anon_sym_in, 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, @@ -278599,32 +291001,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [70086] = 7, - ACTIONS(6118), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84811] = 7, + ACTIONS(6249), 1, anon_sym_as, - ACTIONS(6120), 1, + ACTIONS(6251), 1, anon_sym_if, - ACTIONS(6122), 1, + ACTIONS(6253), 1, anon_sym_and, - ACTIONS(6124), 1, + ACTIONS(6255), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(6042), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 25, + ACTIONS(6038), 24, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -278642,38 +291050,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [84861] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, + ACTIONS(4554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 25, + ACTIONS(4551), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, - anon_sym_by, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -278685,27 +291090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70186] = 8, - ACTIONS(5293), 1, + [84905] = 8, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5921), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(5747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 23, + ACTIONS(5745), 23, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -278729,86 +291134,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70238] = 11, - ACTIONS(5293), 1, + [84957] = 15, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5921), 1, anon_sym_STAR_STAR, + ACTIONS(5929), 1, + anon_sym_PIPE, + ACTIONS(5931), 1, + anon_sym_AMP, + ACTIONS(5933), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, + ACTIONS(5773), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5808), 2, + ACTIONS(5917), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5818), 2, + ACTIONS(5919), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5927), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5816), 3, + ACTIONS(5925), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 18, + ACTIONS(5771), 13, anon_sym_as, - anon_sym_GT_GT, 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_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [85023] = 7, + ACTIONS(6249), 1, + anon_sym_as, + ACTIONS(6251), 1, + anon_sym_if, + ACTIONS(6253), 1, + anon_sym_and, + ACTIONS(6255), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5662), 4, + ACTIONS(6051), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5660), 23, - anon_sym_as, + ACTIONS(6049), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -278820,43 +291228,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [85073] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5808), 2, + ACTIONS(1059), 4, 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_LT, + anon_sym_GT, + ACTIONS(1057), 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_else, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -278866,90 +291268,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [85117] = 4, + ACTIONS(4410), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5808), 2, + ACTIONS(4408), 4, 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_LT, + anon_sym_GT, + ACTIONS(4397), 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_else, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70468] = 13, - ACTIONS(5293), 1, + [85161] = 12, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5921), 1, anon_sym_STAR_STAR, - ACTIONS(5824), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, + ACTIONS(5797), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5808), 2, + ACTIONS(5917), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5919), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5818), 2, + ACTIONS(5927), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5816), 3, + ACTIONS(5925), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5660), 15, + ACTIONS(5795), 16, anon_sym_as, anon_sym_if, anon_sym_else, @@ -278959,36 +291349,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70530] = 3, + [85221] = 4, + ACTIONS(1074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(1551), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(1812), 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_in, 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, @@ -279004,16 +291396,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70572] = 3, + [85265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(4572), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -279021,8 +291413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279043,31 +291435,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70614] = 4, - ACTIONS(998), 1, + [85307] = 4, + ACTIONS(4410), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 4, + ACTIONS(4554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 28, + ACTIONS(4551), 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_in, 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, @@ -279083,31 +291475,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70658] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [85351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 4, + ACTIONS(5664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 28, + ACTIONS(5662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -279123,26 +291514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70702] = 4, - ACTIONS(4498), 1, - anon_sym_COLON_EQ, + [85393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 4, + ACTIONS(4576), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4587), 28, + ACTIONS(4574), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279163,33 +291553,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70746] = 4, - ACTIONS(6129), 1, - aux_sym_c_integer_type_token1, + [85435] = 8, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5422), 1, + anon_sym_is, + STATE(2959), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5168), 4, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5408), 4, + anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_GT, + ACTIONS(5567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 28, + ACTIONS(5565), 20, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_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, @@ -279197,37 +291595,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - [70790] = 4, - ACTIONS(998), 1, - anon_sym_COLON_EQ, + [85487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 4, + ACTIONS(5621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1844), 28, + ACTIONS(5619), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -279243,16 +291636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70834] = 3, + [85529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 4, + ACTIONS(4584), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4599), 29, + ACTIONS(4582), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -279260,8 +291653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279282,16 +291675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70876] = 3, + [85571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(4580), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 29, + ACTIONS(4578), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -279299,8 +291692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279321,16 +291714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70918] = 3, + [85613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 4, + ACTIONS(4580), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 29, + ACTIONS(4578), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -279338,8 +291731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279360,16 +291753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70960] = 3, + [85655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 4, + ACTIONS(4592), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 29, + ACTIONS(4590), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -279377,8 +291770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, @@ -279399,38 +291792,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71002] = 7, - ACTIONS(6108), 1, + [85697] = 4, + ACTIONS(6253), 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(5971), 4, + ACTIONS(5356), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 25, + ACTIONS(5354), 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_in, 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, @@ -279442,34 +291832,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71052] = 3, + [85741] = 7, + ACTIONS(6260), 1, + anon_sym_as, + ACTIONS(6262), 1, + anon_sym_if, + ACTIONS(6264), 1, + anon_sym_and, + ACTIONS(6266), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 4, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 29, + ACTIONS(6038), 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, + anon_sym_in, 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, @@ -279481,34 +291873,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71094] = 3, + anon_sym_by, + [85790] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6274), 1, + anon_sym_COLON, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7108), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [85869] = 7, + ACTIONS(6282), 1, + anon_sym_as, + ACTIONS(6284), 1, + anon_sym_if, + ACTIONS(6286), 1, + anon_sym_and, + ACTIONS(6288), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 29, + ACTIONS(6026), 24, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -279520,33 +291973,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71136] = 3, + [85918] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6290), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6984), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [85997] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6292), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7119), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [86076] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6294), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6977), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [86155] = 4, + ACTIONS(6264), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 29, + ACTIONS(5354), 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_in, 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, @@ -279559,27 +292182,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71178] = 3, + anon_sym_by, + [86198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 4, + ACTIONS(5601), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 29, + ACTIONS(5599), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -279598,27 +292221,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71220] = 3, + [86239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 4, + ACTIONS(5630), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 29, + ACTIONS(5628), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -279637,34 +292259,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71262] = 3, + [86280] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6296), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7179), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [86359] = 5, + ACTIONS(6264), 1, + anon_sym_and, + ACTIONS(6266), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 4, + ACTIONS(6009), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 29, + ACTIONS(6007), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -279676,34 +292355,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71304] = 3, + anon_sym_by, + [86404] = 7, + ACTIONS(6282), 1, + anon_sym_as, + ACTIONS(6284), 1, + anon_sym_if, + ACTIONS(6286), 1, + anon_sym_and, + ACTIONS(6288), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 29, + ACTIONS(6049), 24, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, 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, @@ -279715,27 +292398,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71346] = 3, + [86453] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6298), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7319), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [86532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 4, + ACTIONS(5636), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 29, + ACTIONS(5634), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -279754,27 +292493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71388] = 3, + [86573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 4, + ACTIONS(5644), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 29, + ACTIONS(5642), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -279793,38 +292531,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71430] = 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, + [86614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 5, + ACTIONS(5514), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5967), 24, + ACTIONS(5512), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -279836,37 +292569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71480] = 6, - ACTIONS(6135), 1, - anon_sym_and, - ACTIONS(6137), 1, - anon_sym_or, - ACTIONS(6139), 1, - anon_sym_as, + [86655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 5, + ACTIONS(4846), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 25, + ACTIONS(4844), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -279878,36 +292607,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71528] = 5, - ACTIONS(6135), 1, - anon_sym_and, - ACTIONS(6137), 1, - anon_sym_or, + [86696] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6300), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6998), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [86775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + ACTIONS(4554), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 26, + ACTIONS(4551), 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_in, 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, @@ -279919,34 +292702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71574] = 4, - ACTIONS(6135), 1, - anon_sym_and, + [86816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 5, + ACTIONS(4572), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 27, + ACTIONS(4570), 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_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279959,38 +292740,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [86857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 5, + ACTIONS(5524), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 24, + ACTIONS(5522), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -280002,27 +292778,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71668] = 3, + [86898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 4, + ACTIONS(5678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 29, + ACTIONS(5676), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280041,38 +292816,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [86939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 5, + ACTIONS(5490), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5947), 24, + ACTIONS(5488), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -280084,27 +292854,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71760] = 3, + [86980] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6302), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6920), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [87059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5497), 4, + ACTIONS(5656), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5495), 29, + ACTIONS(5654), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280123,27 +292949,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71802] = 3, + [87100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 4, + ACTIONS(5500), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 29, + ACTIONS(5498), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280162,27 +292987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71844] = 3, + [87141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 4, + ACTIONS(5703), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 29, + ACTIONS(5701), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280201,18 +293025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71886] = 4, - ACTIONS(6142), 1, - aux_sym_c_integer_type_token1, + [87182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 4, + ACTIONS(4408), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5093), 28, + ACTIONS(4397), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -280220,8 +293042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -280241,37 +293063,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71930] = 6, - ACTIONS(6108), 1, - anon_sym_and, - ACTIONS(6110), 1, - anon_sym_or, - ACTIONS(6144), 1, - anon_sym_as, + [87223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(5648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 26, + ACTIONS(5646), 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_in, 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, @@ -280283,27 +293101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71978] = 3, + [87264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 4, + ACTIONS(5496), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5408), 29, + ACTIONS(5494), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280322,27 +293139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72020] = 3, + [87305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 4, + ACTIONS(5360), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 29, + ACTIONS(5358), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280361,27 +293177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72062] = 3, + [87346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 4, + ACTIONS(4951), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 29, + ACTIONS(4949), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280400,76 +293215,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [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, + [87387] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5691), 4, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1554), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5689), 23, + ACTIONS(1549), 14, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72156] = 8, - ACTIONS(5293), 1, + ACTIONS(1812), 14, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5814), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [87432] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6304), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7074), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5687), 4, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [87511] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5685), 23, + ACTIONS(5394), 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_else, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280488,27 +293350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72208] = 3, + [87552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 4, + ACTIONS(5364), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 29, + ACTIONS(5362), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280527,27 +293388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72250] = 3, + [87593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 4, + ACTIONS(5664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 29, + ACTIONS(5662), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280566,27 +293426,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72292] = 3, + [87634] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4605), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4610), 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(4418), 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, + [87677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, + ACTIONS(4610), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4605), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280605,27 +293503,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72334] = 3, + [87718] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6306), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7338), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [87797] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4397), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4408), 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(4418), 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, + [87840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(5652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(5650), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280644,27 +293637,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72376] = 3, + [87881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 4, + ACTIONS(4576), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5069), 29, + ACTIONS(4574), 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_in, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -280683,168 +293675,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72418] = 22, - ACTIONS(4632), 1, + [87922] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6153), 1, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6308), 1, anon_sym_COLON, - ACTIONS(6155), 1, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7322), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [88001] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - STATE(4071), 1, + ACTIONS(6310), 1, + anon_sym_COLON, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6915), 1, + STATE(7247), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [72497] = 22, - ACTIONS(4632), 1, + [88080] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6161), 1, + ACTIONS(6312), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6920), 1, + STATE(7178), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [72576] = 3, + [88159] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5095), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5093), 28, + ACTIONS(1057), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1059), 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, - [72617] = 3, + ACTIONS(1090), 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, + [88202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5517), 4, + ACTIONS(5621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5515), 28, + ACTIONS(5619), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -280852,8 +293902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -280873,16 +293923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72658] = 3, + [88243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5450), 4, + ACTIONS(4584), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5448), 28, + ACTIONS(4582), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -280890,8 +293940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -280911,16 +293961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72699] = 3, + [88284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5454), 4, + ACTIONS(4580), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5452), 28, + ACTIONS(4578), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -280928,8 +293978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -280949,16 +293999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72740] = 3, + [88325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5458), 4, + ACTIONS(4580), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5456), 28, + ACTIONS(4578), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -280966,8 +294016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -280987,16 +294037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72781] = 3, + [88366] = 4, + ACTIONS(6286), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5462), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5460), 28, + ACTIONS(5354), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281004,15 +294056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -281025,16 +294076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72822] = 3, + [88409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5555), 4, + ACTIONS(5277), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5553), 28, + ACTIONS(5275), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281042,8 +294093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281063,16 +294114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72863] = 3, + [88450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5569), 4, + ACTIONS(4592), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5567), 28, + ACTIONS(4590), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281080,8 +294131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281101,16 +294152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72904] = 3, + [88491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5573), 4, + ACTIONS(4592), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5571), 28, + ACTIONS(4590), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281118,8 +294169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281139,33 +294190,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72945] = 3, + [88532] = 7, + ACTIONS(6260), 1, + anon_sym_as, + ACTIONS(6262), 1, + anon_sym_if, + ACTIONS(6264), 1, + anon_sym_and, + ACTIONS(6266), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5602), 4, + ACTIONS(6051), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5600), 28, + ACTIONS(6049), 24, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -281177,16 +294231,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72986] = 3, + anon_sym_by, + [88581] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6314), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6997), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [88660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5559), 4, + ACTIONS(5533), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5557), 28, + ACTIONS(5531), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281194,8 +294306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281215,105 +294327,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73027] = 3, + [88701] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5486), 4, + ACTIONS(4554), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4557), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5484), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4549), 14, 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, - [73068] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5497), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5495), 28, + ACTIONS(4551), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73109] = 3, + [88746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5440), 4, + ACTIONS(4554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5438), 28, + 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_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -281329,16 +294405,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73150] = 3, + [88787] = 25, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6316), 1, + sym_identifier, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(6320), 1, + anon_sym_RPAREN, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6328), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6330), 1, + anon_sym_operator, + STATE(4304), 1, + sym_int_type, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(4642), 1, + sym_function_pointer_type, + STATE(4737), 1, + sym_operator_name, + STATE(5988), 1, + sym_c_type, + STATE(6021), 1, + sym_maybe_typed_name, + STATE(6345), 1, + sym_type_index, + STATE(7167), 1, + sym__typedargslist, + STATE(7207), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6332), 2, + anon_sym_const, + anon_sym_volatile, + STATE(6281), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [88872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5444), 4, + ACTIONS(5697), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5442), 28, + ACTIONS(5695), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281346,8 +294482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281367,33 +294503,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73191] = 3, + [88913] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6334), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6945), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [88992] = 7, + ACTIONS(6260), 1, + anon_sym_as, + ACTIONS(6262), 1, + anon_sym_if, + ACTIONS(6264), 1, + anon_sym_and, + ACTIONS(6266), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4610), 28, + ACTIONS(6026), 24, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -281405,187 +294601,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73232] = 22, - ACTIONS(4632), 1, + anon_sym_by, + [89041] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6163), 1, + ACTIONS(6336), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6674), 1, + STATE(7056), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [89120] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6338), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7006), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [73311] = 3, + [89199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 4, + ACTIONS(4584), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5408), 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, - [73352] = 3, + ACTIONS(4582), 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, + [89240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 4, + ACTIONS(4580), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [73393] = 3, + ACTIONS(4578), 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, + [89281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 4, + ACTIONS(4580), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [73434] = 3, + ACTIONS(4578), 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, + [89322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 4, + ACTIONS(5474), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4964), 28, + ACTIONS(5472), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281593,8 +294847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281614,15 +294868,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73475] = 4, + [89363] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6340), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7258), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [89442] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6342), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7106), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [89521] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4566), 3, + ACTIONS(4559), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4571), 13, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -281636,7 +295004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4506), 16, + ACTIONS(4566), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -281653,15 +295021,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [73518] = 4, + [89564] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6344), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7304), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [89643] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 3, + ACTIONS(4594), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4496), 13, + ACTIONS(4599), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -281675,7 +295100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4506), 16, + ACTIONS(4603), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -281692,16 +295117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [73561] = 3, + [89686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 4, + ACTIONS(1059), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5480), 28, + ACTIONS(1057), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281709,8 +295134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281730,150 +295155,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73602] = 25, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6165), 1, - sym_identifier, - ACTIONS(6167), 1, + [89727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4592), 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(4590), 19, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_RPAREN, - ACTIONS(6175), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [89768] = 4, 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, + ACTIONS(1812), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1551), 13, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, + 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, - 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_CARET, + anon_sym_LT_LT, + ACTIONS(1549), 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, + [89811] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6183), 1, + ACTIONS(6346), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6636), 1, + STATE(6914), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [73766] = 3, + [89890] = 6, + ACTIONS(6286), 1, + anon_sym_and, + ACTIONS(6288), 1, + anon_sym_or, + ACTIONS(6348), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 4, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4551), 28, + ACTIONS(6015), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -281885,16 +295330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73807] = 3, + [89937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5592), 4, + ACTIONS(5101), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5590), 28, + ACTIONS(5093), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281902,8 +295347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -281923,15 +295368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73848] = 4, + [89978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4604), 13, + ACTIONS(4592), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -281945,10 +295386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4606), 16, + ACTIONS(4590), 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, @@ -281962,16 +295406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [73891] = 3, + [90019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 28, + ACTIONS(4594), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -281979,8 +295423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282000,54 +295444,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73932] = 3, + [90060] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6351), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7000), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [73973] = 3, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [90139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(5674), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 28, + ACTIONS(5672), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282055,8 +295518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282076,16 +295539,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74014] = 3, + [90180] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6353), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7302), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [90259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(4564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 28, + ACTIONS(4559), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282093,8 +295613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282114,16 +295634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74055] = 3, + [90300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(5478), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 28, + ACTIONS(5476), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282131,8 +295651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282152,209 +295672,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74096] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4590), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4593), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4585), 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(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, - [74141] = 22, - ACTIONS(4632), 1, + [90341] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6185), 1, + ACTIONS(6355), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6944), 1, + STATE(7040), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [74220] = 5, + [90420] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6357), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(6918), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, - anon_sym_STAR, - anon_sym_SLASH, - 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_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(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, - [74265] = 22, - ACTIONS(4632), 1, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [90499] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6187), 1, + ACTIONS(6359), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6736), 1, + STATE(6922), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [74344] = 4, + [90578] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4560), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -282368,10 +295861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4562), 16, + ACTIONS(4570), 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, @@ -282385,16 +295881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74387] = 3, + [90619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 4, + ACTIONS(5482), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 28, + ACTIONS(5480), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282402,8 +295898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282423,111 +295919,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74428] = 22, - ACTIONS(4632), 1, + [90660] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6361), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7145), 1, + sym__parameters, + STATE(7252), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [90739] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6363), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7052), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [90818] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6189), 1, + ACTIONS(6365), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6759), 1, + STATE(7257), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [74507] = 3, + [90897] = 7, + ACTIONS(4588), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 13, + ACTIONS(4554), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4557), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4586), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4549), 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(4551), 12, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4610), 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, - [74548] = 3, + [90946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5641), 4, + ACTIONS(4554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5639), 28, + ACTIONS(4551), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282535,8 +296149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282556,33 +296170,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74589] = 3, + [90987] = 7, + ACTIONS(6282), 1, + anon_sym_as, + ACTIONS(6284), 1, + anon_sym_if, + ACTIONS(6286), 1, + anon_sym_and, + ACTIONS(6288), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 4, + ACTIONS(6042), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5580), 28, + ACTIONS(6038), 24, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -282594,73 +296212,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74630] = 22, - ACTIONS(4632), 1, + [91036] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6191), 1, + ACTIONS(6367), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6784), 1, + STATE(7111), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [91115] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6369), 1, + anon_sym_COLON, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7096), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [74709] = 3, + [91194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 28, + ACTIONS(5354), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -282668,8 +296343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -282689,106 +296364,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74750] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4553), 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(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, + [91235] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6193), 1, + ACTIONS(6371), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6996), 1, + STATE(7103), 1, sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [74870] = 3, + [91314] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 13, + ACTIONS(4551), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4554), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -282802,13 +296443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4581), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4549), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -282822,87 +296460,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74911] = 3, + [91357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 13, + ACTIONS(5504), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(4581), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5502), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [74952] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4579), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4577), 19, - anon_sym_DOT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91398] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6373), 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, - [74993] = 3, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7127), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 13, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [91477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -282916,7 +296573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4577), 19, + ACTIONS(4574), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -282936,226 +296593,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [75034] = 22, - ACTIONS(4632), 1, + [91518] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6195), 1, + ACTIONS(6375), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6721), 1, + STATE(7162), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [75113] = 4, + [91597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 3, + ACTIONS(5617), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5615), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1599), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1597), 16, - 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, + [91638] = 22, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, + anon_sym_STAR_STAR, + ACTIONS(6278), 1, + anon_sym_SLASH, + ACTIONS(6377), 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, - [75156] = 22, - ACTIONS(4632), 1, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5565), 1, + sym_c_type, + STATE(6218), 1, + sym_parameter, + STATE(6490), 1, + sym_tuple_pattern, + STATE(7062), 1, + sym_lambda_parameters, + STATE(7145), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6894), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6792), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [91717] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6197), 1, + ACTIONS(6379), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6848), 1, + STATE(7191), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [75235] = 22, - ACTIONS(4632), 1, + [91796] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6199), 1, + ACTIONS(6381), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6907), 1, + STATE(7334), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [75314] = 3, + [91875] = 5, + ACTIONS(6286), 1, + anon_sym_and, + ACTIONS(6288), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5434), 4, + ACTIONS(6009), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5432), 28, + ACTIONS(6007), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -283163,16 +296880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -283184,33 +296899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75355] = 3, + [91920] = 6, + ACTIONS(6264), 1, + anon_sym_and, + ACTIONS(6266), 1, + anon_sym_or, + ACTIONS(6383), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 4, + ACTIONS(6020), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4839), 28, + ACTIONS(6015), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -283222,779 +296939,757 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75396] = 22, - ACTIONS(4632), 1, + anon_sym_by, + [91967] = 22, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6268), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6201), 1, + ACTIONS(6386), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, STATE(6218), 1, sym_parameter, - STATE(6221), 1, + STATE(6490), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(7145), 1, sym__parameters, - STATE(6925), 1, + STATE(7235), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 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, + [92046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(5640), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4593), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4595), 3, + ACTIONS(5638), 28, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4585), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_STAR_STAR, anon_sym_in, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(4587), 12, + [92087] = 6, + ACTIONS(6388), 1, + anon_sym_as, + ACTIONS(6391), 1, + anon_sym_and, + ACTIONS(6393), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6015), 24, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, 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, - [75524] = 22, - ACTIONS(4632), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92133] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6395), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, - ACTIONS(6151), 1, - anon_sym_STAR, - ACTIONS(6155), 1, - anon_sym_STAR_STAR, - 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, + STATE(3604), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92205] = 5, + ACTIONS(6391), 1, + anon_sym_and, + ACTIONS(6393), 1, + anon_sym_or, 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, - [75682] = 4, + ACTIONS(6009), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6007), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_in, + 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, + [92249] = 4, + ACTIONS(6391), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(981), 3, + ACTIONS(5356), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(983), 13, + 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, + [92291] = 7, + ACTIONS(6391), 1, + anon_sym_and, + ACTIONS(6393), 1, + anon_sym_or, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6038), 23, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_else, anon_sym_STAR_STAR, + anon_sym_in, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92339] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6401), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + STATE(3595), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92411] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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(6209), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6403), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, - 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, + STATE(3608), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92483] = 7, + ACTIONS(6391), 1, + anon_sym_and, + ACTIONS(6393), 1, + anon_sym_or, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_if, 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, - ACTIONS(6151), 1, + ACTIONS(6051), 4, anon_sym_STAR, - ACTIONS(6155), 1, - anon_sym_STAR_STAR, - ACTIONS(6157), 1, anon_sym_SLASH, - ACTIONS(6213), 1, - anon_sym_COLON, - STATE(4071), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6049), 23, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_in, + 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, + [92531] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6405), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + STATE(3605), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92603] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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(6215), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6407), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + STATE(3604), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92675] = 19, + ACTIONS(6409), 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(6217), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6418), 1, + anon_sym_operator, + ACTIONS(6427), 1, + anon_sym_long, + ACTIONS(6433), 1, + anon_sym_ctypedef, + ACTIONS(6436), 1, + anon_sym_cppclass, + ACTIONS(6439), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(6421), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(6424), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6430), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6415), 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, + STATE(3604), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(6412), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92747] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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(6219), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6441), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + STATE(3604), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [92819] = 21, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6443), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6445), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6447), 1, + anon_sym_RPAREN, + ACTIONS(6449), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6451), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6453), 1, anon_sym_SLASH, - ACTIONS(6221), 1, - anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5509), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6248), 1, sym_tuple_pattern, - STATE(6608), 1, + STATE(6395), 1, + sym_parameter, + STATE(7241), 1, sym__parameters, - STATE(6952), 1, - sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6430), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6755), 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(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_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + [92895] = 7, + ACTIONS(6391), 1, anon_sym_and, + ACTIONS(6393), 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, - [76398] = 3, + ACTIONS(6397), 1, + anon_sym_as, + ACTIONS(6399), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(6030), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4555), 28, + ACTIONS(6026), 23, 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_else, anon_sym_STAR_STAR, + anon_sym_in, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -284006,1357 +297701,1738 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76439] = 22, - ACTIONS(4632), 1, + [92943] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6455), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + STATE(3604), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93015] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(4748), 1, + anon_sym_ctypedef, + ACTIONS(4754), 1, + anon_sym_cppclass, + ACTIONS(6457), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4140), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3603), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93087] = 4, + ACTIONS(6459), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(2961), 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, + [93128] = 20, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6225), 1, + ACTIONS(6461), 1, + sym_identifier, + ACTIONS(6463), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6244), 1, sym_tuple_pattern, - STATE(6601), 1, - sym_lambda_parameters, - STATE(6608), 1, - sym__parameters, + STATE(6654), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [76597] = 22, - ACTIONS(4632), 1, + [93201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2851), 5, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2853), 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(6147), 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, + [93240] = 22, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6465), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6467), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, - anon_sym_STAR, - ACTIONS(6155), 1, - anon_sym_STAR_STAR, - ACTIONS(6157), 1, - anon_sym_SLASH, - ACTIONS(6227), 1, + ACTIONS(6469), 1, anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6471), 1, + anon_sym_RBRACK, + ACTIONS(6481), 1, + anon_sym_long, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, sym__signedness, - STATE(4313), 1, + STATE(4829), 1, sym__longness, - STATE(5280), 1, + STATE(5610), 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, + STATE(6399), 1, + sym_memory_view_index, + STATE(6513), 1, + sym_template_param, + STATE(7312), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6483), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4648), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(6475), 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, + [93317] = 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(5523), 28, - anon_sym_DOT, + ACTIONS(2911), 5, + 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, - [76717] = 3, + anon_sym_COLON, + 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, + [93356] = 20, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(6485), 1, + anon_sym_COLON, + ACTIONS(6487), 1, + anon_sym_namespace, + ACTIONS(6489), 1, + anon_sym_nogil, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5529), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5527), 28, - anon_sym_DOT, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4069), 2, + sym_class_definition, + sym_cvar_def, + STATE(4135), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93429] = 4, + ACTIONS(6491), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2937), 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, - [76758] = 22, - ACTIONS(4632), 1, + ACTIONS(2935), 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(6147), 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, + [93470] = 20, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 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, + ACTIONS(6493), 1, anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6495), 1, + anon_sym_namespace, + ACTIONS(6497), 1, + anon_sym_nogil, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5044), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(3693), 2, + sym_class_definition, + sym_cvar_def, + STATE(4137), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93543] = 20, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6499), 1, + anon_sym_COLON, + ACTIONS(6501), 1, + anon_sym_namespace, + ACTIONS(6503), 1, + anon_sym_nogil, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, sym_int_type, - sym_function_pointer_type, - STATE(6503), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5025), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1271), 2, + sym_class_definition, + sym_cvar_def, + STATE(4139), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93616] = 4, + ACTIONS(6505), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2987), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2985), 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(6147), 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, + [93657] = 5, + ACTIONS(6509), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6511), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(6507), 22, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, + sym_identifier, + anon_sym_await, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + [93700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6514), 12, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_None, + aux_sym_integer_token4, sym_identifier, - ACTIONS(6149), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_sizeof, + ACTIONS(6516), 18, + sym_string_start, anon_sym_LPAREN, - ACTIONS(6151), 1, anon_sym_STAR, - ACTIONS(6155), 1, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_0x, + anon_sym_0X, + anon_sym_0o, + anon_sym_0O, + anon_sym_0b, + anon_sym_0B, + sym_float, + [93739] = 20, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(6272), 1, + anon_sym_STAR, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6231), 1, + ACTIONS(6461), 1, + sym_identifier, + ACTIONS(6518), 1, anon_sym_COLON, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6244), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6712), 1, - sym_lambda_parameters, + STATE(6654), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 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(5647), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [76957] = 3, + [93812] = 4, + ACTIONS(6520), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5652), 28, - 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_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, - [76998] = 3, + ACTIONS(2957), 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, + [93853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5658), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5656), 28, - anon_sym_DOT, + ACTIONS(6522), 12, + anon_sym_print, + anon_sym_match, + anon_sym_async, + 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(6524), 18, + sym_string_start, 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, - [77039] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5358), 4, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_in, - anon_sym_STAR_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, - [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(5971), 4, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_TILDE, anon_sym_LT, - anon_sym_GT, - ACTIONS(5967), 24, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77129] = 6, - ACTIONS(6237), 1, - anon_sym_and, - ACTIONS(6239), 1, - anon_sym_or, - ACTIONS(6241), 1, - anon_sym_as, + 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, + [93892] = 4, + ACTIONS(6526), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5982), 25, - anon_sym_DOT, + ACTIONS(2829), 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, - [77176] = 5, - ACTIONS(6237), 1, - anon_sym_and, - ACTIONS(6239), 1, - anon_sym_or, + ACTIONS(2831), 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, + [93933] = 4, + ACTIONS(6528), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5915), 26, - anon_sym_DOT, + ACTIONS(2843), 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, - [77221] = 4, - ACTIONS(6237), 1, - anon_sym_and, + ACTIONS(2841), 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, + [93974] = 8, + ACTIONS(4891), 1, + sym_c_integer_signedness, + ACTIONS(4893), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6530), 1, + aux_sym_integer_token1, + STATE(3219), 1, + sym_c_integer_type, + STATE(3656), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(4846), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 27, + ACTIONS(4844), 21, 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_COLON, 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, - [77264] = 22, - ACTIONS(4632), 1, + anon_sym_by, + [94023] = 20, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, + ACTIONS(6443), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6445), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6449), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6451), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6453), 1, anon_sym_SLASH, - ACTIONS(6244), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6463), 1, + anon_sym_RPAREN, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5509), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6248), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6935), 1, - sym_lambda_parameters, + STATE(6702), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6430), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6755), 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, + [94096] = 4, + ACTIONS(6532), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5927), 24, - anon_sym_DOT, + ACTIONS(2929), 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, - [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(2931), 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, + [94137] = 3, 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), 24, - anon_sym_DOT, + ACTIONS(6534), 12, + anon_sym_print, + anon_sym_match, + anon_sym_async, + 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(6536), 18, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_STAR_STAR, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77441] = 22, - ACTIONS(4632), 1, + 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, + [94176] = 4, + ACTIONS(6538), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2875), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2877), 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(6147), 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, + [94217] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6540), 1, + anon_sym_COLON, + ACTIONS(6542), 1, + anon_sym_namespace, + ACTIONS(6544), 1, + anon_sym_nogil, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5072), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1974), 2, + sym_class_definition, + sym_cvar_def, + STATE(4136), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94290] = 20, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6443), 1, sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6445), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6449), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6451), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6453), 1, anon_sym_SLASH, - ACTIONS(6246), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6518), 1, + anon_sym_RPAREN, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5509), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6248), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6661), 1, - sym_lambda_parameters, + STATE(6702), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6430), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6755), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [77520] = 4, + [94363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 3, - anon_sym_DOT, + ACTIONS(2686), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - 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_CARET, - anon_sym_LT_LT, - ACTIONS(4585), 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, - [77563] = 3, + ACTIONS(2688), 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, + [94401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5596), 28, - anon_sym_DOT, + ACTIONS(2605), 3, + sym__dedent, + 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, - [77604] = 3, + ACTIONS(2607), 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, + [94439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4587), 28, - anon_sym_DOT, + ACTIONS(2652), 3, + sym__dedent, + 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, - [77645] = 3, + ACTIONS(2650), 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, + [94477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5608), 28, - anon_sym_DOT, + ACTIONS(2654), 3, + sym__dedent, + 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, - [77686] = 3, + ACTIONS(2656), 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, + [94515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4587), 28, - anon_sym_DOT, + ACTIONS(2686), 3, + sym__dedent, + 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, - [77727] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4587), 28, - anon_sym_DOT, + ACTIONS(2688), 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, + [94553] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, 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, - [77768] = 3, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6471), 1, + anon_sym_RBRACK, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(5610), 1, + sym_c_type, + STATE(6399), 1, + sym_memory_view_index, + STATE(7312), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5077), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [77809] = 22, - ACTIONS(4632), 1, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [94627] = 19, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6147), 1, - sym_identifier, - ACTIONS(6149), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6272), 1, anon_sym_STAR, - ACTIONS(6155), 1, + ACTIONS(6276), 1, anon_sym_STAR_STAR, - ACTIONS(6157), 1, + ACTIONS(6278), 1, anon_sym_SLASH, - ACTIONS(6248), 1, - anon_sym_COLON, - STATE(4071), 1, + ACTIONS(6461), 1, + sym_identifier, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5280), 1, + STATE(5565), 1, sym_c_type, - STATE(6218), 1, - sym_parameter, - STATE(6221), 1, + STATE(6244), 1, sym_tuple_pattern, - STATE(6608), 1, - sym__parameters, - STATE(6707), 1, - sym_lambda_parameters, + STATE(6654), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(6280), 2, anon_sym_const, anon_sym_volatile, - STATE(4577), 2, + STATE(4891), 2, sym_int_type, sym_function_pointer_type, - STATE(6503), 2, + STATE(6894), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(6502), 5, + STATE(6792), 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(4575), 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(4573), 19, - anon_sym_DOT, + [94697] = 18, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 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, - [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(4630), 1, + anon_sym_long, + ACTIONS(6548), 1, + anon_sym_class, + ACTIONS(6550), 1, + anon_sym_ctypedef, + ACTIONS(6554), 1, + anon_sym_enum, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4638), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5967), 23, - anon_sym_DOT, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6552), 2, + anon_sym_struct, + anon_sym_union, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94765] = 18, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77977] = 19, - ACTIONS(413), 1, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4630), 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, + ACTIONS(6556), 1, sym__dedent, - STATE(4025), 1, + STATE(4395), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4586), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4783), 1, - sym_maybe_typed_name, + STATE(4667), 1, + sym_c_type, + STATE(7151), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(4109), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(407), 3, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78049] = 19, - ACTIONS(413), 1, + [94833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2652), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2650), 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(4658), 1, - anon_sym_operator, - ACTIONS(4791), 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, + [94871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2654), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2656), 25, + anon_sym_class, sym_identifier, - ACTIONS(4797), 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(4803), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, anon_sym_cppclass, - ACTIONS(6260), 1, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94909] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2599), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2601), 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, + [94947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2605), 4, sym__dedent, - STATE(4025), 1, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2607), 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, + [94985] = 19, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6443), 1, + sym_identifier, + ACTIONS(6445), 1, + anon_sym_LPAREN, + ACTIONS(6449), 1, + anon_sym_STAR, + ACTIONS(6451), 1, + anon_sym_STAR_STAR, + ACTIONS(6453), 1, + anon_sym_SLASH, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(5509), 1, + sym_c_type, + STATE(6248), 1, + sym_tuple_pattern, + STATE(6702), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6280), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4891), 2, + sym_int_type, + sym_function_pointer_type, + STATE(6430), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(6755), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [95055] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(6558), 1, + anon_sym_from, + ACTIONS(6560), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5019), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285367,49 +299443,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(4051), 2, + sym_class_definition, + sym_cvar_def, + STATE(4135), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78121] = 19, + [95125] = 19, + ACTIONS(59), 1, + anon_sym_class, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6262), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6562), 1, + anon_sym_COLON, + ACTIONS(6564), 1, + anon_sym_nogil, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5072), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285420,49 +299494,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(1497), 2, + sym_class_definition, + sym_cvar_def, + STATE(4136), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78193] = 19, + [95195] = 19, + ACTIONS(59), 1, + anon_sym_class, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6264), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6566), 1, + anon_sym_from, + ACTIONS(6568), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5072), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285473,315 +299545,378 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(1331), 2, + sym_class_definition, + sym_cvar_def, + STATE(4136), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3418), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78265] = 19, - ACTIONS(6266), 1, + [95265] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, sym_identifier, - ACTIONS(6275), 1, - anon_sym_operator, - ACTIONS(6284), 1, + ACTIONS(6570), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(5824), 1, + sym_c_type, + STATE(6587), 1, + sym_memory_view_index, + STATE(7242), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [95339] = 18, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6290), 1, - anon_sym_ctypedef, - ACTIONS(6293), 1, - anon_sym_cppclass, - ACTIONS(6296), 1, + ACTIONS(6572), 1, sym__dedent, - STATE(4025), 1, + STATE(4395), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4586), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4783), 1, - sym_maybe_typed_name, + STATE(4667), 1, + sym_c_type, + STATE(7340), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6278), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6281), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6287), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(4116), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(6272), 3, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78337] = 21, - ACTIONS(4632), 1, + [95407] = 19, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6298), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(6300), 1, - anon_sym_LPAREN, - ACTIONS(6302), 1, - anon_sym_RPAREN, - ACTIONS(6304), 1, - anon_sym_STAR, - ACTIONS(6306), 1, - anon_sym_STAR_STAR, - ACTIONS(6308), 1, - anon_sym_SLASH, - STATE(4071), 1, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(6574), 1, + anon_sym_COLON, + ACTIONS(6576), 1, + anon_sym_nogil, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 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, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + ACTIONS(4658), 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, + STATE(4093), 2, + sym_class_definition, + sym_cvar_def, + STATE(4135), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 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(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [95477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 4, + ACTIONS(4951), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5982), 24, + ACTIONS(4949), 25, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - [78459] = 5, - ACTIONS(6254), 1, - anon_sym_and, - ACTIONS(6256), 1, - anon_sym_or, + anon_sym_by, + [95515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 4, + ACTIONS(5360), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5915), 25, + ACTIONS(5358), 25, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - [78503] = 4, - ACTIONS(6254), 1, - anon_sym_and, + anon_sym_by, + [95553] = 5, + ACTIONS(6578), 1, + aux_sym_integer_token1, + STATE(3656), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 4, + ACTIONS(4878), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5608), 26, + ACTIONS(4876), 23, 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_COLON, 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, - [78545] = 7, - ACTIONS(6250), 1, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + anon_sym_by, + [95595] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5674), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5672), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6252), 1, + anon_sym_GT_GT, anon_sym_if, - ACTIONS(6254), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_and, - 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_by, + [95633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 4, + ACTIONS(5356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5927), 23, + ACTIONS(5354), 25, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - [78593] = 19, + anon_sym_by, + [95671] = 19, + ACTIONS(135), 1, + anon_sym_class, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6313), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6581), 1, + anon_sym_from, + ACTIONS(6583), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5025), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285792,90 +299927,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(1256), 2, + sym_class_definition, + sym_cvar_def, + STATE(4139), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78665] = 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, + [95741] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + ACTIONS(6585), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(5791), 1, + sym_c_type, + STATE(6446), 1, + sym_memory_view_index, + STATE(6990), 1, + sym_integer, 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), 23, - anon_sym_DOT, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [95815] = 18, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78713] = 19, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6587), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, + STATE(7221), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4020), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [95883] = 19, + ACTIONS(135), 1, + anon_sym_class, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6315), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6589), 1, + anon_sym_COLON, + ACTIONS(6591), 1, + anon_sym_nogil, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5025), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285886,49 +300081,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(1293), 2, + sym_class_definition, + sym_cvar_def, + STATE(4139), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78785] = 19, + [95953] = 19, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6317), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6593), 1, + anon_sym_from, + ACTIONS(6595), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5044), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285939,49 +300132,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(3670), 2, + sym_class_definition, + sym_cvar_def, + STATE(4137), 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, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96023] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + ACTIONS(6597), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(5623), 1, + sym_c_type, + STATE(6087), 1, + sym_memory_view_index, + STATE(6957), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [96097] = 18, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_pass, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6599), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, + STATE(6969), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4047), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78857] = 19, + [96165] = 19, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(4797), 1, - anon_sym_ctypedef, - ACTIONS(4803), 1, - anon_sym_cppclass, - ACTIONS(6319), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(6603), 1, + anon_sym_nogil, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4783), 1, + STATE(5044), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -285992,39 +300286,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3954), 2, + STATE(3744), 2, + sym_class_definition, + sym_cvar_def, + STATE(4137), 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, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78929] = 4, - ACTIONS(6321), 1, - anon_sym_COLON, + [96235] = 4, + ACTIONS(6605), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2949), 4, + ACTIONS(3785), 3, sym__dedent, sym_string_start, - anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2947), 25, + ACTIONS(3787), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286050,18 +300341,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [78970] = 4, - ACTIONS(6323), 1, - anon_sym_COLON, + [96275] = 19, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6607), 1, + anon_sym_class, + ACTIONS(6609), 1, + anon_sym_ctypedef, + ACTIONS(6613), 1, + anon_sym_enum, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5030), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 4, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6611), 2, + anon_sym_struct, + anon_sym_union, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96345] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3925), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2891), 25, + ACTIONS(3923), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286087,18 +300427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79011] = 4, - ACTIONS(6325), 1, - anon_sym_COLON, + [96383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 4, + ACTIONS(3401), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2987), 25, + ACTIONS(3399), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286124,126 +300462,86 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [96421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(3405), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3403), 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(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + anon_sym_long, 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, - 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3409), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3407), 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(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + anon_sym_long, 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3039), 4, + ACTIONS(3643), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3041), 25, + ACTIONS(3645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286269,71 +300567,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79243] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(413), 1, + [96535] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6481), 1, anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(6546), 1, sym_identifier, - ACTIONS(6351), 1, - anon_sym_COLON, - ACTIONS(6353), 1, - anon_sym_namespace, - ACTIONS(6355), 1, - anon_sym_nogil, - STATE(4025), 1, + ACTIONS(6615), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4829), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4713), 1, - sym_maybe_typed_name, + STATE(5677), 1, + sym_c_type, + STATE(6041), 1, + sym_memory_view_index, + STATE(7210), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(6483), 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, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + [96609] = 4, + ACTIONS(6617), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3753), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + 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, - [79316] = 4, - ACTIONS(6357), 1, - anon_sym_COLON, + [96649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2915), 4, + ACTIONS(3815), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2913), 25, + ACTIONS(3817), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286359,124 +300691,104 @@ static const uint16_t ts_small_parse_table[] = { 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, + [96687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3845), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3847), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79430] = 20, - ACTIONS(413), 1, + [96725] = 21, + ACTIONS(1943), 1, + aux_sym_integer_token4, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6469), 1, + anon_sym_COLON, + ACTIONS(6481), 1, anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(6546), 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, + ACTIONS(6619), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym_integer_repeat4, + STATE(4536), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4829), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4783), 1, - sym_maybe_typed_name, + STATE(5685), 1, + sym_c_type, + STATE(6088), 1, + sym_memory_view_index, + STATE(7135), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(1939), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1941), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(6473), 2, + anon_sym_0x, + anon_sym_0X, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(6483), 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, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 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, + [96799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(3413), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2855), 25, + ACTIONS(3411), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286502,18 +300814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79544] = 4, - ACTIONS(6373), 1, - anon_sym_COLON, + [96837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 4, + ACTIONS(3417), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2849), 25, + ACTIONS(3415), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286539,17 +300849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79585] = 3, + [96875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2921), 5, + ACTIONS(3421), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2919), 25, + ACTIONS(3419), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286575,33 +300884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [79624] = 5, - ACTIONS(6377), 1, - anon_sym_COLON, + [96913] = 3, 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_exec, + ACTIONS(3425), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3423), 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, @@ -286613,302 +300913,127 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [96951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3429), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3427), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, 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, - ACTIONS(6388), 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, + [96989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3433), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3431), 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(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + anon_sym_long, 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [97027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6390), 12, - anon_sym_print, - anon_sym_match, - anon_sym_async, - 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, + ACTIONS(3437), 4, + sym__dedent, sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - 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, - ACTIONS(6151), 1, - anon_sym_STAR, - ACTIONS(6155), 1, - anon_sym_STAR_STAR, - ACTIONS(6157), 1, - anon_sym_SLASH, - ACTIONS(6388), 1, - anon_sym_COLON, - ACTIONS(6394), 1, + ACTIONS(3435), 25, + anon_sym_class, 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(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_api, + anon_sym_cdef, + anon_sym_cpdef, 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(6347), 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(4628), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(6159), 2, + anon_sym_long, 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(6396), 12, - anon_sym_print, - anon_sym_match, - anon_sym_async, - 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_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [97065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 4, + ACTIONS(3441), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2953), 25, + ACTIONS(3439), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286934,17 +301059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80078] = 3, + [97103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2961), 5, + ACTIONS(3893), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2959), 25, + ACTIONS(3895), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -286970,16 +301094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80117] = 3, + [97141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2664), 4, + ACTIONS(3897), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2666), 25, + ACTIONS(3899), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287005,16 +301129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80155] = 3, + [97179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3941), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3859), 25, + ACTIONS(3943), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287040,16 +301164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80193] = 3, + [97217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 4, + ACTIONS(3945), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3249), 25, + ACTIONS(3947), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287075,16 +301199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80231] = 3, + [97255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 4, + ACTIONS(3949), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3253), 25, + ACTIONS(3951), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287110,16 +301234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80269] = 3, + [97293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 4, + ACTIONS(3953), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3263), 25, + ACTIONS(3955), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287145,16 +301269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80307] = 3, + [97331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, + ACTIONS(3445), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3267), 25, + ACTIONS(3443), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287180,16 +301304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80345] = 3, + [97369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 4, + ACTIONS(3449), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3311), 25, + ACTIONS(3447), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287215,67 +301339,51 @@ static const uint16_t ts_small_parse_table[] = { 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, + [97407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3453), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3451), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80453] = 3, + [97445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, + ACTIONS(3003), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3279), 25, + ACTIONS(3005), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287301,16 +301409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80491] = 3, + [97483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, + ACTIONS(3031), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3703), 25, + ACTIONS(3033), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287336,16 +301444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80529] = 3, + [97521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 4, + ACTIONS(3035), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3863), 25, + ACTIONS(3037), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287371,16 +301479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80567] = 3, + [97559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3039), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3867), 25, + ACTIONS(3041), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287406,16 +301514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80605] = 3, + [97597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 4, + ACTIONS(3141), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3535), 25, + ACTIONS(3143), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287441,16 +301549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80643] = 3, + [97635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, + ACTIONS(3145), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3853), 25, + ACTIONS(3147), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287476,16 +301584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80681] = 3, + [97673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3395), 4, + ACTIONS(3247), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3397), 25, + ACTIONS(3249), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287511,16 +301619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80719] = 3, + [97711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3873), 4, + ACTIONS(3381), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3871), 25, + ACTIONS(3383), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287546,16 +301654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80757] = 3, + [97749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 4, + ACTIONS(3385), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3287), 25, + ACTIONS(3387), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287581,16 +301689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80795] = 3, + [97787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 4, + ACTIONS(3389), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3539), 25, + ACTIONS(3391), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287616,16 +301724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80833] = 3, + [97825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 4, + ACTIONS(3539), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3543), 25, + ACTIONS(3541), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287651,67 +301759,51 @@ static const uint16_t ts_small_parse_table[] = { 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, + [97863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3623), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3625), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(6410), 2, + anon_sym_ctypedef, 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_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80941] = 3, + [97901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3545), 4, + ACTIONS(3653), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3547), 25, + ACTIONS(3655), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287737,16 +301829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [80979] = 3, + [97939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2654), 4, + ACTIONS(3663), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2652), 25, + ACTIONS(3665), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287772,16 +301864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81017] = 3, + [97977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 4, + ACTIONS(3667), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3291), 25, + ACTIONS(3669), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287807,16 +301899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81055] = 3, + [98015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3549), 4, + ACTIONS(3671), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3551), 25, + ACTIONS(3673), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287842,67 +301934,51 @@ static const uint16_t ts_small_parse_table[] = { 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, + [98053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3675), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3677), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81163] = 3, + [98091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 4, + ACTIONS(3679), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3555), 25, + ACTIONS(3681), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287928,16 +302004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81201] = 3, + [98129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3557), 4, + ACTIONS(3683), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3559), 25, + ACTIONS(3685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287963,16 +302039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81239] = 3, + [98167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3561), 4, + ACTIONS(3457), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3563), 25, + ACTIONS(3455), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -287998,16 +302074,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81277] = 3, + [98205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3565), 4, + ACTIONS(3461), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3567), 25, + ACTIONS(3459), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288033,16 +302109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81315] = 3, + [98243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3569), 4, + ACTIONS(3465), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3571), 25, + ACTIONS(3463), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288068,16 +302144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81353] = 3, + [98281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3573), 4, + ACTIONS(3469), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3575), 25, + ACTIONS(3467), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288103,16 +302179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81391] = 3, + [98319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 4, + ACTIONS(3473), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3535), 25, + ACTIONS(3471), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288138,16 +302214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81429] = 3, + [98357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 4, + ACTIONS(3477), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3579), 25, + ACTIONS(3475), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288173,16 +302249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81467] = 3, + [98395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 4, + ACTIONS(3481), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3583), 25, + ACTIONS(3479), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288208,67 +302284,86 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [98433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3485), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3483), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [98471] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3489), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3487), 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(4622), 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, - [81575] = 3, + [98509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3877), 4, + ACTIONS(3493), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3875), 25, + ACTIONS(3491), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288294,16 +302389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81613] = 3, + [98547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 4, + ACTIONS(3497), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3587), 25, + ACTIONS(3495), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288329,16 +302424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81651] = 3, + [98585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 4, + ACTIONS(3501), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3595), 25, + ACTIONS(3499), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288364,16 +302459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81689] = 3, + [98623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2658), 4, + ACTIONS(3733), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2656), 25, + ACTIONS(3735), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288399,16 +302494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81727] = 3, + [98661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + ACTIONS(3737), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3599), 25, + ACTIONS(3739), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288434,16 +302529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81765] = 3, + [98699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3399), 4, + ACTIONS(3741), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3401), 25, + ACTIONS(3743), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288469,16 +302564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81803] = 3, + [98737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 4, + ACTIONS(3745), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3611), 25, + ACTIONS(3747), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288504,16 +302599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81841] = 3, + [98775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 4, + ACTIONS(3749), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3615), 25, + ACTIONS(3751), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288539,16 +302634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81879] = 3, + [98813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3617), 4, + ACTIONS(3745), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3619), 25, + ACTIONS(3747), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288574,16 +302669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81917] = 3, + [98851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3621), 4, + ACTIONS(3745), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3623), 25, + ACTIONS(3747), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288609,16 +302704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81955] = 3, + [98889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3625), 4, + ACTIONS(3765), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3627), 25, + ACTIONS(3767), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288644,16 +302739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [81993] = 3, + [98927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3633), 4, + ACTIONS(3769), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3635), 25, + ACTIONS(3771), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288679,16 +302774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82031] = 3, + [98965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 4, + ACTIONS(3773), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3639), 25, + ACTIONS(3775), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288714,16 +302809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82069] = 3, + [99003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 4, + ACTIONS(3777), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3643), 25, + ACTIONS(3779), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288749,16 +302844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82107] = 3, + [99041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2670), 4, + ACTIONS(3791), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2668), 25, + ACTIONS(3793), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288784,16 +302879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82145] = 3, + [99079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + ACTIONS(3795), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3711), 25, + ACTIONS(3797), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288819,16 +302914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82183] = 3, + [99117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 4, + ACTIONS(3799), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3647), 25, + ACTIONS(3801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288854,16 +302949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82221] = 3, + [99155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 4, + ACTIONS(3803), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3405), 25, + ACTIONS(3805), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288889,16 +302984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82259] = 3, + [99193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 4, + ACTIONS(3807), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3299), 25, + ACTIONS(3809), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288924,16 +303019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82297] = 3, + [99231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2662), 4, + ACTIONS(3811), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2660), 25, + ACTIONS(3813), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288959,16 +303054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82335] = 3, + [99269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 4, + ACTIONS(3505), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3651), 25, + ACTIONS(3503), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -288994,16 +303089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82373] = 3, + [99307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 4, + ACTIONS(3509), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3303), 25, + ACTIONS(3507), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289029,69 +303124,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(6343), 1, - anon_sym_long, - ACTIONS(6422), 1, - sym_identifier, - ACTIONS(6424), 1, - anon_sym_RBRACK, - 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, + [99345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(3305), 4, + ACTIONS(3513), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3307), 25, + ACTIONS(3511), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289117,16 +303159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82523] = 3, + [99383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 4, + ACTIONS(3517), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3315), 25, + ACTIONS(3515), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289152,16 +303194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82561] = 3, + [99421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3957), 4, + ACTIONS(3521), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3959), 25, + ACTIONS(3519), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289187,16 +303229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82599] = 3, + [99459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3525), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3523), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289222,16 +303264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82637] = 3, + [99497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 4, + ACTIONS(3529), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3319), 25, + ACTIONS(3527), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289257,16 +303299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82675] = 3, + [99535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 4, + ACTIONS(3533), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3137), 25, + ACTIONS(3531), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289292,16 +303334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82713] = 3, + [99573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3943), 4, + ACTIONS(3537), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3945), 25, + ACTIONS(3535), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289327,16 +303369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82751] = 3, + [99611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3953), 4, + ACTIONS(2997), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3955), 25, + ACTIONS(2995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289362,16 +303404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82789] = 3, + [99649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 4, + ACTIONS(3821), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3323), 25, + ACTIONS(3823), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289397,16 +303439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82827] = 3, + [99687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 4, + ACTIONS(3825), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3327), 25, + ACTIONS(3827), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289432,16 +303474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [82865] = 3, + [99725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 4, + ACTIONS(3829), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3409), 25, + ACTIONS(3831), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289467,69 +303509,51 @@ static const uint16_t ts_small_parse_table[] = { 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, + [99763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(3833), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, - ACTIONS(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + anon_sym_long, 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [99801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 4, + ACTIONS(3837), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3331), 25, + ACTIONS(3839), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289555,16 +303579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83015] = 3, + [99839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 4, + ACTIONS(2997), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3335), 25, + ACTIONS(2995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289590,16 +303614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83053] = 3, + [99877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3653), 4, + ACTIONS(3841), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3655), 25, + ACTIONS(3843), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289625,16 +303649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83091] = 3, + [99915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 4, + ACTIONS(3825), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3659), 25, + ACTIONS(3827), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289660,24 +303684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83129] = 3, + [99953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, + ACTIONS(2599), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3413), 25, + ACTIONS(2601), 26, + anon_sym_case, 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, @@ -289695,16 +303719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83167] = 3, + [99991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 4, + ACTIONS(2997), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3663), 25, + ACTIONS(2995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289730,16 +303754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83205] = 3, + [100029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 4, + ACTIONS(3001), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3667), 25, + ACTIONS(2999), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289765,16 +303789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83243] = 3, + [100067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3669), 4, + ACTIONS(3009), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3671), 25, + ACTIONS(3007), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289800,16 +303824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83281] = 3, + [100105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 4, + ACTIONS(3013), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3675), 25, + ACTIONS(3011), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289835,16 +303859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83319] = 3, + [100143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 4, + ACTIONS(3017), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3679), 25, + ACTIONS(3015), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289870,16 +303894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83357] = 3, + [100181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 4, + ACTIONS(3021), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3683), 25, + ACTIONS(3019), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289905,16 +303929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83395] = 3, + [100219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3685), 4, + ACTIONS(3025), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3687), 25, + ACTIONS(3023), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289940,16 +303964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83433] = 3, + [100257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3689), 4, + ACTIONS(3029), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3691), 25, + ACTIONS(3027), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -289975,16 +303999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83471] = 3, + [100295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3337), 4, + ACTIONS(3053), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3339), 25, + ACTIONS(3051), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290010,16 +304034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83509] = 3, + [100333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3693), 4, + ACTIONS(3057), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3695), 25, + ACTIONS(3055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290045,16 +304069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83547] = 3, + [100371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3697), 4, + ACTIONS(3061), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3699), 25, + ACTIONS(3059), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290080,16 +304104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83585] = 3, + [100409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 4, + ACTIONS(3065), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3707), 25, + ACTIONS(3063), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290115,16 +304139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83623] = 3, + [100447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 4, + ACTIONS(3069), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3719), 25, + ACTIONS(3067), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290150,16 +304174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83661] = 3, + [100485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3721), 4, + ACTIONS(3545), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3723), 25, + ACTIONS(3543), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290185,69 +304209,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(6343), 1, - anon_sym_long, - ACTIONS(6422), 1, - sym_identifier, - ACTIONS(6428), 1, - anon_sym_RBRACK, - 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, + [100523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(3549), 4, + sym__dedent, + sym_string_start, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, - ACTIONS(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + anon_sym_long, 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [100561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3725), 4, + ACTIONS(3553), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3727), 25, + ACTIONS(3551), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290273,16 +304279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83811] = 3, + [100599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 4, + ACTIONS(3557), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3735), 25, + ACTIONS(3555), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290308,16 +304314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83849] = 3, + [100637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3561), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3739), 25, + ACTIONS(3559), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290343,16 +304349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83887] = 3, + [100675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3741), 4, + ACTIONS(3565), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3743), 25, + ACTIONS(3563), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290378,16 +304384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83925] = 3, + [100713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3745), 4, + ACTIONS(3073), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3747), 25, + ACTIONS(3071), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290413,16 +304419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [83963] = 3, + [100751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3749), 4, + ACTIONS(3077), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3751), 25, + ACTIONS(3075), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290448,16 +304454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84001] = 3, + [100789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 4, + ACTIONS(3081), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3755), 25, + ACTIONS(3079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290483,16 +304489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84039] = 3, + [100827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 4, + ACTIONS(3085), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3759), 25, + ACTIONS(3083), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290518,16 +304524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84077] = 3, + [100865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 4, + ACTIONS(3089), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3763), 25, + ACTIONS(3087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290553,16 +304559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84115] = 3, + [100903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 4, + ACTIONS(3093), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3343), 25, + ACTIONS(3091), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290588,16 +304594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84153] = 3, + [100941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 4, + ACTIONS(3097), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3347), 25, + ACTIONS(3095), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290623,16 +304629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84191] = 3, + [100979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 4, + ACTIONS(3101), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3319), 25, + ACTIONS(3099), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290658,16 +304664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84229] = 3, + [101017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3349), 4, + ACTIONS(3073), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3351), 25, + ACTIONS(3071), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290693,16 +304699,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84267] = 3, + [101055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3353), 4, + ACTIONS(3105), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3355), 25, + ACTIONS(3103), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290728,16 +304734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84305] = 3, + [101093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 4, + ACTIONS(3109), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3327), 25, + ACTIONS(3107), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290763,16 +304769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84343] = 3, + [101131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 4, + ACTIONS(3081), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3203), 25, + ACTIONS(3079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290798,16 +304804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84381] = 3, + [101169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 4, + ACTIONS(3113), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3283), 25, + ACTIONS(3111), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290833,16 +304839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84419] = 3, + [101207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3089), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3879), 25, + ACTIONS(3087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290868,16 +304874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84457] = 3, + [101245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3769), 4, + ACTIONS(3117), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3771), 25, + ACTIONS(3115), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290903,16 +304909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84495] = 3, + [101283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 4, + ACTIONS(3121), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3901), 25, + ACTIONS(3119), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290938,16 +304944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84533] = 3, + [101321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3773), 4, + ACTIONS(3125), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3775), 25, + ACTIONS(3123), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -290973,16 +304979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84571] = 3, + [101359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 4, + ACTIONS(3129), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3779), 25, + ACTIONS(3127), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291008,16 +305014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84609] = 3, + [101397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3961), 4, + ACTIONS(3133), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3963), 25, + ACTIONS(3131), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291043,16 +305049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84647] = 3, + [101435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3785), 4, + ACTIONS(3137), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3787), 25, + ACTIONS(3135), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291078,16 +305084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84685] = 3, + [101473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3357), 4, + ACTIONS(3151), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3359), 25, + ACTIONS(3149), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291113,24 +305119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84723] = 3, + [101511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2662), 3, + ACTIONS(3155), 4, sym__dedent, + sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2660), 26, - anon_sym_case, + ACTIONS(3153), 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, @@ -291148,16 +305154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84761] = 3, + [101549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3083), 4, + ACTIONS(3159), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3081), 25, + ACTIONS(3157), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291183,16 +305189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84799] = 3, + [101587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 4, + ACTIONS(3163), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3335), 25, + ACTIONS(3161), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291218,16 +305224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84837] = 3, + [101625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3933), 4, + ACTIONS(3167), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3935), 25, + ACTIONS(3165), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291253,16 +305259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84875] = 3, + [101663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3121), 4, + ACTIONS(3171), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3119), 25, + ACTIONS(3169), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291288,16 +305294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84913] = 3, + [101701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 4, + ACTIONS(3569), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3791), 25, + ACTIONS(3567), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291323,16 +305329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84951] = 3, + [101739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 4, + ACTIONS(3573), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3883), 25, + ACTIONS(3571), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291358,16 +305364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [84989] = 3, + [101777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 4, + ACTIONS(3577), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3425), 25, + ACTIONS(3575), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291393,16 +305399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85027] = 3, + [101815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3089), 4, + ACTIONS(3581), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3091), 25, + ACTIONS(3579), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291428,16 +305434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85065] = 3, + [101853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + ACTIONS(3585), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3887), 25, + ACTIONS(3583), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291463,16 +305469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85103] = 3, + [101891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3361), 4, + ACTIONS(3181), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3363), 25, + ACTIONS(3179), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291498,16 +305504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85141] = 3, + [101929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 4, + ACTIONS(3185), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3891), 25, + ACTIONS(3183), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291533,16 +305539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85179] = 3, + [101967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3793), 4, + ACTIONS(3189), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3795), 25, + ACTIONS(3187), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291568,16 +305574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85217] = 3, + [102005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 4, + ACTIONS(3193), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3141), 25, + ACTIONS(3191), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291603,16 +305609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85255] = 3, + [102043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 4, + ACTIONS(3197), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3799), 25, + ACTIONS(3195), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291638,16 +305644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85293] = 3, + [102081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3365), 4, + ACTIONS(3201), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3367), 25, + ACTIONS(3199), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291673,66 +305679,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85331] = 18, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4618), 1, - anon_sym_pass, - ACTIONS(4632), 1, - anon_sym_long, - ACTIONS(6430), 1, - sym__dedent, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4380), 1, - sym_c_type, - STATE(6948), 1, - sym_pass_statement, - 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(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, - ACTIONS(4622), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [85399] = 3, + [102119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 4, + ACTIONS(3205), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3903), 25, + ACTIONS(3203), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291758,16 +305714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85437] = 3, + [102157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 4, + ACTIONS(3209), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3099), 25, + ACTIONS(3207), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291793,16 +305749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85475] = 3, + [102195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3909), 4, + ACTIONS(3213), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3907), 25, + ACTIONS(3211), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291828,17 +305784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85513] = 4, - ACTIONS(6432), 1, - anon_sym_SEMI, + [102233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 3, + ACTIONS(3217), 4, sym__dedent, sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3801), 25, + ACTIONS(3215), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291864,16 +305819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85553] = 3, + [102271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3369), 4, + ACTIONS(3221), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3371), 25, + ACTIONS(3219), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291899,16 +305854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85591] = 3, + [102309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3913), 4, + ACTIONS(3225), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3911), 25, + ACTIONS(3223), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -291934,67 +305889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85629] = 19, - 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(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(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, - [85699] = 3, + [102347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3185), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3183), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292020,16 +305924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85737] = 3, + [102385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3215), 4, + ACTIONS(3229), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3213), 25, + ACTIONS(3227), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292055,16 +305959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85775] = 3, + [102423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3373), 4, + ACTIONS(3233), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3375), 25, + ACTIONS(3231), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292090,16 +305994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85813] = 3, + [102461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3377), 4, + ACTIONS(3237), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3379), 25, + ACTIONS(3235), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292125,16 +306029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85851] = 3, + [102499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3381), 4, + ACTIONS(3241), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3383), 25, + ACTIONS(3239), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292160,16 +306064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85889] = 3, + [102537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 4, + ACTIONS(3245), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3221), 25, + ACTIONS(3243), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292195,16 +306099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85927] = 3, + [102575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3227), 4, + ACTIONS(3253), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3225), 25, + ACTIONS(3251), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292230,16 +306134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [85965] = 3, + [102613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 4, + ACTIONS(3257), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3527), 25, + ACTIONS(3255), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292265,16 +306169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86003] = 3, + [102651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 4, + ACTIONS(3261), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3157), 25, + ACTIONS(3259), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292300,16 +306204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86041] = 3, + [102689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 4, + ACTIONS(3265), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3235), 25, + ACTIONS(3263), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292335,16 +306239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86079] = 3, + [102727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 4, + ACTIONS(3589), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3841), 25, + ACTIONS(3587), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292370,16 +306274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86117] = 3, + [102765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 4, + ACTIONS(3593), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3385), 25, + ACTIONS(3591), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292405,16 +306309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86155] = 3, + [102803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3241), 4, + ACTIONS(3597), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3239), 25, + ACTIONS(3595), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292440,16 +306344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86193] = 3, + [102841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3245), 4, + ACTIONS(3269), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3243), 25, + ACTIONS(3267), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292475,16 +306379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86231] = 3, + [102879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 4, + ACTIONS(3273), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3731), 25, + ACTIONS(3271), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292510,16 +306414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86269] = 3, + [102917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3839), 4, + ACTIONS(3277), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3837), 25, + ACTIONS(3275), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292545,16 +306449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86307] = 3, + [102955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3589), 4, + ACTIONS(3281), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3591), 25, + ACTIONS(3279), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292580,16 +306484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86345] = 3, + [102993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 4, + ACTIONS(3285), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3169), 25, + ACTIONS(3283), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292615,16 +306519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86383] = 3, + [103031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 4, + ACTIONS(3289), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3603), 25, + ACTIONS(3287), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292650,66 +306554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86421] = 18, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4618), 1, - anon_sym_pass, - ACTIONS(4632), 1, - anon_sym_long, - ACTIONS(6434), 1, - sym__dedent, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4380), 1, - sym_c_type, - STATE(6718), 1, - sym_pass_statement, - 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(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, - 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, - [86489] = 3, + [103069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 4, + ACTIONS(3293), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3271), 25, + ACTIONS(3291), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292735,16 +306589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86527] = 3, + [103107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 4, + ACTIONS(3297), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3767), 25, + ACTIONS(3295), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292770,16 +306624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86565] = 3, + [103145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3605), 4, + ACTIONS(3301), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3607), 25, + ACTIONS(3299), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292805,67 +306659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86603] = 19, - 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, - 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, + [103183] = 3, 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, - [86673] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3415), 4, + ACTIONS(3305), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3417), 25, + ACTIONS(3303), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292891,16 +306694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86711] = 3, + [103221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3419), 4, + ACTIONS(3309), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3421), 25, + ACTIONS(3307), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292926,16 +306729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86749] = 3, + [103259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 4, + ACTIONS(3313), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3145), 25, + ACTIONS(3311), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292961,16 +306764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86787] = 3, + [103297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3825), 4, + ACTIONS(3317), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3827), 25, + ACTIONS(3315), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -292996,16 +306799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86825] = 3, + [103335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3917), 4, + ACTIONS(3321), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3915), 25, + ACTIONS(3319), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293031,16 +306834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86863] = 3, + [103373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 4, + ACTIONS(3325), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3429), 25, + ACTIONS(3323), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293066,16 +306869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86901] = 3, + [103411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3921), 4, + ACTIONS(3329), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3919), 25, + ACTIONS(3327), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293101,16 +306904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86939] = 3, + [103449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 4, + ACTIONS(3333), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3433), 25, + ACTIONS(3331), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293136,16 +306939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [86977] = 3, + [103487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3435), 4, + ACTIONS(3601), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3437), 25, + ACTIONS(3599), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293171,16 +306974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87015] = 3, + [103525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3443), 4, + ACTIONS(3605), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3445), 25, + ACTIONS(3603), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293206,67 +307009,16 @@ static const uint16_t ts_small_parse_table[] = { 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(6436), 1, - anon_sym_from, - ACTIONS(6438), 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(4744), 1, - sym_maybe_typed_name, + [103563] = 3, 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(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, - 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(3497), 4, + ACTIONS(3337), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3499), 25, + ACTIONS(3335), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293292,16 +307044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87161] = 3, + [103601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3501), 4, + ACTIONS(3341), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3503), 25, + ACTIONS(3339), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293327,16 +307079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87199] = 3, + [103639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, + ACTIONS(3345), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3815), 25, + ACTIONS(3343), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293362,69 +307114,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + [103677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(3181), 4, + ACTIONS(3349), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3183), 25, + ACTIONS(3347), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293450,69 +307149,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(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, + [103715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 4, + ACTIONS(3353), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3923), 25, + ACTIONS(3351), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293538,16 +307184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87461] = 3, + [103753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 4, + ACTIONS(3357), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3065), 25, + ACTIONS(3355), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293573,16 +307219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87499] = 3, + [103791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3361), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3845), 25, + ACTIONS(3359), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293608,16 +307254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87537] = 3, + [103829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 4, + ACTIONS(3365), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3075), 25, + ACTIONS(3363), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293643,67 +307289,16 @@ static const uint16_t ts_small_parse_table[] = { 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(6444), 1, - anon_sym_from, - ACTIONS(6446), 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(4718), 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(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, - ACTIONS(4622), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [87645] = 3, + [103867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 4, + ACTIONS(3369), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3141), 25, + ACTIONS(3367), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293729,16 +307324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87683] = 3, + [103905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 4, + ACTIONS(3609), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3187), 25, + ACTIONS(3607), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293764,16 +307359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87721] = 3, + [103943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3511), 4, + ACTIONS(3613), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3513), 25, + ACTIONS(3611), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293799,16 +307394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87759] = 3, + [103981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 4, + ACTIONS(3373), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3055), 25, + ACTIONS(3371), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293834,16 +307429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87797] = 3, + [104019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 4, + ACTIONS(3377), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3191), 25, + ACTIONS(3375), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293869,16 +307464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87835] = 3, + [104057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 4, + ACTIONS(3617), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3831), 25, + ACTIONS(3615), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293904,16 +307499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87873] = 3, + [104095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 4, + ACTIONS(3621), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3149), 25, + ACTIONS(3619), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293939,16 +307534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87911] = 3, + [104133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3833), 4, + ACTIONS(3049), 4, sym__dedent, sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3835), 25, + ACTIONS(3047), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -293974,24 +307569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87949] = 3, + [104171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, + ACTIONS(3193), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3079), 25, + ACTIONS(3191), 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, @@ -294009,109 +307603,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [87987] = 18, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, + [104208] = 18, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6448), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, anon_sym_class, - ACTIONS(6450), 1, - anon_sym_ctypedef, - ACTIONS(6454), 1, - anon_sym_enum, - STATE(4071), 1, + ACTIONS(6621), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, sym__longness, - STATE(4355), 1, - sym_c_type, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(6452), 2, - anon_sym_struct, - anon_sym_union, - STATE(3949), 2, + STATE(4103), 2, + sym_class_definition, + sym_cvar_def, + STATE(4135), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(4578), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88055] = 3, + [104275] = 17, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6157), 1, + anon_sym_class, + ACTIONS(6163), 1, + anon_sym_enum, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4634), 1, + sym_c_type, 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, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, + ACTIONS(6161), 2, anon_sym_struct, anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88093] = 3, + [104340] = 4, + ACTIONS(6623), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 4, + ACTIONS(2929), 2, sym__dedent, - sym_string_start, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3631), 25, + ACTIONS(2931), 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, @@ -294129,24 +307735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88131] = 3, + [104379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3643), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3855), 25, + ACTIONS(3645), 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, @@ -294164,24 +307769,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88169] = 3, + [104416] = 3, + ACTIONS(4343), 1, + anon_sym_COLON, 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, + ACTIONS(6625), 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_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, @@ -294193,30 +307799,28 @@ 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, - [88207] = 3, + [104453] = 4, + ACTIONS(6627), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3085), 4, + ACTIONS(2829), 2, sym__dedent, - sym_string_start, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3087), 25, + ACTIONS(2831), 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, @@ -294234,24 +307838,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88245] = 3, + [104492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3123), 4, + ACTIONS(3893), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3125), 25, + ACTIONS(3895), 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, @@ -294269,74 +307872,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88283] = 18, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4618), 1, - anon_sym_pass, - ACTIONS(4632), 1, + [104529] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6456), 1, - sym__dedent, - STATE(4071), 1, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6629), 1, + anon_sym_COLON, + STATE(4306), 1, sym__signedness, - STATE(4313), 1, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, sym__longness, - STATE(4380), 1, - sym_c_type, - STATE(6793), 1, - sym_pass_statement, + STATE(4786), 1, + sym_operator_name, + STATE(5072), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(3886), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3958), 2, + STATE(1547), 2, + sym_class_definition, + sym_cvar_def, + STATE(4136), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(4578), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88351] = 3, + [104596] = 4, + ACTIONS(6631), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 4, + ACTIONS(2843), 2, sym__dedent, - sym_string_start, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3211), 25, + ACTIONS(2841), 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, @@ -294354,75 +307956,23 @@ static const uint16_t ts_small_parse_table[] = { 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(4038), 1, - sym_int_type, - STATE(4241), 1, - sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4783), 1, - sym_maybe_typed_name, + [104635] = 3, 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(3818), 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, - [88459] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3517), 4, + ACTIONS(3381), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3519), 25, + ACTIONS(3383), 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, @@ -294440,24 +307990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88497] = 3, + [104672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3521), 4, + ACTIONS(3385), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3523), 25, + ACTIONS(3387), 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, @@ -294475,67 +308024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88535] = 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(6462), 1, - anon_sym_from, - ACTIONS(6464), 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, + [104709] = 3, 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(3836), 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, - [88605] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2654), 3, + ACTIONS(3389), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2652), 26, - anon_sym_case, + ACTIONS(3391), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -294561,24 +308058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88643] = 3, + [104746] = 4, + ACTIONS(6633), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 4, + ACTIONS(2937), 2, sym__dedent, - sym_string_start, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3715), 25, + ACTIONS(2935), 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, @@ -294596,24 +308093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88681] = 3, + [104785] = 4, + ACTIONS(6635), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3093), 4, + ACTIONS(2987), 2, sym__dedent, - sym_string_start, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3095), 25, + ACTIONS(2985), 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, @@ -294631,24 +308128,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88719] = 3, + [104824] = 18, + ACTIONS(135), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6637), 1, + anon_sym_COLON, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5025), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 4, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1281), 2, + sym_class_definition, + sym_cvar_def, + STATE(4139), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [104891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3733), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3165), 25, + ACTIONS(3735), 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, @@ -294666,74 +308211,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88757] = 18, - ACTIONS(4614), 1, - sym_identifier, - 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(4313), 1, - sym__longness, - STATE(4380), 1, - sym_c_type, - STATE(6619), 1, - sym_pass_statement, + [104928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3737), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, - ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3833), 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [104965] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3741), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3743), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 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, - [88825] = 3, + [105002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 4, + ACTIONS(3745), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3831), 25, + ACTIONS(3747), 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, @@ -294751,16 +308313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88863] = 3, + [105039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2670), 3, + ACTIONS(3749), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2668), 26, - anon_sym_case, + ACTIONS(3751), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -294786,24 +308347,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88901] = 3, + [105076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 4, + ACTIONS(3745), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3195), 25, + ACTIONS(3747), 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, @@ -294821,24 +308381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [88939] = 3, + [105113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3745), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3747), 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, @@ -294856,81 +308415,61 @@ static const uint16_t ts_small_parse_table[] = { 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(6331), 1, + [105150] = 4, + ACTIONS(6639), 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(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(2875), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2877), 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(6341), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + anon_sym_long, 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, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [105189] = 18, ACTIONS(135), 1, anon_sym_class, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(4791), 1, + ACTIONS(4742), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6641), 1, anon_sym_COLON, - ACTIONS(6470), 1, - anon_sym_nogil, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4038), 1, + STATE(4363), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4430), 1, + STATE(4786), 1, sym_operator_name, - STATE(4718), 1, + STATE(5025), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -294941,43 +308480,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4658), 2, anon_sym_const, anon_sym_volatile, - STATE(1314), 2, + STATE(1303), 2, sym_class_definition, sym_cvar_def, - STATE(3945), 2, + STATE(4139), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89121] = 3, + [105256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 4, + ACTIONS(2997), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3153), 25, + ACTIONS(2995), 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, @@ -294995,25 +308533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89159] = 4, - ACTIONS(6472), 1, - anon_sym_SEMI, + [105293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 3, + ACTIONS(3821), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3257), 25, + ACTIONS(3823), 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, @@ -295031,24 +308567,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89199] = 3, + [105330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 4, + ACTIONS(3825), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3199), 25, + ACTIONS(3827), 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, @@ -295066,24 +308601,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89237] = 3, + [105367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 4, + ACTIONS(3829), 3, 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_extern, anon_sym_int, anon_sym_double, anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, anon_sym_char, @@ -295101,24 +308635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89275] = 3, + [105404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 4, + ACTIONS(3833), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3531), 25, + ACTIONS(3835), 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, @@ -295136,24 +308669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89313] = 3, + [105441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 4, + ACTIONS(3837), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3275), 25, + ACTIONS(3839), 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, @@ -295171,24 +308703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89351] = 3, + [105478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3101), 4, + ACTIONS(2997), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3103), 25, + ACTIONS(2995), 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, @@ -295206,24 +308737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89389] = 3, + [105515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3107), 4, + ACTIONS(3841), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3109), 25, + ACTIONS(3843), 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, @@ -295241,24 +308771,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89427] = 3, + [105552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 4, + ACTIONS(3825), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3113), 25, + ACTIONS(3827), 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, @@ -295276,24 +308805,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89465] = 3, + [105589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(3049), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3783), 25, + ACTIONS(3047), 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, @@ -295311,24 +308839,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89503] = 3, + [105626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3205), 4, + ACTIONS(2997), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3207), 25, + ACTIONS(2995), 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, @@ -295346,16 +308873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89541] = 3, + [105663] = 4, + ACTIONS(6643), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2664), 3, + ACTIONS(2963), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2666), 26, - anon_sym_case, + ACTIONS(2961), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295381,24 +308908,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89579] = 3, + [105702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 4, + ACTIONS(3073), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3117), 25, + ACTIONS(3071), 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, @@ -295416,24 +308942,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89617] = 3, + [105739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 4, + ACTIONS(3077), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3129), 25, + ACTIONS(3075), 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, @@ -295451,24 +308976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89655] = 3, + [105776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 4, + ACTIONS(3081), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3295), 25, + ACTIONS(3079), 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, @@ -295486,24 +309010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89693] = 3, + [105813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3439), 4, + ACTIONS(3085), 3, sym__dedent, - sym_string_start, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3441), 25, + ACTIONS(3083), 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, @@ -295521,15 +309044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89731] = 3, + [105850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 3, + ACTIONS(3089), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3739), 25, + ACTIONS(3087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295555,23 +309078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89768] = 3, + [105887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 3, + ACTIONS(3093), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4103), 25, + ACTIONS(3091), 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, @@ -295589,15 +309112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89805] = 3, + [105924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3521), 3, + ACTIONS(3097), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3523), 25, + ACTIONS(3095), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295623,72 +309146,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89842] = 18, - ACTIONS(135), 1, + [105961] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3101), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3099), 25, anon_sym_class, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, sym_identifier, - ACTIONS(6474), 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(4718), 1, - sym_maybe_typed_name, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [105998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3073), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3071), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1839), 2, - sym_class_definition, - sym_cvar_def, - STATE(3945), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(407), 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, + [106035] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3105), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3103), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 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, - [89909] = 3, + [106072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5174), 3, + ACTIONS(3109), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5176), 25, + ACTIONS(3107), 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, @@ -295706,15 +309282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89946] = 3, + [106109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3337), 3, + ACTIONS(3081), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3339), 25, + ACTIONS(3079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295740,64 +309316,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [89983] = 18, - ACTIONS(135), 1, + [106146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3111), 25, anon_sym_class, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, sym_identifier, - ACTIONS(6476), 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(4718), 1, - sym_maybe_typed_name, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [106183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3089), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3087), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1519), 2, - sym_class_definition, - sym_cvar_def, - STATE(3945), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(407), 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, + [106220] = 4, + ACTIONS(6645), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2955), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2957), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 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, - [90050] = 3, + [106259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 3, + ACTIONS(3181), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3179), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295823,15 +309453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90087] = 3, + [106296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 3, + ACTIONS(3185), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3639), 25, + ACTIONS(3183), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295857,63 +309487,49 @@ static const uint16_t ts_small_parse_table[] = { 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(4313), 1, - sym__longness, - STATE(4354), 1, - sym_c_type, + [106333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3189), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, - ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(6096), 2, + anon_sym_ctypedef, 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_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90189] = 3, + [106370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 3, + ACTIONS(3197), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3211), 25, + ACTIONS(3195), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295939,15 +309555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90226] = 3, + [106407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3557), 3, + ACTIONS(3201), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3559), 25, + ACTIONS(3199), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -295973,15 +309589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90263] = 3, + [106444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3561), 3, + ACTIONS(3205), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3563), 25, + ACTIONS(3203), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296007,15 +309623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90300] = 3, + [106481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3227), 3, + ACTIONS(3209), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3225), 25, + ACTIONS(3207), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296041,15 +309657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90337] = 3, + [106518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 3, + ACTIONS(3213), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3235), 25, + ACTIONS(3211), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296075,15 +309691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90374] = 3, + [106555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 3, + ACTIONS(3597), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3343), 25, + ACTIONS(3595), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296109,15 +309725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90411] = 3, + [106592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 3, + ACTIONS(3221), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3347), 25, + ACTIONS(3219), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296143,15 +309759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90448] = 3, + [106629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 3, + ACTIONS(3225), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3319), 25, + ACTIONS(3223), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296177,15 +309793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90485] = 3, + [106666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3349), 3, + ACTIONS(3185), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3351), 25, + ACTIONS(3183), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296211,15 +309827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90522] = 3, + [106703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3353), 3, + ACTIONS(3269), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3355), 25, + ACTIONS(3267), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296245,15 +309861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90559] = 3, + [106740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 3, + ACTIONS(3273), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3327), 25, + ACTIONS(3271), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296279,15 +309895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90596] = 3, + [106777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3357), 3, + ACTIONS(3277), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3359), 25, + ACTIONS(3275), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296313,23 +309929,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90633] = 3, + [106814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4139), 3, + ACTIONS(3281), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4137), 25, + ACTIONS(3279), 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, @@ -296347,15 +309963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90670] = 3, + [106851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 3, + ACTIONS(3285), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3335), 25, + ACTIONS(3283), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296381,16 +309997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90707] = 4, - ACTIONS(6478), 1, - anon_sym_COLON, + [106888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 2, + ACTIONS(3289), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2987), 25, + anon_sym_LPAREN, + ACTIONS(3287), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296416,15 +310031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90746] = 3, + [106925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 3, + ACTIONS(3293), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3141), 25, + ACTIONS(3291), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296450,15 +310065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90783] = 3, + [106962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 3, + ACTIONS(3297), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3145), 25, + ACTIONS(3295), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296484,15 +310099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90820] = 3, + [106999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 3, + ACTIONS(3301), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3149), 25, + ACTIONS(3299), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296518,23 +310133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90857] = 3, + [107036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4169), 3, + ACTIONS(3305), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4171), 25, + ACTIONS(3303), 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, @@ -296552,23 +310167,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90894] = 3, + [107073] = 18, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6647), 1, + anon_sym_COLON, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5044), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 3, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3715), 2, + sym_class_definition, + sym_cvar_def, + STATE(4137), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [107140] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6649), 1, + anon_sym_COLON, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5072), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1409), 2, + sym_class_definition, + sym_cvar_def, + STATE(4136), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [107207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3337), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(6480), 25, + ACTIONS(3335), 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, @@ -296586,15 +310299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90931] = 3, + [107244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3565), 3, + ACTIONS(3341), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3567), 25, + ACTIONS(3339), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296620,15 +310333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [90968] = 3, + [107281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3569), 3, + ACTIONS(3345), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3571), 25, + ACTIONS(3343), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296654,64 +310367,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91005] = 17, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_long, - ACTIONS(6406), 1, - anon_sym_class, - ACTIONS(6412), 1, - anon_sym_enum, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4388), 1, - sym_c_type, + [107318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3349), 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, - ACTIONS(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(6410), 2, + anon_sym_ctypedef, 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_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [107355] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3353), 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, - ACTIONS(4622), 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, - [91070] = 4, - ACTIONS(6482), 1, - anon_sym_COLON, + [107392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 2, + ACTIONS(3373), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2849), 25, + anon_sym_LPAREN, + ACTIONS(3371), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -296737,57 +310469,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91109] = 3, + [107429] = 18, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4618), 1, + anon_sym_class, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5044), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3573), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3575), 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(4658), 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(3776), 2, + sym_class_definition, + sym_cvar_def, + STATE(4137), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91146] = 3, + [107496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 3, + ACTIONS(4045), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3535), 25, + ACTIONS(4047), 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, @@ -296805,23 +310552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91183] = 3, + [107533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 3, + ACTIONS(4053), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3157), 25, + ACTIONS(4055), 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, @@ -296839,23 +310586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91220] = 3, + [107570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 3, + ACTIONS(3753), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3643), 25, + ACTIONS(3755), 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, @@ -296873,23 +310620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91257] = 3, + [107607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, + ACTIONS(4133), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3647), 25, + ACTIONS(4135), 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, @@ -296907,23 +310654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91294] = 3, + [107644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3933), 3, + ACTIONS(4157), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3935), 25, + ACTIONS(4159), 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, @@ -296941,23 +310688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91331] = 3, + [107681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 3, + ACTIONS(3981), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3651), 25, + ACTIONS(3983), 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, @@ -296975,63 +310722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91368] = 17, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_long, - ACTIONS(6448), 1, - anon_sym_class, - ACTIONS(6454), 1, - anon_sym_enum, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4355), 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(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, - 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, - [91433] = 3, + [107718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 3, + ACTIONS(2911), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3531), 25, + anon_sym_COLON, + ACTIONS(2913), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297057,64 +310756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91470] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, - sym_identifier, - ACTIONS(6484), 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(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(1821), 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, - [91537] = 3, + [107755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 3, + ACTIONS(3441), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3153), 25, + ACTIONS(3439), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297140,24 +310790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91574] = 4, - ACTIONS(6486), 1, - anon_sym_COLON, + [107792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3039), 2, + ACTIONS(3977), 3, sym__dedent, - anon_sym_SEMI, - ACTIONS(3041), 25, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(3979), 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, @@ -297175,15 +310824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91613] = 3, + [107829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3965), 3, + ACTIONS(3993), 3, sym__dedent, sym_string_start, anon_sym_LPAREN, - ACTIONS(3967), 25, + ACTIONS(3995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297209,15 +310858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91650] = 3, + [107866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 3, + ACTIONS(5183), 3, sym__dedent, sym_string_start, anon_sym_LPAREN, - ACTIONS(3257), 25, + ACTIONS(5185), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297243,15 +310892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91687] = 3, + [107903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4173), 3, + ACTIONS(5116), 3, sym__dedent, sym_string_start, anon_sym_LPAREN, - ACTIONS(4175), 25, + ACTIONS(5118), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297277,15 +310926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91724] = 3, + [107940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3653), 3, + ACTIONS(2851), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3655), 25, + anon_sym_COLON, + ACTIONS(2853), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297311,23 +310960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91761] = 3, + [107977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 3, + ACTIONS(3971), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3659), 25, + ACTIONS(3969), 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, @@ -297345,72 +310994,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91798] = 18, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4620), 1, - anon_sym_class, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, - sym_identifier, - ACTIONS(6488), 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(4744), 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(3513), 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, - [91865] = 3, + [108014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 3, + ACTIONS(3975), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(3841), 25, + ACTIONS(3973), 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, @@ -297428,15 +311028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91902] = 3, + [108051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 3, + ACTIONS(3145), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3113), 25, + ACTIONS(3147), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297462,15 +311062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91939] = 3, + [108088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 3, + ACTIONS(3247), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3141), 25, + ACTIONS(3249), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297496,64 +311096,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [91976] = 18, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, + [108125] = 17, + ACTIONS(4612), 1, sym_identifier, - ACTIONS(4793), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6171), 1, anon_sym_class, - ACTIONS(6490), 1, - anon_sym_COLON, - STATE(4025), 1, + ACTIONS(6175), 1, + anon_sym_enum, + STATE(4395), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4586), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4783), 1, - sym_maybe_typed_name, + STATE(4657), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - STATE(3805), 2, - sym_class_definition, - sym_cvar_def, - STATE(3942), 2, + ACTIONS(6173), 2, + anon_sym_struct, + anon_sym_union, + STATE(4134), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(407), 3, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92043] = 3, + [108190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 3, + ACTIONS(3489), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3535), 25, + ACTIONS(3487), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297579,65 +311178,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92080] = 18, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4620), 1, + [108227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3493), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(3491), 25, anon_sym_class, - ACTIONS(4658), 1, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym_operator, - ACTIONS(4791), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [108264] = 17, + ACTIONS(4612), 1, sym_identifier, - ACTIONS(6492), 1, - anon_sym_COLON, - STATE(4025), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6607), 1, + anon_sym_class, + ACTIONS(6613), 1, + anon_sym_enum, + STATE(4395), 1, sym__signedness, - STATE(4038), 1, - sym_int_type, - STATE(4241), 1, + STATE(4586), 1, sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4744), 1, - sym_maybe_typed_name, + STATE(4670), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + ACTIONS(4632), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, - sym_class_definition, - sym_cvar_def, - STATE(3944), 2, + ACTIONS(6611), 2, + anon_sym_struct, + anon_sym_union, + STATE(4134), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(407), 3, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(4620), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92147] = 4, - ACTIONS(6494), 1, - anon_sym_COLON, + [108329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(3529), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2855), 25, + anon_sym_LPAREN, + ACTIONS(3527), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297663,15 +311294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92186] = 3, + [108366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 3, + ACTIONS(3533), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3165), 25, + ACTIONS(3531), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297697,15 +311328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92223] = 3, + [108403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4069), 3, + ACTIONS(4737), 3, sym__dedent, sym_string_start, anon_sym_LPAREN, - ACTIONS(4071), 25, + ACTIONS(6653), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297731,15 +311362,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92260] = 3, + [108440] = 17, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6548), 1, + anon_sym_class, + ACTIONS(6554), 1, + anon_sym_enum, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4638), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(6552), 2, + anon_sym_struct, + anon_sym_union, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [108505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 3, + ACTIONS(3557), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3663), 25, + ACTIONS(3555), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297765,15 +311444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92297] = 3, + [108542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 3, + ACTIONS(3561), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3539), 25, + ACTIONS(3559), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297799,15 +311478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92334] = 3, + [108579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 3, + ACTIONS(3581), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3117), 25, + ACTIONS(3579), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297833,23 +311512,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92371] = 3, + [108616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 3, + ACTIONS(3585), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4271), 25, + ACTIONS(3583), 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, @@ -297867,15 +311546,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92408] = 3, + [108653] = 18, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_class, + ACTIONS(6655), 1, + anon_sym_COLON, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5019), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 3, + ACTIONS(409), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(411), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4083), 2, + sym_class_definition, + sym_cvar_def, + STATE(4135), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [108720] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3217), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3543), 25, + ACTIONS(3215), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297901,15 +311629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92445] = 3, + [108757] = 4, + ACTIONS(3753), 1, + sym__dedent, + ACTIONS(6657), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3667), 25, + ACTIONS(3755), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297935,15 +311663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92482] = 3, + [108795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3669), 3, + ACTIONS(3679), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3671), 25, + ACTIONS(3681), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -297969,15 +311696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92519] = 3, + [108831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 3, + ACTIONS(3683), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3603), 25, + ACTIONS(3685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298003,15 +311729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92556] = 3, + [108867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3605), 3, + ACTIONS(3117), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3607), 25, + ACTIONS(3115), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298037,15 +311762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92593] = 3, + [108903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 3, + ACTIONS(3121), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3631), 25, + ACTIONS(3119), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298071,15 +311795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92630] = 3, + [108939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 3, + ACTIONS(3125), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3675), 25, + ACTIONS(3123), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298105,15 +311828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92667] = 3, + [108975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 3, + ACTIONS(3129), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3385), 25, + ACTIONS(3127), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298139,63 +311861,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92704] = 17, - ACTIONS(4614), 1, + [109011] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3131), 25, + anon_sym_class, sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4632), 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(6001), 1, - anon_sym_class, - ACTIONS(6007), 1, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, anon_sym_enum, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4330), 1, - sym_c_type, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [109047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(3137), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3135), 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(4630), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(6005), 2, + anon_sym_ctypedef, 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_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [109083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3149), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 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, - [92769] = 3, + [109119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 3, + ACTIONS(3155), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3679), 25, + ACTIONS(3153), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298221,15 +311993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92806] = 3, + [109155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3545), 3, + ACTIONS(3159), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3547), 25, + ACTIONS(3157), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298255,16 +312026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92843] = 4, - ACTIONS(6496), 1, - anon_sym_COLON, + [109191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 2, + ACTIONS(3163), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2891), 25, + ACTIONS(3161), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298290,16 +312059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92882] = 4, - ACTIONS(6498), 1, - anon_sym_COLON, + [109227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2915), 2, + ACTIONS(3167), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2913), 25, + ACTIONS(3165), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298325,15 +312092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92921] = 3, + [109263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 3, + ACTIONS(3171), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3735), 25, + ACTIONS(3169), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298359,15 +312125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92958] = 3, + [109299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 3, + ACTIONS(3621), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3619), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298393,15 +312158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [92995] = 3, + [109335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2921), 3, + ACTIONS(3601), 2, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2919), 25, + ACTIONS(3599), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298427,15 +312191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93032] = 3, + [109371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3741), 3, + ACTIONS(3609), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3743), 25, + ACTIONS(3607), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298461,21 +312224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93069] = 3, - ACTIONS(4377), 1, - anon_sym_COLON, + [109407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6500), 27, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3815), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3817), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -298491,19 +312251,20 @@ 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, - [93106] = 3, + [109443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3745), 3, + ACTIONS(3845), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3747), 25, + ACTIONS(3847), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298529,64 +312290,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93143] = 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(6502), 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, + [109479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3765), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3767), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3831), 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_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93210] = 3, + [109515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3589), 3, + ACTIONS(3769), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3591), 25, + ACTIONS(3771), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298612,23 +312356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93247] = 3, + [109551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 3, + ACTIONS(3773), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(4275), 25, + anon_sym_SEMI, + ACTIONS(3775), 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, @@ -298646,16 +312389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93284] = 4, - ACTIONS(6504), 1, - anon_sym_COLON, + [109587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 2, + ACTIONS(3777), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2953), 25, + ACTIONS(3779), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298681,15 +312422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93323] = 3, + [109623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 3, + ACTIONS(3229), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3731), 25, + ACTIONS(3227), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298715,15 +312455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93360] = 3, + [109659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 3, + ACTIONS(3233), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3767), 25, + ACTIONS(3231), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298749,15 +312488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93397] = 3, + [109695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3825), 3, + ACTIONS(3237), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3827), 25, + ACTIONS(3235), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298783,15 +312521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93434] = 3, + [109731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 3, + ACTIONS(3241), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3831), 25, + ACTIONS(3239), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298817,15 +312554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93471] = 3, + [109767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3833), 3, + ACTIONS(3245), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3835), 25, + ACTIONS(3243), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298851,15 +312587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93508] = 3, + [109803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 3, + ACTIONS(3253), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3831), 25, + ACTIONS(3251), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298885,15 +312620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93545] = 3, + [109839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 3, + ACTIONS(3257), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3831), 25, + ACTIONS(3255), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298919,15 +312653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93582] = 3, + [109875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3749), 3, + ACTIONS(3261), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3751), 25, + ACTIONS(3259), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298953,15 +312686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93619] = 3, + [109911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3549), 3, + ACTIONS(3265), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3551), 25, + ACTIONS(3263), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -298987,15 +312719,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93656] = 3, + [109947] = 16, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6659), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4045), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [110009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 3, + ACTIONS(3791), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3137), 25, + ACTIONS(3793), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299021,15 +312798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93693] = 3, + [110045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 3, + ACTIONS(3795), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3303), 25, + ACTIONS(3797), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299055,15 +312831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93730] = 3, + [110081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 3, + ACTIONS(3799), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3133), 25, + ACTIONS(3801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299089,15 +312864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93767] = 3, + [110117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 3, + ACTIONS(3613), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3307), 25, + ACTIONS(3611), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299123,72 +312897,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93804] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(4791), 1, - sym_identifier, - ACTIONS(6506), 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, + [110153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(3803), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3805), 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(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(4660), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1268), 2, - sym_class_definition, - sym_cvar_def, - STATE(3947), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(407), 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, + [110189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3807), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3809), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 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, - [93871] = 3, + [110225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 3, + ACTIONS(3811), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(4279), 25, + anon_sym_SEMI, + ACTIONS(3813), 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, @@ -299206,15 +312996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93908] = 3, + [110261] = 4, + ACTIONS(3785), 1, + sym__dedent, + ACTIONS(6661), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3319), 25, + ACTIONS(3787), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299240,15 +313030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93945] = 3, + [110299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2961), 3, + ACTIONS(3309), 2, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2959), 25, + ACTIONS(3307), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299274,15 +313063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [93982] = 3, + [110335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, + ACTIONS(3313), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3519), 25, + ACTIONS(3311), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299308,16 +313096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94019] = 4, - ACTIONS(6508), 1, - anon_sym_COLON, + [110371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2949), 2, + ACTIONS(3317), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2947), 25, + ACTIONS(3315), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299343,15 +313129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94058] = 3, + [110407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 3, + ACTIONS(3321), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3555), 25, + ACTIONS(3319), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299377,15 +313162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94095] = 3, + [110443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 3, + ACTIONS(3897), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3323), 25, + ACTIONS(3899), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299411,15 +313195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94132] = 3, + [110479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3785), 3, + ACTIONS(3325), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3787), 25, + ACTIONS(3323), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299445,14 +313228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94169] = 3, + [110515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 3, + ACTIONS(3329), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, ACTIONS(3327), 25, anon_sym_class, sym_identifier, @@ -299479,14 +313261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94206] = 3, + [110551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 3, + ACTIONS(3333), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, ACTIONS(3331), 25, anon_sym_class, sym_identifier, @@ -299513,15 +313294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94243] = 3, + [110587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 3, + ACTIONS(3941), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(3335), 25, + ACTIONS(3943), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299547,23 +313327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94280] = 3, + [110623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5251), 3, + ACTIONS(3945), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(5253), 25, + anon_sym_SEMI, + ACTIONS(3947), 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, @@ -299581,14 +313360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94317] = 3, + [110659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 2, + ACTIONS(3949), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3199), 25, + ACTIONS(3951), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299614,21 +313393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94353] = 3, - ACTIONS(4377), 1, - anon_sym_COLON, + [110695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6500), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3953), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3955), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -299640,21 +313416,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, - [94389] = 3, + [110731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3435), 2, + ACTIONS(3357), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3437), 25, + ACTIONS(3355), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299680,14 +313459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94425] = 3, + [110767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3443), 2, + ACTIONS(3361), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3445), 25, + ACTIONS(3359), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299713,14 +313492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94461] = 3, + [110803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3957), 2, + ACTIONS(3365), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3959), 25, + ACTIONS(3363), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299746,60 +313525,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94497] = 16, - ACTIONS(4614), 1, + [110839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3369), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3367), 25, + anon_sym_class, sym_identifier, - ACTIONS(4616), 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, + [110875] = 16, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6666), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, + ACTIONS(6681), 1, anon_sym_long, - ACTIONS(6510), 1, + ACTIONS(6687), 1, sym__dedent, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(4380), 1, + STATE(4667), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(6675), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(6678), 2, anon_sym_char, anon_sym_short, - ACTIONS(4634), 2, + ACTIONS(6684), 2, anon_sym_const, anon_sym_volatile, - STATE(3848), 2, + STATE(4045), 2, sym_cvar_decl, aux_sym_struct_suite_repeat1, - STATE(3958), 2, + STATE(4167), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(4578), 2, + STATE(4856), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(6672), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(4622), 5, + ACTIONS(6669), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94559] = 3, + [110937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3961), 2, + ACTIONS(3377), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3963), 25, + ACTIONS(3375), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299825,80 +313637,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94595] = 3, + [110973] = 16, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6689), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3083), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3081), 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(4626), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4632), 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, - [94631] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3121), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3119), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(4045), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 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(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94667] = 3, + [111035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3089), 2, + ACTIONS(3925), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3091), 25, + ACTIONS(3923), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299924,14 +313716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94703] = 3, + [111071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 2, + ACTIONS(3001), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3099), 25, + ACTIONS(2999), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299957,14 +313749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94739] = 3, + [111107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3215), 2, + ACTIONS(3617), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3213), 25, + ACTIONS(3615), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -299990,14 +313782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94775] = 3, + [111143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 2, + ACTIONS(3401), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3221), 25, + ACTIONS(3399), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300023,14 +313815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94811] = 3, + [111179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3241), 2, + ACTIONS(3405), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3239), 25, + ACTIONS(3403), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300056,14 +313848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94847] = 3, + [111215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3245), 2, + ACTIONS(3409), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3243), 25, + ACTIONS(3407), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300089,14 +313881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94883] = 3, + [111251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 2, + ACTIONS(3009), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3169), 25, + ACTIONS(3007), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300122,14 +313914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94919] = 3, + [111287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 2, + ACTIONS(3013), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3183), 25, + ACTIONS(3011), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300155,14 +313947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94955] = 3, + [111323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 2, + ACTIONS(3017), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3065), 25, + ACTIONS(3015), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300188,14 +313980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [94991] = 3, + [111359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 2, + ACTIONS(3413), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3075), 25, + ACTIONS(3411), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300221,14 +314013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95027] = 3, + [111395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 2, + ACTIONS(3417), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3079), 25, + ACTIONS(3415), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300254,14 +314046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95063] = 3, + [111431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3093), 2, + ACTIONS(3421), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3095), 25, + ACTIONS(3419), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300287,14 +314079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95099] = 3, + [111467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3101), 2, + ACTIONS(3425), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3103), 25, + ACTIONS(3423), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300320,14 +314112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95135] = 3, + [111503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 2, + ACTIONS(3021), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3187), 25, + ACTIONS(3019), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300353,14 +314145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95171] = 3, + [111539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3107), 2, + ACTIONS(3429), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3109), 25, + ACTIONS(3427), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300386,14 +314178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95207] = 3, + [111575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 2, + ACTIONS(3433), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3191), 25, + ACTIONS(3431), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300419,14 +314211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95243] = 3, + [111611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 2, + ACTIONS(3437), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3195), 25, + ACTIONS(3435), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300452,14 +314244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95279] = 3, + [111647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3205), 2, + ACTIONS(3025), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3207), 25, + ACTIONS(3023), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300485,14 +314277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95315] = 3, + [111683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 2, + ACTIONS(3029), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3129), 25, + ACTIONS(3027), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300518,14 +314310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95351] = 3, + [111719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 2, + ACTIONS(3053), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3249), 25, + ACTIONS(3051), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300551,14 +314343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95387] = 3, + [111755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, + ACTIONS(3057), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3579), 25, + ACTIONS(3055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300584,14 +314376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95423] = 3, + [111791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 2, + ACTIONS(3445), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3287), 25, + ACTIONS(3443), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300617,14 +314409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95459] = 3, + [111827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 2, + ACTIONS(3449), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3291), 25, + ACTIONS(3447), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300650,60 +314442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95495] = 16, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - 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, + [111863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 2, + ACTIONS(3453), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3299), 25, + ACTIONS(3451), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300729,14 +314475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95593] = 3, + [111899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 2, + ACTIONS(3061), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3315), 25, + ACTIONS(3059), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300762,14 +314508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95629] = 3, + [111935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 2, + ACTIONS(3003), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3061), 25, + ACTIONS(3005), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300795,14 +314541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95665] = 3, + [111971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3085), 2, + ACTIONS(3031), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3087), 25, + ACTIONS(3033), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300828,14 +314574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95701] = 3, + [112007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3123), 2, + ACTIONS(3035), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3125), 25, + ACTIONS(3037), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300861,60 +314607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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, + [112043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 2, + ACTIONS(3039), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3583), 25, + ACTIONS(3041), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300940,14 +314640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95835] = 3, + [112079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(3141), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3587), 25, + ACTIONS(3143), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -300973,14 +314673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95871] = 3, + [112115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 2, + ACTIONS(3065), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3595), 25, + ACTIONS(3063), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301006,14 +314706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95907] = 3, + [112151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 2, + ACTIONS(3069), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3599), 25, + ACTIONS(3067), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301039,14 +314739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95943] = 3, + [112187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, + ACTIONS(3539), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3611), 25, + ACTIONS(3541), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301072,14 +314772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [95979] = 3, + [112223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 2, + ACTIONS(3623), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3499), 25, + ACTIONS(3625), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301105,18 +314805,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96015] = 3, + [112259] = 3, + ACTIONS(4343), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3501), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3503), 25, + ACTIONS(6625), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, anon_sym_class, sym_identifier, + anon_sym_await, anon_sym_api, - anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -301128,24 +314831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, anon_sym_struct, anon_sym_union, anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96051] = 3, + [112295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3511), 2, + ACTIONS(3457), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3513), 25, + ACTIONS(3455), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301171,60 +314871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [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, + [112331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(3461), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3627), 25, + ACTIONS(3459), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301250,14 +314904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96185] = 3, + [112367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3633), 2, + ACTIONS(3465), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3635), 25, + ACTIONS(3463), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301283,14 +314937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96221] = 3, + [112403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 2, + ACTIONS(3469), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3615), 25, + ACTIONS(3467), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301316,14 +314970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96257] = 3, + [112439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3617), 2, + ACTIONS(3473), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3619), 25, + ACTIONS(3471), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301349,14 +315003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96293] = 3, + [112475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3721), 2, + ACTIONS(3477), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3723), 25, + ACTIONS(3475), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301382,14 +315036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96329] = 3, + [112511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3725), 2, + ACTIONS(3481), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3727), 25, + ACTIONS(3479), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301415,14 +315069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96365] = 3, + [112547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3773), 2, + ACTIONS(3485), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3775), 25, + ACTIONS(3483), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301448,14 +315102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96401] = 3, + [112583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 2, + ACTIONS(3497), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3779), 25, + ACTIONS(3495), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301481,14 +315135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96437] = 3, + [112619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3793), 2, + ACTIONS(3501), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3795), 25, + ACTIONS(3499), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301514,14 +315168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96473] = 3, + [112655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 2, + ACTIONS(3505), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3799), 25, + ACTIONS(3503), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301547,14 +315201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96509] = 3, + [112691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3621), 2, + ACTIONS(3509), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3623), 25, + ACTIONS(3507), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301580,14 +315234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96545] = 3, + [112727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 2, + ACTIONS(3513), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3703), 25, + ACTIONS(3511), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301613,14 +315267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96581] = 3, + [112763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, + ACTIONS(3517), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3923), 25, + ACTIONS(3515), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301646,14 +315300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96617] = 3, + [112799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3943), 2, + ACTIONS(3521), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3945), 25, + ACTIONS(3519), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301679,14 +315333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96653] = 3, + [112835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3953), 2, + ACTIONS(3525), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3955), 25, + ACTIONS(3523), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301712,14 +315366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96689] = 3, + [112871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 2, + ACTIONS(3653), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3203), 25, + ACTIONS(3655), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301745,14 +315399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96725] = 3, + [112907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 2, + ACTIONS(3537), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3283), 25, + ACTIONS(3535), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301778,14 +315432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96761] = 3, + [112943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 2, + ACTIONS(3663), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3901), 25, + ACTIONS(3665), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301811,18 +315465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96797] = 3, + [112979] = 3, + ACTIONS(4343), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3253), 25, + ACTIONS(6625), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, anon_sym_class, sym_identifier, + anon_sym_await, anon_sym_api, - anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -301834,25 +315491,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, anon_sym_struct, anon_sym_union, anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96833] = 4, - ACTIONS(3805), 1, - sym__dedent, - ACTIONS(6542), 1, - anon_sym_SEMI, + [113015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 25, + ACTIONS(3545), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3543), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301878,14 +315531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96871] = 3, + [113051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 2, + ACTIONS(3667), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3263), 25, + ACTIONS(3669), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301911,14 +315564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96907] = 3, + [113087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 2, + ACTIONS(3549), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3267), 25, + ACTIONS(3547), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301944,14 +315597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96943] = 3, + [113123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 2, + ACTIONS(3553), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3279), 25, + ACTIONS(3551), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -301977,14 +315630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [96979] = 3, + [113159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3361), 2, + ACTIONS(3671), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3363), 25, + ACTIONS(3673), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302010,14 +315663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97015] = 3, + [113195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3365), 2, + ACTIONS(3565), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3367), 25, + ACTIONS(3563), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302043,14 +315696,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97051] = 3, + [113231] = 16, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6691), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3369), 2, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4045), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [113293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3569), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3371), 25, + ACTIONS(3567), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302076,14 +315775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97087] = 3, + [113329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3373), 2, + ACTIONS(3573), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3375), 25, + ACTIONS(3571), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302109,14 +315808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97123] = 3, + [113365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3377), 2, + ACTIONS(3577), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3379), 25, + ACTIONS(3575), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302142,14 +315841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97159] = 3, + [113401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 2, + ACTIONS(3675), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3683), 25, + ACTIONS(3677), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302175,21 +315874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97195] = 3, - ACTIONS(4377), 1, - anon_sym_COLON, + [113437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6500), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3589), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(3587), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -302201,21 +315897,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, - [97231] = 3, + [113473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3685), 2, + ACTIONS(3593), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3687), 25, + ACTIONS(3591), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302241,14 +315940,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97267] = 3, + [113509] = 16, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6693), 1, + sym__dedent, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4667), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4632), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4045), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(4167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [113571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3689), 2, + ACTIONS(3605), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(3691), 25, + ACTIONS(3603), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302274,14 +316019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97303] = 3, + [113607] = 3, + ACTIONS(4045), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3693), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3695), 25, + ACTIONS(4047), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302307,14 +316051,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97339] = 3, + [113642] = 8, + ACTIONS(4941), 1, + sym_c_integer_signedness, + ACTIONS(4943), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6695), 1, + aux_sym_integer_token1, + STATE(3074), 1, + sym_c_integer_type, + STATE(4131), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4844), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [113687] = 8, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6697), 1, + aux_sym_integer_token1, + STATE(3132), 1, + sym_c_integer_type, + STATE(4132), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4844), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [113732] = 3, + ACTIONS(4133), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3697), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3699), 25, + ACTIONS(4135), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302340,14 +316157,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97375] = 3, + [113767] = 8, + ACTIONS(4872), 1, + sym_c_integer_signedness, + ACTIONS(4874), 1, + aux_sym_c_integer_type_token1, + ACTIONS(6699), 1, + aux_sym_integer_token1, + STATE(2866), 1, + sym_c_integer_type, + STATE(4133), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4844), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [113812] = 3, + ACTIONS(3977), 1, sym__dedent, - anon_sym_SEMI, - ACTIONS(3707), 25, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3979), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302373,14 +316226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97411] = 3, + [113847] = 3, + ACTIONS(3993), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3719), 25, + ACTIONS(3995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302406,14 +316258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97447] = 3, + [113882] = 3, + ACTIONS(4053), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3055), 25, + ACTIONS(4055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302439,60 +316290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97483] = 16, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_long, - ACTIONS(6544), 1, + [113917] = 3, + ACTIONS(3975), 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, - [97545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3381), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3383), 25, + ACTIONS(3973), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302518,14 +316322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97581] = 3, + [113952] = 3, + ACTIONS(3971), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3415), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3417), 25, + ACTIONS(3969), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302551,14 +316354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97617] = 3, + [113987] = 3, + ACTIONS(4157), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3419), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3421), 25, + ACTIONS(4159), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302584,14 +316386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97653] = 3, + [114022] = 3, + ACTIONS(3981), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3755), 25, + ACTIONS(3983), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302617,14 +316418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97689] = 3, + [114057] = 3, + ACTIONS(3753), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3759), 25, + ACTIONS(3755), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -302650,19 +316450,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97725] = 4, - ACTIONS(3255), 1, - sym__dedent, - ACTIONS(6546), 1, - anon_sym_SEMI, + [114092] = 5, + ACTIONS(6701), 1, + aux_sym_integer_token1, + STATE(4131), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4876), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_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, + anon_sym_by, + [114130] = 5, + ACTIONS(6704), 1, + aux_sym_integer_token1, + STATE(4132), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4876), 21, + anon_sym_DOT, + anon_sym_LPAREN, + 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_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, + anon_sym_by, + [114168] = 5, + ACTIONS(6707), 1, + aux_sym_integer_token1, + STATE(4133), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4876), 21, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + 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, + anon_sym_by, + [114206] = 5, + ACTIONS(6509), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 25, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(6710), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(6507), 17, anon_sym_class, sym_identifier, - anon_sym_api, - anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -302678,1502 +316582,2507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + [114244] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6607), 1, + anon_sym_class, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5030), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97763] = 3, + [114304] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6157), 1, + anon_sym_class, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5076), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3395), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3397), 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(4658), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [114364] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6548), 1, + anon_sym_class, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5038), 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(4658), 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(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97799] = 3, + [114424] = 20, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(6717), 1, + anon_sym_RPAREN, + ACTIONS(6719), 1, + anon_sym_DOT_DOT_DOT, + STATE(4317), 1, + sym_int_type, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(4606), 1, + sym_function_pointer_type, + STATE(4737), 1, + sym_operator_name, + STATE(6021), 1, + sym_maybe_typed_name, + STATE(7255), 1, + sym__typedargslist, + STATE(7311), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3763), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6721), 2, + anon_sym_const, + anon_sym_volatile, + STATE(6281), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, + [114492] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6171), 1, + anon_sym_class, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5069), 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(4658), 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(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97835] = 3, + [114552] = 16, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_ctypedef, + STATE(4306), 1, + sym__signedness, + STATE(4363), 1, + sym_int_type, + STATE(4534), 1, + sym__longness, + STATE(4786), 1, + sym_operator_name, + STATE(5030), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3815), 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(4658), 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(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [97871] = 3, + [114612] = 20, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6328), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(6723), 1, + anon_sym_RPAREN, + STATE(4317), 1, + sym_int_type, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(4606), 1, + sym_function_pointer_type, + STATE(4737), 1, + sym_operator_name, + STATE(6021), 1, + sym_maybe_typed_name, + STATE(7167), 1, + sym__typedargslist, + STATE(7311), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6721), 2, + anon_sym_const, + anon_sym_volatile, + STATE(6281), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [114680] = 7, + ACTIONS(6725), 1, + anon_sym_as, + ACTIONS(6727), 1, + anon_sym_if, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6038), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [114721] = 7, + ACTIONS(6733), 1, + anon_sym_as, + ACTIONS(6735), 1, + anon_sym_if, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6026), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [114762] = 7, + ACTIONS(6733), 1, + anon_sym_as, + ACTIONS(6735), 1, + anon_sym_if, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6038), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [114803] = 7, + ACTIONS(6733), 1, + anon_sym_as, + ACTIONS(6735), 1, + anon_sym_if, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6051), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [114844] = 6, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [114883] = 6, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [114922] = 7, + ACTIONS(6725), 1, + anon_sym_as, + ACTIONS(6727), 1, + anon_sym_if, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6030), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6026), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [114963] = 6, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, + ACTIONS(6747), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6015), 17, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [115002] = 5, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6007), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [115039] = 4, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 19, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [115074] = 7, + ACTIONS(6725), 1, + anon_sym_as, + ACTIONS(6727), 1, + anon_sym_if, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6051), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6049), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [115115] = 6, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, + ACTIONS(6750), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6015), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115154] = 6, + ACTIONS(6753), 1, + anon_sym_as, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6015), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115193] = 5, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6007), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115230] = 5, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6007), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115267] = 4, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5354), 20, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115302] = 7, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(6760), 1, + anon_sym_as, + ACTIONS(6762), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6026), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115343] = 6, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(6760), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115382] = 6, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(6760), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115421] = 4, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5356), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5354), 20, + anon_sym_DOT, + anon_sym_LPAREN, + 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_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115456] = 7, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(6760), 1, + anon_sym_as, + ACTIONS(6762), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6038), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115497] = 7, + ACTIONS(6756), 1, + anon_sym_and, + ACTIONS(6758), 1, + anon_sym_or, + ACTIONS(6760), 1, + anon_sym_as, + ACTIONS(6762), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3839), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3837), 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(6051), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115538] = 19, + ACTIONS(1620), 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, - [97907] = 3, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, + anon_sym_RPAREN, + ACTIONS(6766), 1, + anon_sym_DOT_DOT_DOT, + STATE(4317), 1, + sym_int_type, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(4606), 1, + sym_function_pointer_type, + STATE(4737), 1, + sym_operator_name, + STATE(6021), 1, + sym_maybe_typed_name, + STATE(7311), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3769), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3771), 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(1616), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6721), 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, - [97943] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3399), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3401), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(6677), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1612), 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, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [97979] = 3, + [115603] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5047), 1, + anon_sym_is, + ACTIONS(5567), 1, + anon_sym_EQ, + STATE(4168), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 2, - sym__dedent, + ACTIONS(5049), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2269), 2, + sym__not_in, + sym__is_not, + ACTIONS(5033), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 10, + sym__newline, anon_sym_SEMI, - ACTIONS(3405), 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, - [98015] = 3, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [115648] = 7, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(6768), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3409), 25, - anon_sym_class, + ACTIONS(6030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6026), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115689] = 14, + ACTIONS(4612), 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(4614), 1, + anon_sym_LPAREN, + ACTIONS(4630), 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, - [98051] = 3, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(4670), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3413), 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(4626), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4632), 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, - [98087] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3423), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3425), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(4134), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(4856), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 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(4620), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [98123] = 3, + [115744] = 9, + ACTIONS(5551), 1, + anon_sym_EQ, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5559), 1, + anon_sym_is, + STATE(4168), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3439), 2, - sym__dedent, + ACTIONS(5562), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2269), 2, + sym__not_in, + sym__is_not, + ACTIONS(5553), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 10, + sym__newline, anon_sym_SEMI, - ACTIONS(3441), 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, - [98159] = 3, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [115789] = 7, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(6768), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3429), 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, - [98195] = 3, + ACTIONS(6051), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115830] = 6, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(6770), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3845), 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(6020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6015), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115869] = 19, + ACTIONS(1620), 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, - [98231] = 3, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6713), 1, + sym_identifier, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(6773), 1, + anon_sym_RPAREN, + ACTIONS(6775), 1, + anon_sym_DOT_DOT_DOT, + STATE(4317), 1, + sym_int_type, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(4606), 1, + sym_function_pointer_type, + STATE(4737), 1, + sym_operator_name, + STATE(6021), 1, + sym_maybe_typed_name, + STATE(7311), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3271), 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(1616), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(6721), 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, - [98267] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3273), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3275), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(6677), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1612), 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, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [98303] = 3, + [115934] = 5, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3295), 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, - [98339] = 3, + ACTIONS(6009), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6007), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [115971] = 6, + ACTIONS(6733), 1, + anon_sym_as, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3311), 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, - [98375] = 3, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116010] = 6, + ACTIONS(6733), 1, + anon_sym_as, + ACTIONS(6737), 1, + anon_sym_and, + ACTIONS(6739), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3433), 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, - [98411] = 3, + ACTIONS(5621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 19, + anon_sym_DOT, + anon_sym_LPAREN, + 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_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116049] = 4, + ACTIONS(6743), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3791), 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, - [98447] = 3, + ACTIONS(5356), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5354), 20, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116084] = 7, + ACTIONS(6725), 1, + anon_sym_as, + ACTIONS(6727), 1, + anon_sym_if, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3527), 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, - [98483] = 3, + ACTIONS(5664), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5662), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116125] = 7, + ACTIONS(6725), 1, + anon_sym_as, + ACTIONS(6727), 1, + anon_sym_if, + ACTIONS(6729), 1, + anon_sym_and, + ACTIONS(6731), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3715), 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, - [98519] = 3, + ACTIONS(5621), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116166] = 7, + ACTIONS(6741), 1, + anon_sym_as, + ACTIONS(6743), 1, + anon_sym_and, + ACTIONS(6745), 1, + anon_sym_or, + ACTIONS(6768), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3783), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, + ACTIONS(6042), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6038), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_GT, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116207] = 13, + ACTIONS(4408), 1, + anon_sym_SLASH, + ACTIONS(4418), 1, + anon_sym_COMMA, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 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, - [98555] = 3, + STATE(4574), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3855), 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, - [98591] = 3, + ACTIONS(4401), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4397), 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, + [116260] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7180), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3859), 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, - [98627] = 3, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [116318] = 11, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3863), 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, - [98663] = 3, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6799), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 8, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_by, + [116366] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5839), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5837), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + 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, + anon_sym_by, + [116408] = 15, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, + ACTIONS(6819), 1, + anon_sym_PIPE, + ACTIONS(6821), 1, + anon_sym_AMP, + ACTIONS(6823), 1, + anon_sym_CARET, + ACTIONS(6825), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3867), 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, - [98699] = 3, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6809), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6811), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [116464] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3873), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3871), 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, - [98735] = 3, + ACTIONS(5839), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5837), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [116506] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3877), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3875), 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, - [98771] = 3, + ACTIONS(5747), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5745), 15, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [116548] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3711), 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, - [98807] = 3, + ACTIONS(5747), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5745), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + 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, + anon_sym_by, + [116590] = 15, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, + ACTIONS(6819), 1, + anon_sym_PIPE, + ACTIONS(6821), 1, + anon_sym_AMP, + ACTIONS(6823), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3879), 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, - [98843] = 3, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6809), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6829), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [116646] = 15, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, + ACTIONS(6841), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_CARET, + ACTIONS(6847), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3883), 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, - [98879] = 3, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6835), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6829), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [116702] = 5, + ACTIONS(6849), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3887), 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, - [98915] = 3, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116738] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3891), 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, - [98951] = 3, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [116780] = 10, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3905), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3903), 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, - [98987] = 3, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 10, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116826] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3909), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3907), 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, - [99023] = 3, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [116868] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3913), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3911), 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, - [99059] = 3, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [116910] = 10, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3917), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3915), 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, - [99095] = 3, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 10, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [116956] = 9, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3921), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3919), 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, - [99131] = 3, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 12, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [117000] = 13, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, + ACTIONS(6821), 1, + anon_sym_AMP, + ACTIONS(6823), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(3853), 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, - [99167] = 3, - ACTIONS(4173), 1, - sym__dedent, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6809), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 6, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_by, + [117052] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4175), 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, - [99202] = 3, - ACTIONS(3965), 1, - sym__dedent, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [117094] = 12, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, + ACTIONS(6823), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 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, - [99237] = 3, - ACTIONS(4139), 1, - sym__dedent, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6809), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_AMP, + anon_sym_by, + [117144] = 9, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4137), 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, - [99272] = 3, - ACTIONS(4169), 1, - sym__dedent, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 12, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [117188] = 8, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4171), 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, - [99307] = 3, - ACTIONS(4269), 1, - sym__dedent, + ACTIONS(5839), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5837), 15, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [117230] = 8, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4271), 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, - [99342] = 3, - ACTIONS(4273), 1, - sym__dedent, + ACTIONS(5747), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5745), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + 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, + anon_sym_by, + [117272] = 13, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, + ACTIONS(6843), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4275), 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, - [99377] = 3, - ACTIONS(4069), 1, - sym__dedent, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6835), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_by, + [117324] = 11, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_LPAREN, + ACTIONS(4961), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6807), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6809), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6817), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2945), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6815), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 8, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_by, + [117372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4071), 25, + ACTIONS(5183), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + ACTIONS(5185), 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, @@ -304185,59 +319094,93 @@ 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, - [99412] = 3, - ACTIONS(3255), 1, - sym__dedent, + [117404] = 12, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, + ACTIONS(6845), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 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, - [99447] = 3, - ACTIONS(4101), 1, - sym__dedent, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6835), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_by, + [117454] = 5, + ACTIONS(6851), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [117490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4103), 25, + ACTIONS(5116), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + ACTIONS(5118), 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, @@ -304249,27 +319192,131 @@ 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, - [99482] = 3, - ACTIONS(4277), 1, - sym__dedent, + [117522] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + 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, + anon_sym_by, + [117564] = 10, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 10, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [117610] = 15, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, + ACTIONS(6841), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_CARET, + ACTIONS(6853), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6835), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6811), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [117666] = 3, + ACTIONS(4343), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4279), 25, + ACTIONS(6625), 22, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -304285,80 +319332,1128 @@ 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, - [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, + [117698] = 8, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 15, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + 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, + anon_sym_by, + [117740] = 9, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 12, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [117784] = 13, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(6855), 1, + anon_sym_AMP, + ACTIONS(6857), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6799), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 6, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_by, + [117836] = 11, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5165), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6833), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6835), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6839), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3052), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 8, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_by, + [117884] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7124), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [117942] = 15, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(6855), 1, + anon_sym_AMP, + ACTIONS(6857), 1, + anon_sym_CARET, + ACTIONS(6859), 1, + anon_sym_PIPE, + ACTIONS(6861), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6799), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6811), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [117998] = 15, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(6855), 1, + anon_sym_AMP, + ACTIONS(6857), 1, + anon_sym_CARET, + ACTIONS(6859), 1, + anon_sym_PIPE, + ACTIONS(6863), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6799), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(6829), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [118054] = 12, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(5243), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR_STAR, + ACTIONS(6857), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6797), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6799), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6805), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3076), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6803), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_by, + [118104] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7202), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118162] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7262), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118220] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7270), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118278] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7275), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118336] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7282), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118394] = 5, + ACTIONS(6865), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118430] = 5, + ACTIONS(6867), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118466] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6787), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, + STATE(7109), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [118524] = 12, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118573] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(4975), 1, + anon_sym_is, + ACTIONS(5567), 1, + anon_sym_as, + STATE(4261), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4977), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2329), 2, + sym__not_in, + sym__is_not, + ACTIONS(4959), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 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, + [118616] = 7, + ACTIONS(6869), 1, + anon_sym_as, + ACTIONS(6871), 1, + anon_sym_if, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6026), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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, + anon_sym_by, + [118655] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4599), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4594), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118688] = 6, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(6877), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6015), 17, + anon_sym_DOT, + anon_sym_LPAREN, + 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, + anon_sym_by, + [118725] = 5, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6009), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6007), 18, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [118760] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4408), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4397), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118793] = 7, + ACTIONS(6869), 1, + anon_sym_as, + ACTIONS(6871), 1, + anon_sym_if, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6042), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6038), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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, + anon_sym_by, + [118832] = 7, + ACTIONS(6869), 1, + anon_sym_as, + ACTIONS(6871), 1, + anon_sym_if, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6051), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + 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, + anon_sym_by, + [118871] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4566), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4564), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4559), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118904] = 9, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5422), 1, + anon_sym_is, + ACTIONS(5567), 1, + anon_sym_EQ, STATE(4241), 1, - sym__longness, - STATE(4430), 1, - sym_operator_name, - STATE(4785), 1, - sym_maybe_typed_name, + aux_sym_comparison_operator_repeat1, 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, - [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(5424), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5408), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 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, + [118947] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1090), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1059), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1057), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118980] = 7, + ACTIONS(6880), 1, + anon_sym_as, + ACTIONS(6882), 1, + anon_sym_if, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5662), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + 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, + [119019] = 9, + ACTIONS(5551), 1, + anon_sym_EQ, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5970), 1, + anon_sym_is, + STATE(4241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5973), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym__not_in, + sym__is_not, + ACTIONS(5967), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 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, + [119062] = 9, + ACTIONS(5551), 1, + anon_sym_EQ, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5609), 1, + anon_sym_is, + STATE(4242), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5612), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2378), 2, + sym__not_in, + sym__is_not, + ACTIONS(5606), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 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, + [119105] = 7, + ACTIONS(6869), 1, + anon_sym_as, + ACTIONS(6871), 1, + anon_sym_if, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4841), 2, + ACTIONS(5664), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4839), 18, + ACTIONS(5662), 16, 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, @@ -304371,337 +320466,349 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_by, + [119144] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, 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, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 12, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119185] = 8, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5390), 1, + anon_sym_is, + STATE(4247), 1, + aux_sym_comparison_operator_repeat1, 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, - [99741] = 3, + ACTIONS(5392), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2483), 2, + sym__not_in, + sym__is_not, + ACTIONS(5376), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 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, + [119226] = 11, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4974), 2, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6777), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4964), 23, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119273] = 8, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(5997), 1, + anon_sym_is, + STATE(4247), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6000), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2483), 2, + sym__not_in, + sym__is_not, + ACTIONS(5994), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5549), 9, 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_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [119314] = 7, + ACTIONS(6869), 1, + anon_sym_as, + ACTIONS(6871), 1, + anon_sym_if, + ACTIONS(6873), 1, + anon_sym_and, + ACTIONS(6875), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 16, + 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_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, + anon_sym_by, + [119353] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, 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, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5797), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5795), 12, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119394] = 10, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 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(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, 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(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 9, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119439] = 7, + ACTIONS(6880), 1, + anon_sym_as, + ACTIONS(6882), 1, + anon_sym_if, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, 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_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, - 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, - [99941] = 20, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6550), 1, - sym_identifier, - ACTIONS(6552), 1, + ACTIONS(6030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6026), 16, + anon_sym_DOT, 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, + anon_sym_COMMA, + anon_sym_GT_GT, + 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, + [119478] = 7, + ACTIONS(6880), 1, + anon_sym_as, + ACTIONS(6882), 1, + anon_sym_if, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, 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, - [100009] = 3, + ACTIONS(5621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + 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, + [119517] = 6, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, + ACTIONS(6888), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5582), 2, + ACTIONS(6020), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5580), 23, + ACTIONS(6015), 17, 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, + [119554] = 5, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 2, + ACTIONS(6009), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5608), 23, + ACTIONS(6007), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -304709,30 +320816,27 @@ static const uint16_t ts_small_parse_table[] = { 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, + [119589] = 4, + ACTIONS(6884), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5598), 2, + ACTIONS(5356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 23, + ACTIONS(5354), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -304740,176 +320844,104 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [100171] = 19, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6550), 1, - sym_identifier, - ACTIONS(6552), 1, + [119622] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 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(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, 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(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, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5839), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5837), 12, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119663] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 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(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, 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(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, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5747), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5745), 12, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119704] = 7, + ACTIONS(6880), 1, + anon_sym_as, + ACTIONS(6882), 1, + anon_sym_if, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4865), 2, + ACTIONS(6042), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4863), 20, + ACTIONS(6038), 16, 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, @@ -304922,689 +320954,627 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(4616), 1, + [119743] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_long, - STATE(4071), 1, - sym__signedness, - STATE(4313), 1, - sym__longness, - STATE(4388), 1, - sym_c_type, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6791), 1, + anon_sym_CARET, 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(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, - [100393] = 9, - ACTIONS(5394), 1, - anon_sym_EQ, - ACTIONS(5399), 1, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6785), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6783), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119794] = 7, + ACTIONS(6880), 1, + anon_sym_as, + ACTIONS(6882), 1, + anon_sym_if, + ACTIONS(6884), 1, + anon_sym_and, + ACTIONS(6886), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6051), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6049), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + 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, + [119833] = 9, + ACTIONS(5551), 1, + anon_sym_as, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5615), 1, + ACTIONS(5586), 1, anon_sym_is, - STATE(3959), 1, + STATE(4261), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5618), 2, + ACTIONS(5589), 2, anon_sym_LT, anon_sym_GT, - STATE(2265), 2, + STATE(2329), 2, sym__not_in, sym__is_not, - ACTIONS(5612), 6, + ACTIONS(5583), 6, 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, + ACTIONS(5549), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [100438] = 9, - ACTIONS(4984), 1, + [119876] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4610), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4605), 16, + 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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119909] = 9, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5057), 1, + ACTIONS(5011), 1, anon_sym_is, - ACTIONS(5326), 1, + ACTIONS(5567), 1, anon_sym_EQ, - STATE(3959), 1, + STATE(4242), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5059), 2, + ACTIONS(5013), 2, anon_sym_LT, anon_sym_GT, - STATE(2265), 2, + STATE(2378), 2, sym__not_in, sym__is_not, - ACTIONS(5041), 6, + ACTIONS(4997), 6, 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, - anon_sym_DOT, + ACTIONS(5565), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [100483] = 13, - ACTIONS(4496), 1, - anon_sym_SLASH, - ACTIONS(4506), 1, - anon_sym_COMMA, - ACTIONS(4877), 1, + sym_type_conversion, + [119952] = 14, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(4879), 1, - anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 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(6781), 1, + anon_sym_STAR_STAR, + ACTIONS(6789), 1, + anon_sym_AMP, + ACTIONS(6791), 1, + anon_sym_CARET, 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, + ACTIONS(5797), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6777), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6779), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(6785), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 3, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6783), 3, + anon_sym_AT, 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_namespace, - anon_sym_nogil, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [100568] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_namespace, - anon_sym_nogil, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [100600] = 3, - ACTIONS(4377), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6500), 22, - anon_sym_class, - sym_identifier, - 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, - [100632] = 17, - ACTIONS(1668), 1, + [120005] = 17, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6550), 1, + ACTIONS(6713), 1, sym_identifier, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - STATE(4003), 1, - sym__signedness, - STATE(4004), 1, + STATE(4317), 1, sym_int_type, - STATE(4252), 1, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, sym__longness, - STATE(4312), 1, + STATE(4606), 1, sym_function_pointer_type, - STATE(4449), 1, + STATE(4737), 1, sym_operator_name, - STATE(5624), 1, + STATE(6021), 1, sym_maybe_typed_name, - STATE(6687), 1, + STATE(7311), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6556), 2, + ACTIONS(6721), 2, anon_sym_const, anon_sym_volatile, - STATE(6329), 2, + STATE(6677), 2, sym_c_function_argument_type, sym__typedargument, - ACTIONS(1660), 3, + ACTIONS(1612), 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, + [120064] = 4, + ACTIONS(6873), 1, + anon_sym_and, 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, + ACTIONS(5356), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5354), 19, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_and, + anon_sym_PLUS, anon_sym_or, - [100732] = 9, - ACTIONS(4984), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [120097] = 8, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5326), 1, - anon_sym_EQ, - ACTIONS(5549), 1, + ACTIONS(5739), 1, anon_sym_is, - STATE(3968), 1, + STATE(4267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5551), 2, + ACTIONS(5742), 2, anon_sym_LT, anon_sym_GT, - STATE(2322), 2, + STATE(2259), 2, sym__not_in, sym__is_not, - ACTIONS(5535), 6, + ACTIONS(5736), 6, 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, + ACTIONS(5549), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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, + [120137] = 4, 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, + ACTIONS(4408), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4549), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, + anon_sym_not, anon_sym_or, - [100818] = 9, - ACTIONS(5394), 1, - anon_sym_EQ, - ACTIONS(5399), 1, + ACTIONS(4397), 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, + [120169] = 8, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5467), 1, + ACTIONS(5230), 1, anon_sym_is, - STATE(3969), 1, + STATE(4270), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5470), 2, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - STATE(2379), 2, + STATE(2284), 2, sym__not_in, sym__is_not, - ACTIONS(5464), 6, + ACTIONS(5218), 6, 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, + ACTIONS(5565), 8, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_with, anon_sym_and, anon_sym_or, - sym_type_conversion, - [100861] = 8, - ACTIONS(5399), 1, + anon_sym_nogil, + [120209] = 8, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5837), 1, + ACTIONS(5780), 1, anon_sym_is, - STATE(3970), 1, + STATE(4270), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5840), 2, + ACTIONS(5783), 2, anon_sym_LT, anon_sym_GT, - STATE(2253), 2, + STATE(2284), 2, sym__not_in, sym__is_not, - ACTIONS(5834), 6, + ACTIONS(5777), 6, 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, + ACTIONS(5549), 8, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_with, anon_sym_and, anon_sym_or, - [100902] = 9, - ACTIONS(5394), 1, - anon_sym_as, - ACTIONS(5399), 1, + anon_sym_nogil, + [120249] = 9, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5402), 1, + ACTIONS(5177), 1, anon_sym_is, - STATE(3971), 1, + ACTIONS(5567), 1, + anon_sym_as, + STATE(4272), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5405), 2, + ACTIONS(5179), 2, anon_sym_LT, anon_sym_GT, - STATE(2368), 2, + STATE(2360), 2, sym__not_in, sym__is_not, - ACTIONS(5396), 6, + ACTIONS(5163), 6, 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, + ACTIONS(5565), 7, + anon_sym_RPAREN, 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, + [120291] = 9, + ACTIONS(5551), 1, + anon_sym_as, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5029), 1, + ACTIONS(5867), 1, anon_sym_is, - ACTIONS(5326), 1, - anon_sym_as, - STATE(3971), 1, + STATE(4272), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5031), 2, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - STATE(2368), 2, + STATE(2360), 2, sym__not_in, sym__is_not, - ACTIONS(5013), 6, + ACTIONS(5864), 6, 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, + ACTIONS(5549), 7, + anon_sym_RPAREN, 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, + [120333] = 4, 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, + ACTIONS(4610), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 5, 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, - [101031] = 3, + ACTIONS(4605), 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, + [120365] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4577), 19, + ACTIONS(4418), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4397), 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, - [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, + [120397] = 4, 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, + ACTIONS(4599), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5079), 6, + anon_sym_SLASH, + ACTIONS(4603), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4594), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5069), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_CARET, + anon_sym_LT_LT, + [120429] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4564), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4566), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4559), 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_and, - anon_sym_or, - anon_sym_nogil, - [101135] = 3, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [120461] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4612), 2, + ACTIONS(1551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4610), 19, + ACTIONS(1549), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1812), 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, - [101165] = 4, + [120493] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 2, + ACTIONS(4554), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4506), 5, + ACTIONS(4549), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(4566), 14, + ACTIONS(4551), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -305619,53 +321589,88 @@ static const uint16_t ts_small_parse_table[] = { 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, + [120525] = 16, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6891), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, + STATE(6231), 1, + aux_sym_for_in_loop_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, + ACTIONS(6893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6895), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6903), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [120581] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1059), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2855), 5, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, + anon_sym_COLON, + anon_sym_not, anon_sym_or, - [101239] = 4, + ACTIONS(1057), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [120613] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4506), 5, + ACTIONS(6911), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4485), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(4397), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -305680,42 +321685,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101271] = 4, + [120645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 2, + ACTIONS(4572), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4606), 5, + ACTIONS(4570), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, sym_type_conversion, - ACTIONS(4599), 14, + [120675] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4576), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4574), 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, - [101303] = 3, + sym_type_conversion, + [120705] = 8, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5138), 1, + anon_sym_is, + STATE(4267), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5140), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2259), 2, + sym__not_in, + sym__is_not, + ACTIONS(5126), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(5565), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [120745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 2, + ACTIONS(4584), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4551), 19, + ACTIONS(4582), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -305735,14 +321798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [101333] = 3, + [120775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, + ACTIONS(4580), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4573), 19, + ACTIONS(4578), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -305762,14 +321825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [101363] = 3, + [120805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, + ACTIONS(4580), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4581), 19, + ACTIONS(4578), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -305789,14 +321852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [101393] = 3, + [120835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, + ACTIONS(4592), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4581), 19, + ACTIONS(4590), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -305816,14 +321879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [101423] = 3, + [120865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, + ACTIONS(4592), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4577), 19, + ACTIONS(4590), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -305843,20 +321906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [101453] = 4, + [120895] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(1059), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 5, + ACTIONS(1549), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(981), 14, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -305871,20 +321934,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101485] = 4, + [120927] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 2, + ACTIONS(1059), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4562), 5, + ACTIONS(1090), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(4555), 14, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -305899,209 +321962,329 @@ static const uint16_t ts_small_parse_table[] = { 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, + [120959] = 4, + ACTIONS(6913), 1, + anon_sym_STAR, 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, + ACTIONS(5103), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5093), 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, - [101557] = 8, - ACTIONS(4984), 1, + anon_sym_nogil, + [120991] = 9, + ACTIONS(4969), 1, anon_sym_not, - ACTIONS(5196), 1, + ACTIONS(5302), 1, anon_sym_is, - STATE(3991), 1, + ACTIONS(5567), 1, + anon_sym_as, + STATE(4294), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5198), 2, + ACTIONS(5304), 2, anon_sym_LT, anon_sym_GT, - STATE(2234), 2, + STATE(2294), 2, sym__not_in, sym__is_not, - ACTIONS(5182), 6, + ACTIONS(5290), 6, 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, + ACTIONS(5565), 7, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_with, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_nogil, - [101597] = 8, - ACTIONS(5399), 1, + [121033] = 9, + ACTIONS(5551), 1, + anon_sym_as, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5763), 1, + ACTIONS(5802), 1, anon_sym_is, - STATE(3991), 1, + STATE(4294), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5766), 2, + ACTIONS(5805), 2, anon_sym_LT, anon_sym_GT, - STATE(2234), 2, + STATE(2294), 2, sym__not_in, sym__is_not, - ACTIONS(5760), 6, + ACTIONS(5799), 6, 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, + ACTIONS(5549), 7, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_with, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_nogil, - [101637] = 4, + [121075] = 14, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(6921), 1, + anon_sym_complex, + STATE(4577), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 2, + ACTIONS(4899), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1597), 5, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4413), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1844), 14, + [121126] = 14, + ACTIONS(4897), 1, anon_sym_DOT, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(6927), 1, + anon_sym_complex, + STATE(4577), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4419), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4816), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6925), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [121177] = 14, + ACTIONS(4401), 1, + anon_sym_LPAREN, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4903), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6929), 1, + sym_identifier, + ACTIONS(6934), 1, + anon_sym_complex, + STATE(4312), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4478), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4728), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6931), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [121228] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_AMP, + ACTIONS(6948), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6936), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6938), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6944), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_by, + ACTIONS(6942), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, + [121277] = 12, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, + ACTIONS(6948), 1, 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(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(6936), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6938), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6944), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_by, + [121324] = 11, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [101751] = 4, + ACTIONS(6936), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6938), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6944), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_by, + [121369] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2885), 5, - anon_sym_RPAREN, + ACTIONS(6911), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(981), 14, + ACTIONS(4397), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -306116,81 +322299,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101783] = 4, + [121400] = 14, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6578), 5, - anon_sym_RPAREN, + ACTIONS(6895), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6903), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6950), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(4485), 14, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [121451] = 15, + ACTIONS(5398), 1, anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(5410), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(6811), 1, + anon_sym_COLON, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_AMP, + ACTIONS(6948), 1, + anon_sym_CARET, + ACTIONS(6952), 1, anon_sym_PIPE, + ACTIONS(6954), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6936), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6938), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6944), 2, + anon_sym_DASH, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, 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, + [121504] = 14, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6929), 1, + sym_identifier, + ACTIONS(6960), 1, + anon_sym_complex, + STATE(4295), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6958), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4425), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4728), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6956), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [101857] = 4, + [121555] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 5, - anon_sym_RPAREN, + ACTIONS(4549), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(4485), 14, + ACTIONS(4397), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -306205,25 +322438,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101889] = 4, + [121586] = 7, + ACTIONS(413), 1, + anon_sym_long, + STATE(4551), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4590), 2, + ACTIONS(6966), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6968), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6962), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 5, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6964), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(4587), 14, + anon_sym_LBRACK, + anon_sym_AMP, + [121623] = 15, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6155), 1, + anon_sym_COLON, + ACTIONS(6970), 1, + sym_identifier, + ACTIONS(6972), 1, anon_sym_DOT, + ACTIONS(6974), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(6978), 1, + anon_sym_LBRACK, + ACTIONS(6982), 1, + anon_sym_complex, + STATE(4348), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4406), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4422), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4557), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4765), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6931), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [121676] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5839), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5837), 12, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306233,25 +322536,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101921] = 4, + anon_sym_by, + [121715] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(5747), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1014), 5, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5745), 12, 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_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306261,26 +322568,27 @@ static const uint16_t ts_small_parse_table[] = { 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, + [121754] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5987), 2, + ACTIONS(5747), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5982), 15, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5745), 12, anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306290,340 +322598,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101988] = 15, - ACTIONS(4658), 1, + anon_sym_by, + [121793] = 15, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(5999), 1, - anon_sym_COLON, - ACTIONS(6587), 1, + ACTIONS(6970), 1, sym_identifier, - ACTIONS(6589), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(6591), 1, + ACTIONS(6974), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, + ACTIONS(6978), 1, anon_sym_LBRACK, - ACTIONS(6602), 1, + ACTIONS(6982), 1, anon_sym_complex, - STATE(4036), 1, + ACTIONS(6984), 1, + anon_sym_COLON, + STATE(4348), 1, aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4234), 2, + STATE(4557), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4426), 2, + STATE(4765), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6595), 3, + ACTIONS(6931), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [102041] = 7, - ACTIONS(1668), 1, - anon_sym_long, - STATE(4233), 1, - sym__longness, + [121846] = 14, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6986), 1, + anon_sym_LPAREN, + ACTIONS(6988), 1, + anon_sym_complex, + STATE(4577), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6608), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6610), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(6604), 5, + ACTIONS(4899), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6606), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4469), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 4, 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, + [121897] = 15, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6612), 1, + ACTIONS(6923), 1, sym_identifier, - ACTIONS(6614), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(6618), 1, + ACTIONS(6995), 1, anon_sym_complex, - STATE(4030), 1, + STATE(4577), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4196), 2, + ACTIONS(6925), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(6993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4448), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4499), 2, + STATE(4816), 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, + [121950] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6612), 1, + ACTIONS(6997), 1, sym_identifier, - ACTIONS(6620), 1, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7005), 1, anon_sym_complex, - STATE(4015), 1, + STATE(4315), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4126), 2, + STATE(4474), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4499), 2, + STATE(4763), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6595), 4, + ACTIONS(7002), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [102180] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, + [122001] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4903), 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, - [102211] = 15, - ACTIONS(4658), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6587), 1, + ACTIONS(6923), 1, sym_identifier, - ACTIONS(6589), 1, - anon_sym_DOT, - ACTIONS(6591), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, + ACTIONS(7007), 1, anon_sym_complex, - ACTIONS(6622), 1, - anon_sym_COLON, - STATE(4036), 1, + STATE(4577), 1, aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4234), 2, + STATE(4411), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4426), 2, + STATE(4816), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6595), 3, - sym__newline, + ACTIONS(6925), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [102264] = 14, - ACTIONS(4877), 1, + [122052] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6612), 1, + ACTIONS(6997), 1, sym_identifier, - ACTIONS(6624), 1, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7014), 1, anon_sym_complex, - STATE(4027), 1, + STATE(4296), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6595), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4158), 2, + STATE(4476), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4499), 2, + STATE(4763), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(4489), 3, - anon_sym_LPAREN, + ACTIONS(7012), 4, anon_sym_RPAREN, anon_sym_COMMA, - [102315] = 15, - ACTIONS(4877), 1, + anon_sym_COLON, + anon_sym_EQ, + [122103] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6626), 1, + ACTIONS(6929), 1, sym_identifier, - ACTIONS(6628), 1, + ACTIONS(6956), 1, anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(7016), 1, anon_sym_complex, - STATE(4273), 1, + STATE(4295), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 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, - STATE(4154), 2, + STATE(4480), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4423), 2, + STATE(4728), 2, sym_operator_name, sym_c_function_pointer_name, - [102368] = 8, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5317), 1, - anon_sym_is, - STATE(4016), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5319), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2237), 2, - sym__not_in, - sym__is_not, - 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(5324), 7, + ACTIONS(6958), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_by, - anon_sym_and, - anon_sym_or, - [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, + anon_sym_EQ, + [122154] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5971), 2, + ACTIONS(5797), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5967), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 12, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306633,62 +322890,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [102444] = 14, - ACTIONS(4877), 1, + anon_sym_by, + [122193] = 10, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6626), 1, - sym_identifier, - ACTIONS(6628), 1, + ACTIONS(5400), 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(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(6936), 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_SLASH, + ACTIONS(6944), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_EQ, - [102495] = 5, - ACTIONS(6583), 1, - anon_sym_and, - ACTIONS(6585), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [122236] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 2, + ACTIONS(5797), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5915), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 12, anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306698,160 +322954,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [102528] = 4, - ACTIONS(6583), 1, - anon_sym_and, + anon_sym_by, + [122275] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5610), 2, + ACTIONS(5797), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5608), 17, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 12, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, 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, + [122314] = 10, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6643), 1, - sym_identifier, - ACTIONS(6645), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6649), 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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, 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(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, + ACTIONS(6893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6903), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 7, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_GT_GT, 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, - ACTIONS(6589), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [122357] = 8, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(6591), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, + ACTIONS(5410), 1, anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_complex, - 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(4494), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(6899), 1, 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(5949), 2, + ACTIONS(5797), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5947), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 12, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -306861,56 +323050,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [102739] = 14, - ACTIONS(4877), 1, + [122396] = 9, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6653), 1, - sym_identifier, - ACTIONS(6655), 1, + ACTIONS(5400), 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(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(6893), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, + anon_sym_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 9, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [122437] = 13, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, anon_sym_STAR_STAR, + ACTIONS(6907), 1, 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, + ACTIONS(6909), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6895), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6903), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5795), 3, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [102790] = 4, + anon_sym_PIPE, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [122486] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(1059), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2885), 4, + ACTIONS(2855), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(981), 14, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -306925,128 +323145,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [102821] = 14, - ACTIONS(4877), 1, + [122517] = 9, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6626), 1, - sym_identifier, - ACTIONS(6663), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_complex, - STATE(4273), 1, - aux_sym_class_definition_repeat2, - STATE(4314), 1, - sym_type_index, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(6936), 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_SLASH, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5795), 9, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_EQ, - [102872] = 14, - ACTIONS(4877), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_by, + [122558] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6612), 1, + ACTIONS(6929), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(7018), 1, anon_sym_complex, - STATE(4030), 1, + STATE(4331), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6616), 2, + ACTIONS(6931), 2, anon_sym_COLON, anon_sym_EQ, - STATE(4162), 2, + STATE(4423), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4499), 2, + STATE(4728), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6614), 3, + ACTIONS(4401), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [102923] = 4, + [122609] = 12, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, + ACTIONS(6909), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(6893), 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, + ACTIONS(6895), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(6903), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, 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(5795), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [122656] = 8, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5482), 2, + ACTIONS(5839), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5480), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5837), 12, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -307056,334 +323280,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [102991] = 7, - ACTIONS(413), 1, - anon_sym_long, - STATE(4245), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6669), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6671), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(6604), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6606), 9, - sym__newline, + [122695] = 14, + ACTIONS(4897), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [103028] = 14, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6653), 1, + ACTIONS(6915), 1, sym_identifier, - ACTIONS(6673), 1, - anon_sym_LPAREN, - ACTIONS(6678), 1, + ACTIONS(7020), 1, anon_sym_complex, - STATE(4021), 1, + STATE(4577), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4229), 2, + ACTIONS(6919), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4468), 2, + STATE(4750), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6676), 4, + ACTIONS(6986), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + [122746] = 15, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6169), 1, anon_sym_COLON, - anon_sym_EQ, - [103079] = 14, - ACTIONS(4877), 1, + ACTIONS(6970), 1, + sym_identifier, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6643), 1, - sym_identifier, - ACTIONS(6680), 1, + ACTIONS(6982), 1, anon_sym_complex, - STATE(4273), 1, + STATE(4348), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6647), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4144), 2, + STATE(4557), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4765), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6645), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6931), 3, + sym__newline, anon_sym_COMMA, - [103130] = 15, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, + anon_sym_EQ, + [122799] = 15, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6653), 1, + ACTIONS(6970), 1, sym_identifier, - ACTIONS(6655), 1, + ACTIONS(6972), 1, + anon_sym_DOT, + ACTIONS(6974), 1, anon_sym_LPAREN, - ACTIONS(6684), 1, + ACTIONS(6978), 1, + anon_sym_LBRACK, + ACTIONS(6982), 1, anon_sym_complex, - STATE(4009), 1, + ACTIONS(7022), 1, + anon_sym_COLON, + STATE(4348), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6658), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(6682), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4191), 2, + STATE(4557), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4468), 2, + STATE(4765), 2, sym_operator_name, sym_c_function_pointer_name, - [103183] = 15, - ACTIONS(4877), 1, + ACTIONS(6931), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [122852] = 15, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6653), 1, + ACTIONS(6997), 1, sym_identifier, - ACTIONS(6673), 1, + ACTIONS(6999), 1, anon_sym_LPAREN, - ACTIONS(6688), 1, + ACTIONS(7026), 1, anon_sym_complex, - STATE(4021), 1, + STATE(4313), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6676), 2, + ACTIONS(7002), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(6686), 2, + ACTIONS(7024), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(4122), 2, + STATE(4438), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4468), 2, + STATE(4763), 2, sym_operator_name, sym_c_function_pointer_name, - [103236] = 14, - ACTIONS(4877), 1, + [122905] = 15, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(6997), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(7009), 1, anon_sym_LPAREN, - ACTIONS(6690), 1, + ACTIONS(7030), 1, anon_sym_complex, - STATE(4273), 1, + STATE(4296), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4183), 2, + ACTIONS(7012), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7028), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4440), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4763), 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(5592), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5590), 14, + [122958] = 11, + ACTIONS(5398), 1, anon_sym_DOT, + ACTIONS(5400), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(5410), 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, - [103324] = 4, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(6893), 2, anon_sym_STAR, 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, + ACTIONS(6895), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(6903), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5795), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, 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, - 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, + [123003] = 7, + ACTIONS(1620), 1, + anon_sym_long, + STATE(4532), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(7032), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(7034), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6962), 5, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, 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, + ACTIONS(6964), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, 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, + anon_sym_LBRACK, + anon_sym_AMP, + [123040] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5931), 2, + ACTIONS(1059), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5927), 14, + ACTIONS(1549), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -307398,84 +323560,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [103445] = 4, + [123071] = 15, + ACTIONS(5398), 1, + anon_sym_DOT, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6829), 1, + anon_sym_COLON, + ACTIONS(6940), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_AMP, + ACTIONS(6948), 1, + anon_sym_CARET, + ACTIONS(6952), 1, + anon_sym_PIPE, + ACTIONS(7036), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(6936), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1014), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(981), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6938), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(6944), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6942), 3, + anon_sym_AT, 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, + [123124] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6694), 1, + ACTIONS(7040), 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(7042), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4344), 1, + aux_sym_fused_repeat1, + STATE(4534), 1, + sym__longness, + STATE(6895), 1, + sym_c_type, 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(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(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(4760), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [123174] = 14, ACTIONS(413), 1, anon_sym_long, - ACTIONS(6702), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - ACTIONS(6706), 1, + ACTIONS(7044), 1, sym__dedent, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4049), 1, + STATE(4342), 1, aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(6358), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -307489,88 +323663,58 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4760), 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(6587), 1, + [123224] = 14, + ACTIONS(413), 1, + anon_sym_long, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6589), 1, - anon_sym_DOT, - ACTIONS(6602), 1, - anon_sym_complex, - ACTIONS(6708), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - 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(7046), 1, + sym__dedent, + STATE(4306), 1, + sym__signedness, + STATE(4360), 1, + aux_sym_fused_repeat1, + STATE(4534), 1, + sym__longness, + STATE(6895), 1, + sym_c_type, 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, - 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, + 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(4760), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [123274] = 4, + ACTIONS(7048), 1, anon_sym_COMMA, - STATE(4050), 1, + STATE(4354), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 17, + ACTIONS(2229), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -307588,212 +323732,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [103693] = 14, - ACTIONS(1668), 1, + [123304] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6718), 1, - sym_string_start, - STATE(4003), 1, + ACTIONS(7040), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4252), 1, + STATE(4360), 1, + aux_sym_fused_repeat1, + STATE(4534), 1, sym__longness, - STATE(5728), 1, + STATE(6895), 1, sym_c_type, - STATE(6544), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4760), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [103743] = 14, - ACTIONS(4658), 1, + [123354] = 14, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6587), 1, + ACTIONS(6970), 1, sym_identifier, - ACTIONS(6589), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(6591), 1, + ACTIONS(6974), 1, anon_sym_LPAREN, - ACTIONS(6598), 1, + ACTIONS(6978), 1, anon_sym_LBRACK, - ACTIONS(6602), 1, + ACTIONS(6982), 1, anon_sym_complex, - STATE(4036), 1, + STATE(4348), 1, aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4234), 2, + STATE(4557), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4426), 2, + STATE(4765), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6595), 3, + ACTIONS(6931), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [103793] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4496), 2, - anon_sym_STAR, - anon_sym_SLASH, - 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_in, - 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, - [103853] = 14, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(6702), 1, - sym_identifier, - ACTIONS(6704), 1, - anon_sym_LPAREN, - ACTIONS(6720), 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(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, - [103903] = 8, - ACTIONS(4984), 1, + [123404] = 8, + ACTIONS(5556), 1, anon_sym_not, - ACTIONS(5730), 1, + ACTIONS(6068), 1, anon_sym_is, - STATE(4039), 1, + STATE(4346), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5732), 2, + ACTIONS(6071), 2, anon_sym_LT, anon_sym_GT, - STATE(2240), 2, + STATE(2463), 2, sym__not_in, sym__is_not, - ACTIONS(5324), 6, + ACTIONS(5549), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(5714), 6, + ACTIONS(6065), 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, + [123442] = 14, ACTIONS(413), 1, anon_sym_long, - ACTIONS(6702), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - ACTIONS(6722), 1, + ACTIONS(7052), 1, sym__dedent, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4058), 1, + STATE(4360), 1, aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(6358), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -307807,65 +323863,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4760), 2, sym_int_type, sym_function_pointer_type, ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [103991] = 14, - ACTIONS(6724), 1, + [123492] = 14, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6972), 1, + anon_sym_DOT, + ACTIONS(7054), 1, sym_identifier, - ACTIONS(6727), 1, + ACTIONS(7056), 1, anon_sym_LPAREN, - ACTIONS(6739), 1, + ACTIONS(7059), 1, + anon_sym_LBRACK, + ACTIONS(7062), 1, + anon_sym_complex, + STATE(4599), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4406), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4422), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4538), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4808), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [123542] = 15, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6745), 1, - sym__dedent, - STATE(4025), 1, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7064), 1, + sym_identifier, + ACTIONS(7066), 1, + anon_sym_LPAREN, + STATE(4335), 1, + sym_int_type, + STATE(4337), 1, sym__signedness, - STATE(4048), 1, - aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4553), 1, sym__longness, - STATE(6358), 1, + STATE(4644), 1, + sym_function_pointer_type, + STATE(4744), 1, + sym_operator_name, + STATE(7036), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6733), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6736), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6742), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(6730), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104041] = 14, + [123594] = 14, ACTIONS(413), 1, anon_sym_long, - ACTIONS(6702), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - ACTIONS(6747), 1, + ACTIONS(7070), 1, sym__dedent, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4048), 1, + STATE(4347), 1, aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(6358), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -307879,298 +323972,230 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4760), 2, sym_int_type, sym_function_pointer_type, ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104091] = 4, - ACTIONS(6751), 1, - anon_sym_COMMA, - STATE(4050), 1, - aux_sym__patterns_repeat1, + [123644] = 14, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6972), 1, + anon_sym_DOT, + ACTIONS(7072), 1, + sym_identifier, + ACTIONS(7074), 1, + anon_sym_LPAREN, + ACTIONS(7077), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_complex, + STATE(4599), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 17, + ACTIONS(4406), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4422), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4546), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4735), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6925), 3, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + 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, - [104121] = 14, - ACTIONS(1668), 1, + [123694] = 14, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - ACTIONS(6754), 1, + ACTIONS(7084), 1, anon_sym_RPAREN, - ACTIONS(6756), 1, + ACTIONS(7086), 1, anon_sym_STAR, - STATE(4003), 1, - sym__signedness, - STATE(4252), 1, - sym__longness, - STATE(5633), 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, - [104171] = 14, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(6702), 1, - sym_identifier, - ACTIONS(6704), 1, - anon_sym_LPAREN, - ACTIONS(6758), 1, - sym__dedent, - STATE(4025), 1, + STATE(4337), 1, sym__signedness, - STATE(4054), 1, - aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4553), 1, sym__longness, - STATE(6358), 1, + STATE(5966), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(415), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(407), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104221] = 14, - ACTIONS(1668), 1, + [123744] = 14, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - ACTIONS(6756), 1, + ACTIONS(7086), 1, anon_sym_STAR, - ACTIONS(6760), 1, + ACTIONS(7088), 1, anon_sym_RPAREN, - STATE(4003), 1, - sym__signedness, - STATE(4252), 1, - sym__longness, - STATE(5548), 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, - [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, + STATE(4337), 1, sym__signedness, - STATE(4048), 1, - aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4553), 1, sym__longness, - STATE(6358), 1, + STATE(6004), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(415), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(407), 3, + ACTIONS(1612), 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(6764), 1, - sym_identifier, - ACTIONS(6766), 1, - anon_sym_LPAREN, - ACTIONS(6769), 1, - anon_sym_LBRACK, - ACTIONS(6772), 1, - anon_sym_complex, - STATE(4299), 1, - sym_type_index, - STATE(4308), 1, - aux_sym_class_definition_repeat2, + [123794] = 4, + ACTIONS(7092), 1, + anon_sym_COMMA, + STATE(4354), 1, + aux_sym__patterns_repeat1, 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(4253), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(4413), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(6633), 3, + ACTIONS(7090), 17, sym__newline, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, - [104371] = 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [123824] = 8, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5732), 1, + anon_sym_is, + STATE(4346), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4562), 3, - anon_sym_from, + ACTIONS(5734), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2463), 2, + sym__not_in, + sym__is_not, + ACTIONS(5565), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5718), 6, 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, - [104401] = 15, - ACTIONS(1668), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [123862] = 15, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6774), 1, + ACTIONS(7095), 1, sym_identifier, - ACTIONS(6776), 1, + ACTIONS(7097), 1, anon_sym_LPAREN, - STATE(4003), 1, - sym__signedness, - STATE(4026), 1, + STATE(4316), 1, sym_int_type, - STATE(4252), 1, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, sym__longness, - STATE(4294), 1, + STATE(4605), 1, sym_function_pointer_type, - STATE(4501), 1, + STATE(4744), 1, sym_operator_name, - STATE(6936), 1, + STATE(7267), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104453] = 14, + [123914] = 14, ACTIONS(413), 1, anon_sym_long, - ACTIONS(6702), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - ACTIONS(6780), 1, + ACTIONS(7099), 1, sym__dedent, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4048), 1, + STATE(4360), 1, aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(6358), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -308184,473 +324209,234 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4760), 2, sym_int_type, sym_function_pointer_type, ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104503] = 14, - ACTIONS(4658), 1, + [123964] = 14, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6589), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(6782), 1, + ACTIONS(7101), 1, sym_identifier, - ACTIONS(6784), 1, + ACTIONS(7103), 1, anon_sym_LPAREN, - ACTIONS(6788), 1, + ACTIONS(7107), 1, anon_sym_LBRACK, - ACTIONS(6792), 1, + ACTIONS(7111), 1, anon_sym_complex, - STATE(4055), 1, + STATE(4351), 1, aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4254), 2, + STATE(4541), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4471), 2, + STATE(4740), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6658), 3, + ACTIONS(7002), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [104553] = 14, - ACTIONS(4658), 1, + [124014] = 14, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6589), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(6782), 1, + ACTIONS(7101), 1, sym_identifier, - ACTIONS(6792), 1, + ACTIONS(7111), 1, anon_sym_complex, - ACTIONS(6794), 1, + ACTIONS(7113), 1, anon_sym_LPAREN, - ACTIONS(6797), 1, + ACTIONS(7116), 1, anon_sym_LBRACK, - STATE(4055), 1, + STATE(4351), 1, aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4250), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4471), 2, + STATE(4740), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6676), 3, + ACTIONS(7012), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [104603] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [104633] = 14, - ACTIONS(413), 1, - anon_sym_long, - ACTIONS(6702), 1, + [124064] = 14, + ACTIONS(7119), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(7122), 1, anon_sym_LPAREN, - ACTIONS(6800), 1, + ACTIONS(7134), 1, + anon_sym_long, + ACTIONS(7140), 1, sym__dedent, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4045), 1, + STATE(4360), 1, aux_sym_fused_repeat1, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(6358), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(7128), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(7131), 2, anon_sym_char, anon_sym_short, - ACTIONS(415), 2, + ACTIONS(7137), 2, anon_sym_const, anon_sym_volatile, - STATE(4419), 2, + STATE(4760), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(407), 3, + ACTIONS(7125), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104683] = 15, - ACTIONS(1668), 1, + [124114] = 14, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6802), 1, + ACTIONS(7038), 1, sym_identifier, - ACTIONS(6804), 1, + ACTIONS(7040), 1, anon_sym_LPAREN, - STATE(4003), 1, + ACTIONS(7142), 1, + sym__dedent, + STATE(4306), 1, sym__signedness, - STATE(4029), 1, - sym_int_type, - STATE(4252), 1, + STATE(4357), 1, + aux_sym_fused_repeat1, + STATE(4534), 1, sym__longness, - STATE(4365), 1, - sym_function_pointer_type, - STATE(4501), 1, - sym_operator_name, - STATE(6778), 1, + STATE(6895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(415), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1660), 3, + STATE(4760), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104735] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6749), 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, - [104760] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6749), 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, - [104785] = 8, - ACTIONS(4984), 1, - anon_sym_not, - ACTIONS(5826), 1, - anon_sym_is, - STATE(4069), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5828), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2279), 2, - sym__not_in, - sym__is_not, - 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, - [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, - 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, - [104851] = 13, - ACTIONS(1668), 1, + [124164] = 14, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - ACTIONS(6806), 1, - anon_sym_RPAREN, - STATE(4003), 1, + ACTIONS(7144), 1, + sym_string_start, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(5566), 1, + STATE(6278), 1, sym_c_type, + STATE(6657), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [104898] = 8, - ACTIONS(5399), 1, - anon_sym_not, - ACTIONS(6074), 1, - anon_sym_is, - STATE(4069), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6077), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2279), 2, - sym__not_in, - sym__is_not, - 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, - [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, + [124214] = 14, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(6970), 1, sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6606), 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, - [105017] = 13, - ACTIONS(5293), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(5295), 1, + ACTIONS(6982), 1, + anon_sym_complex, + ACTIONS(7146), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(7149), 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, + STATE(4348), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, + sym_type_index, 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, - [105064] = 4, - ACTIONS(6576), 1, + ACTIONS(4406), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5079), 6, - anon_sym_LPAREN, + anon_sym___stdcall, + ACTIONS(4422), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5069), 11, - anon_sym_DOT, + STATE(4533), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4765), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6958), 3, + sym__newline, 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, - [105093] = 2, + [124264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6828), 18, + ACTIONS(7152), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -308669,26 +324455,53 @@ static const uint16_t ts_small_parse_table[] = { 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, + [124289] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(7154), 1, + anon_sym_async, + ACTIONS(7156), 1, + anon_sym_def, + ACTIONS(7158), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7162), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(4686), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(5167), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(2135), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(7160), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [124330] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5687), 2, + ACTIONS(4564), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5685), 10, + ACTIONS(4566), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4559), 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, @@ -308698,17 +324511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105155] = 4, + [124359] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4562), 2, - anon_sym_RPAREN, + ACTIONS(4418), 2, anon_sym_COMMA, - ACTIONS(4555), 14, + anon_sym_RBRACK, + ACTIONS(4397), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -308723,108 +324536,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105184] = 13, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6167), 1, + [124388] = 13, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, - sym_identifier, - ACTIONS(6760), 1, - anon_sym_RPAREN, - STATE(4003), 1, - sym__signedness, - STATE(4252), 1, - sym__longness, - STATE(5548), 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, - [105231] = 8, - ACTIONS(5293), 1, + ACTIONS(5708), 1, anon_sym_DOT, - ACTIONS(5295), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5720), 1, anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5660), 10, + ACTIONS(6895), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(6903), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [105268] = 13, - ACTIONS(5295), 1, + [124435] = 13, + ACTIONS(5366), 1, + anon_sym_DOT, + ACTIONS(5378), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 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, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105315] = 2, + [124482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 18, + ACTIONS(4418), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -308843,252 +324627,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [105340] = 13, - ACTIONS(4960), 1, + [124507] = 13, + ACTIONS(5241), 1, anon_sym_DOT, - ACTIONS(4976), 1, + ACTIONS(5253), 1, anon_sym_LBRACK, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105387] = 13, - ACTIONS(5295), 1, - anon_sym_LPAREN, - ACTIONS(5706), 1, + [124554] = 13, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5718), 1, + ACTIONS(4961), 1, anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105434] = 13, - ACTIONS(5295), 1, + [124601] = 13, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5328), 1, - anon_sym_DOT, - ACTIONS(5340), 1, - anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 1, anon_sym_CARET, + ACTIONS(7164), 1, + anon_sym_DOT, + ACTIONS(7166), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105481] = 13, - ACTIONS(5099), 1, + [124648] = 13, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5111), 1, - anon_sym_LBRACK, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6812), 1, + ACTIONS(5410), 1, + anon_sym_LBRACK, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105528] = 10, - ACTIONS(5293), 1, - anon_sym_DOT, - ACTIONS(5295), 1, + [124695] = 13, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, + ACTIONS(7168), 1, + anon_sym_DOT, + ACTIONS(7170), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6816), 2, + ACTIONS(6895), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 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, + [124742] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(4418), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4610), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(4605), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6816), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [124771] = 13, + ACTIONS(5023), 1, + anon_sym_DOT, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 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, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [105663] = 4, + [124818] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(7172), 1, + anon_sym_async, + ACTIONS(7174), 1, + anon_sym_def, + ACTIONS(7176), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7178), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(4686), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(5214), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(2118), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(7160), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [124859] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 2, + ACTIONS(1059), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4606), 2, - anon_sym_RPAREN, + ACTIONS(1090), 2, anon_sym_COMMA, - ACTIONS(4599), 14, + anon_sym_RBRACK, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -309103,49 +324912,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105692] = 2, + [124888] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6838), 18, - anon_sym_from, + ACTIONS(4418), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [105717] = 8, - ACTIONS(5293), 1, + anon_sym_RBRACK, + ACTIONS(4610), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4605), 14, anon_sym_DOT, - ACTIONS(5295), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(6812), 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, + [124917] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5662), 2, + ACTIONS(4599), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2926), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5660), 10, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4594), 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, @@ -309155,11 +324962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105754] = 2, + [124946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6838), 18, + ACTIONS(7180), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -309178,149 +324985,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [105779] = 13, - ACTIONS(1668), 1, + [124971] = 13, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - ACTIONS(6754), 1, + ACTIONS(7182), 1, anon_sym_RPAREN, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(5633), 1, + STATE(5889), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [105826] = 13, - ACTIONS(5160), 1, + [125018] = 13, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5162), 1, + ACTIONS(5165), 1, anon_sym_LBRACK, - ACTIONS(5295), 1, + ACTIONS(5400), 1, anon_sym_LPAREN, - ACTIONS(6812), 1, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6818), 1, + ACTIONS(6905), 1, anon_sym_PIPE, - ACTIONS(6820), 1, + ACTIONS(6907), 1, anon_sym_AMP, - ACTIONS(6822), 1, + ACTIONS(6909), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 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, - ACTIONS(5305), 1, - anon_sym_LBRACK, - ACTIONS(6812), 1, - anon_sym_STAR_STAR, + [125065] = 2, 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [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(7090), 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, + [125090] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(1059), 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(4506), 2, + ACTIONS(1090), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4571), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4566), 14, + ACTIONS(1057), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -309335,17 +325101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105988] = 4, + [125119] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, + ACTIONS(4599), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4506), 2, + ACTIONS(4603), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4485), 14, + ACTIONS(4594), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -309360,17 +325126,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [106017] = 4, + [125148] = 13, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + sym_identifier, + ACTIONS(7088), 1, + anon_sym_RPAREN, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(6004), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1622), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4642), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125195] = 13, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + sym_identifier, + ACTIONS(7184), 1, + anon_sym_RPAREN, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(5942), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1622), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4642), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125242] = 13, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(6899), 1, + anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, + ACTIONS(7186), 1, + anon_sym_DOT, + ACTIONS(7188), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6895), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6903), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(3164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(6901), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [125289] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 2, + ACTIONS(4564), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4606), 2, + ACTIONS(4566), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4599), 14, + ACTIONS(4559), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -309385,82 +325253,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [106046] = 12, - ACTIONS(5293), 1, - anon_sym_DOT, - ACTIONS(5295), 1, + [125318] = 8, + ACTIONS(5556), 1, + anon_sym_not, + ACTIONS(6099), 1, + anon_sym_is, + STATE(4392), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6102), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2286), 2, + sym__not_in, + sym__is_not, + ACTIONS(5549), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(6096), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [125355] = 13, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + sym_identifier, + ACTIONS(7084), 1, + anon_sym_RPAREN, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(5966), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1622), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4642), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125402] = 8, + ACTIONS(4969), 1, + anon_sym_not, + ACTIONS(5935), 1, + anon_sym_is, + STATE(4392), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5937), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2286), 2, + sym__not_in, + sym__is_not, + ACTIONS(5565), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(5923), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [125439] = 7, + ACTIONS(4630), 1, + anon_sym_long, + STATE(4600), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7190), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(7192), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6962), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6964), 8, anon_sym_LPAREN, - ACTIONS(5305), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [125474] = 13, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4999), 1, anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(6899), 1, anon_sym_STAR_STAR, - ACTIONS(6822), 1, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5660), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [106091] = 11, - ACTIONS(5293), 1, + [125521] = 13, + ACTIONS(5237), 1, anon_sym_DOT, - ACTIONS(5295), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5239), 1, anon_sym_LBRACK, - ACTIONS(6812), 1, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(6899), 1, anon_sym_STAR_STAR, + ACTIONS(6905), 1, + anon_sym_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP, + ACTIONS(6909), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(6893), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6810), 2, + ACTIONS(6895), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6816), 2, + ACTIONS(6903), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2926), 2, + STATE(3164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5660), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(6814), 3, + ACTIONS(6901), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [106134] = 4, + [125568] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4571), 2, + ACTIONS(4408), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4566), 14, + ACTIONS(4418), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4397), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -309475,99 +325466,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [106163] = 4, + [125597] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6645), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4496), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4506), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4485), 14, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125641] = 5, + ACTIONS(7198), 1, anon_sym_DOT, + STATE(4400), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7196), 6, + anon_sym_import, + anon_sym_cimport, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(7201), 9, anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [106192] = 4, + anon_sym_GT, + anon_sym_QMARK, + [125671] = 4, + ACTIONS(7207), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(983), 2, + ACTIONS(7203), 7, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1014), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(981), 14, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7205), 9, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [106221] = 13, - ACTIONS(1668), 1, + [125699] = 12, + ACTIONS(413), 1, anon_sym_long, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7209), 1, sym_identifier, - ACTIONS(6840), 1, - anon_sym_RPAREN, - STATE(4003), 1, + ACTIONS(7211), 1, + anon_sym_LPAREN, + STATE(4306), 1, sym__signedness, - STATE(4252), 1, + STATE(4534), 1, sym__longness, - STATE(5700), 1, + STATE(7020), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(409), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(411), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4707), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(407), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [106268] = 2, + [125743] = 12, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(7213), 1, + sym_identifier, + ACTIONS(7215), 1, + anon_sym_LPAREN, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(6944), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6828), 18, - anon_sym_from, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4696), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125787] = 4, + ACTIONS(7217), 1, anon_sym_COMMA, + STATE(4445), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2229), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -309582,12 +325635,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [106293] = 2, + [125815] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6851), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 18, - anon_sym_from, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125859] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6868), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125903] = 12, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(6578), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125947] = 14, + ACTIONS(4401), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + sym_identifier, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7223), 1, + anon_sym_COLON, + ACTIONS(7225), 1, + anon_sym_EQ, + ACTIONS(7227), 1, + anon_sym_complex, + STATE(4655), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(7221), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4954), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [125995] = 4, + ACTIONS(6913), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5093), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [126023] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7229), 1, + sym_identifier, + ACTIONS(7231), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4562), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4813), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7233), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126065] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7235), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4565), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4720), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7240), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126107] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7235), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4430), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4720), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7240), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126149] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(7242), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4575), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7244), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126191] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(7242), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4418), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7244), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126233] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7235), 1, + sym_identifier, + ACTIONS(7246), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4565), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4720), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7240), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126275] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7152), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -309605,443 +325997,515 @@ static const uint16_t ts_small_parse_table[] = { 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, + [126299] = 12, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(6001), 1, + sym_c_type, 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, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [126343] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(5295), 1, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 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(7229), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(4899), 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___stdcall, + ACTIONS(4901), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4562), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4813), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7233), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126385] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(7235), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5691), 2, + ACTIONS(4899), 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, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [106443] = 4, + STATE(4565), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4720), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7240), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126427] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(7235), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 2, + ACTIONS(4899), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4562), 2, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4434), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4720), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7240), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4555), 14, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + [126469] = 12, + ACTIONS(6467), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, + sym_identifier, + STATE(4536), 1, + sym__signedness, + STATE(4829), 1, + sym__longness, + STATE(5981), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6477), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(6479), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(6483), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4648), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(6475), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [126513] = 11, + ACTIONS(4903), 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, - [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(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, 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, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6919), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4435), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6986), 3, anon_sym_LPAREN, - ACTIONS(6812), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [126555] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, 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, + ACTIONS(7249), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4570), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6986), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [126597] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6808), 2, + ACTIONS(4899), 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___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6919), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4441), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7028), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [126639] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6864), 1, + ACTIONS(6915), 1, sym_identifier, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6868), 2, + ACTIONS(6919), 2, anon_sym_COLON, anon_sym_EQ, - STATE(4275), 2, + STATE(4570), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4416), 2, + STATE(4750), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6866), 3, + ACTIONS(7028), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [106602] = 5, - ACTIONS(6872), 1, - anon_sym_COLON, - ACTIONS(6874), 1, - anon_sym_EQ, + [126681] = 4, + ACTIONS(7252), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6870), 2, + ACTIONS(7203), 7, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7205), 9, 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_DOT, anon_sym_LPAREN, - ACTIONS(6343), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [126709] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(7066), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, sym_identifier, - STATE(4242), 1, + STATE(4337), 1, sym__signedness, - STATE(4451), 1, + STATE(4553), 1, sym__longness, - STATE(5642), 1, + STATE(7036), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4644), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(1612), 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, + [126753] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4071), 1, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6152), 1, + STATE(6241), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [106748] = 12, - ACTIONS(4632), 1, + [126797] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4071), 1, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6456), 1, + STATE(6678), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [106792] = 12, - ACTIONS(1668), 1, + [126841] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7256), 1, + sym_identifier, + ACTIONS(7258), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4573), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4784), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7261), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [126883] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6479), 1, + STATE(6782), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [106836] = 12, - ACTIONS(4632), 1, + [126927] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6882), 1, - sym_identifier, - ACTIONS(6884), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - STATE(4071), 1, + ACTIONS(7082), 1, + sym_identifier, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6936), 1, + STATE(6655), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4532), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [106880] = 6, - ACTIONS(6872), 1, + [126971] = 6, + ACTIONS(7263), 1, + anon_sym_COMMA, + ACTIONS(7265), 1, anon_sym_COLON, - ACTIONS(6874), 1, + ACTIONS(7267), 1, anon_sym_EQ, - ACTIONS(6886), 1, - anon_sym_COMMA, - STATE(4116), 1, + STATE(4404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6876), 13, + ACTIONS(7269), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -310055,80 +326519,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [106912] = 12, - ACTIONS(4883), 1, + [127003] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6626), 1, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, sym_identifier, - ACTIONS(6888), 1, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4573), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4784), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7261), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [127045] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7242), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(7244), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4575), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7271), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [127087] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7242), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(7244), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4447), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7271), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [127129] = 12, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(6990), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6633), 2, + ACTIONS(6925), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(6866), 2, + ACTIONS(6993), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(4276), 2, + STATE(4448), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4423), 2, + STATE(4816), 2, sym_operator_name, sym_c_function_pointer_name, - [106956] = 12, - ACTIONS(1668), 1, + [127173] = 12, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7273), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4579), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4816), 2, + sym_operator_name, + sym_c_function_pointer_name, + [127217] = 12, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6925), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7279), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4450), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4816), 2, + sym_operator_name, + sym_c_function_pointer_name, + [127261] = 12, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(6925), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7279), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4579), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4816), 2, + sym_operator_name, + sym_c_function_pointer_name, + [127305] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7242), 1, + sym_identifier, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(7244), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4575), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7279), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [127347] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(7097), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7281), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6507), 1, + STATE(7267), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4605), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107000] = 4, - ACTIONS(6891), 1, - anon_sym_COMMA, - STATE(4124), 1, - aux_sym__patterns_repeat1, + [127391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 15, + ACTIONS(7090), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -310143,2885 +326825,2436 @@ static const uint16_t ts_small_parse_table[] = { 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(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, + [127415] = 5, + ACTIONS(7265), 1, + anon_sym_COLON, + ACTIONS(7267), 1, + anon_sym_EQ, 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(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, + ACTIONS(7283), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7269), 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, + [127445] = 4, + ACTIONS(7285), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [107114] = 4, - ACTIONS(6901), 1, - anon_sym_long, + STATE(4445), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6897), 7, - anon_sym_STAR, - 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, + ACTIONS(7090), 15, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [107142] = 12, - ACTIONS(413), 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, + [127473] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - STATE(4025), 1, + ACTIONS(7082), 1, + sym_identifier, + STATE(4337), 1, sym__signedness, - STATE(4241), 1, + STATE(4553), 1, sym__longness, - STATE(6697), 1, + STATE(6861), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(411), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4493), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(407), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107186] = 11, - ACTIONS(4883), 1, + [127517] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6907), 1, + ACTIONS(7229), 1, sym_identifier, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4272), 2, + ACTIONS(7233), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(4562), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4402), 2, + STATE(4813), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6909), 4, + ACTIONS(7231), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [107228] = 11, - ACTIONS(4883), 1, + [127559] = 12, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6626), 1, + ACTIONS(7235), 1, sym_identifier, - ACTIONS(6628), 1, + ACTIONS(7237), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4276), 2, + ACTIONS(7240), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7288), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4565), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4423), 2, + STATE(4720), 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, + [127603] = 12, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6914), 1, + ACTIONS(7235), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4263), 2, + ACTIONS(7240), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7288), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4459), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4467), 2, + STATE(4720), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6916), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [107312] = 11, - ACTIONS(4883), 1, + [127647] = 12, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6914), 1, + ACTIONS(7235), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(7246), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4179), 2, + ACTIONS(7240), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7290), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4565), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4467), 2, + STATE(4720), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6916), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [107354] = 12, - ACTIONS(6343), 1, + [127691] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6918), 1, - sym_identifier, - ACTIONS(6920), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - STATE(4242), 1, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, sym__signedness, - STATE(4451), 1, + STATE(4586), 1, sym__longness, - STATE(6622), 1, + STATE(6342), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4326), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107398] = 12, - ACTIONS(4632), 1, + [127735] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6176), 1, + STATE(6716), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107442] = 12, - ACTIONS(4632), 1, + [127779] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4071), 1, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6492), 1, + STATE(6775), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107486] = 12, - ACTIONS(4632), 1, + [127823] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, - anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7292), 1, sym_identifier, - STATE(4071), 1, + ACTIONS(7294), 1, + anon_sym_LPAREN, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6319), 1, + STATE(7267), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4892), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107530] = 12, - ACTIONS(1668), 1, + [127867] = 6, + ACTIONS(7265), 1, + anon_sym_COLON, + ACTIONS(7267), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_COMMA, + STATE(4343), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7269), 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, + [127899] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6512), 1, + STATE(6880), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107574] = 12, - ACTIONS(4632), 1, + [127943] = 12, + ACTIONS(6467), 1, + anon_sym_LPAREN, + ACTIONS(6481), 1, anon_sym_long, - ACTIONS(6922), 1, + ACTIONS(6546), 1, sym_identifier, - ACTIONS(6924), 1, - anon_sym_LPAREN, - STATE(4071), 1, + STATE(4536), 1, sym__signedness, - STATE(4313), 1, + STATE(4829), 1, sym__longness, - STATE(6936), 1, + STATE(5888), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(6483), 2, anon_sym_const, anon_sym_volatile, - STATE(4589), 2, + STATE(4648), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(6475), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107618] = 12, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6804), 1, + [127987] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6986), 1, anon_sym_LPAREN, - ACTIONS(6926), 1, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4469), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [128029] = 12, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(7256), 1, sym_identifier, - STATE(4003), 1, - sym__signedness, - STATE(4252), 1, - sym__longness, - STATE(6778), 1, - sym_c_type, + ACTIONS(7258), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, 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(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, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(7261), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(7298), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4573), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4784), 2, + sym_operator_name, + sym_c_function_pointer_name, + [128073] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6338), 1, + STATE(6354), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107706] = 12, - ACTIONS(4632), 1, + [128117] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6045), 1, + STATE(6711), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107750] = 12, - ACTIONS(6329), 1, - anon_sym_LPAREN, - ACTIONS(6343), 1, + [128161] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, sym_identifier, - STATE(4242), 1, + STATE(4337), 1, sym__signedness, - STATE(4451), 1, + STATE(4553), 1, sym__longness, - STATE(5641), 1, + STATE(6730), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107794] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6864), 1, - sym_identifier, - ACTIONS(6866), 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(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, - [107836] = 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(6928), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [107878] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6907), 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(6909), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4272), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(4402), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(6930), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [107920] = 12, - ACTIONS(4632), 1, + [128205] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, - anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7300), 1, sym_identifier, - STATE(4071), 1, + ACTIONS(7302), 1, + anon_sym_LPAREN, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6169), 1, + STATE(7267), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4861), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [107964] = 12, - ACTIONS(4632), 1, + [128249] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4071), 1, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6433), 1, + STATE(6772), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108008] = 5, - ACTIONS(6934), 1, - anon_sym_DOT, - STATE(4148), 1, - aux_sym_class_definition_repeat2, - 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), 9, + [128293] = 12, + ACTIONS(6467), 1, 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, - [108038] = 12, - ACTIONS(1668), 1, + ACTIONS(6481), 1, anon_sym_long, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(6546), 1, sym_identifier, - STATE(4003), 1, + STATE(4536), 1, sym__signedness, - STATE(4252), 1, + STATE(4829), 1, sym__longness, - STATE(6489), 1, + STATE(5958), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(6483), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4648), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(6475), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108082] = 12, - ACTIONS(1668), 1, + [128337] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6356), 1, + STATE(6476), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108126] = 12, - 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, - ACTIONS(6944), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(6946), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, + [128381] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6525), 1, + STATE(6744), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108214] = 12, - ACTIONS(6329), 1, - anon_sym_LPAREN, - ACTIONS(6343), 1, + [128425] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, sym_identifier, - STATE(4242), 1, + STATE(4337), 1, sym__signedness, - STATE(4451), 1, + STATE(4553), 1, sym__longness, - STATE(5576), 1, + STATE(6850), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108258] = 12, - ACTIONS(4883), 1, + [128469] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6914), 1, + ACTIONS(7242), 1, sym_identifier, - ACTIONS(6948), 1, + ACTIONS(7271), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6916), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(6951), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4263), 2, + STATE(4575), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4467), 2, + STATE(4802), 2, sym_operator_name, sym_c_function_pointer_name, - [108302] = 11, - ACTIONS(4883), 1, + ACTIONS(7244), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [128511] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(7242), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(7271), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6647), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4144), 2, + STATE(4410), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4802), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6645), 3, - anon_sym_LPAREN, + ACTIONS(7244), 4, anon_sym_RPAREN, anon_sym_COMMA, - [108344] = 12, - ACTIONS(1668), 1, + anon_sym_COLON, + anon_sym_EQ, + [128553] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6564), 1, + STATE(6801), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108388] = 12, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6167), 1, + [128597] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4411), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4816), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6925), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [128639] = 12, + ACTIONS(6467), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(6481), 1, + anon_sym_long, + ACTIONS(6546), 1, sym_identifier, - STATE(4003), 1, + STATE(4536), 1, sym__signedness, - STATE(4252), 1, + STATE(4829), 1, sym__longness, - STATE(6473), 1, + STATE(5910), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(6483), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4648), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(6475), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108432] = 11, - ACTIONS(4883), 1, + [128683] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(6923), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6894), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4268), 2, + STATE(4579), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4816), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6645), 3, - anon_sym_LPAREN, + ACTIONS(7273), 4, anon_sym_RPAREN, anon_sym_COMMA, - [108474] = 11, - ACTIONS(4883), 1, + anon_sym_COLON, + anon_sym_EQ, + [128725] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(6923), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6647), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(4113), 2, + STATE(4415), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4816), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6686), 3, - anon_sym_LPAREN, + ACTIONS(6925), 4, anon_sym_RPAREN, anon_sym_COMMA, - [108516] = 11, - ACTIONS(4883), 1, + anon_sym_COLON, + anon_sym_EQ, + [128767] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(6923), 1, sym_identifier, - ACTIONS(6686), 1, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4143), 2, + STATE(4579), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4816), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6647), 4, + ACTIONS(6925), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [108558] = 12, - ACTIONS(4883), 1, + [128809] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6914), 1, + ACTIONS(7242), 1, sym_identifier, - ACTIONS(6948), 1, + ACTIONS(7279), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6916), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(6951), 2, + STATE(4575), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4802), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7244), 4, anon_sym_RPAREN, anon_sym_COMMA, - STATE(4151), 2, + anon_sym_COLON, + anon_sym_EQ, + [128851] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6986), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4570), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4467), 2, + STATE(4750), 2, sym_operator_name, sym_c_function_pointer_name, - [108602] = 11, - ACTIONS(4883), 1, + ACTIONS(7249), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [128893] = 11, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6330), 1, anon_sym_operator, - ACTIONS(6643), 1, + ACTIONS(6915), 1, sym_identifier, - STATE(4314), 1, + ACTIONS(7028), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(4899), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(4901), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6647), 2, + STATE(4477), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4750), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - STATE(4268), 2, + [128935] = 11, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6330), 1, + anon_sym_operator, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(7028), 1, + anon_sym_LPAREN, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4899), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4901), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4570), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4505), 2, + STATE(4750), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6686), 3, - anon_sym_LPAREN, + ACTIONS(6919), 4, anon_sym_RPAREN, anon_sym_COMMA, - [108644] = 12, - ACTIONS(4632), 1, + anon_sym_COLON, + anon_sym_EQ, + [128977] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5862), 1, + STATE(6630), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108688] = 12, - ACTIONS(4632), 1, + [129021] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6468), 1, + STATE(6909), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108732] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6864), 1, + [129065] = 12, + ACTIONS(1620), 1, + anon_sym_long, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, sym_identifier, - STATE(4314), 1, - sym_type_index, + STATE(4337), 1, + sym__signedness, + STATE(4553), 1, + sym__longness, + STATE(5883), 1, + sym_c_type, 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(4145), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(4416), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(6928), 3, + ACTIONS(1616), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1618), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1622), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4642), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1612), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [129109] = 12, + ACTIONS(6467), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [108774] = 12, - ACTIONS(1668), 1, + ACTIONS(6481), 1, anon_sym_long, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(6546), 1, sym_identifier, - STATE(4003), 1, + STATE(4536), 1, sym__signedness, - STATE(4252), 1, + STATE(4829), 1, sym__longness, - STATE(5653), 1, + STATE(5895), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(6477), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(6479), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(6483), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4648), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(6475), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108818] = 14, - ACTIONS(4489), 1, + [129153] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(4500), 1, + ACTIONS(7194), 1, sym_identifier, - ACTIONS(6175), 1, - anon_sym_LBRACK, - 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(4379), 1, - sym_type_index, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6409), 1, + sym_c_type, 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, - ACTIONS(6955), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4633), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [108866] = 12, - ACTIONS(6329), 1, - anon_sym_LPAREN, - ACTIONS(6343), 1, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [129197] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, sym_identifier, - STATE(4242), 1, + STATE(4395), 1, sym__signedness, - STATE(4451), 1, + STATE(4586), 1, sym__longness, - STATE(5586), 1, + STATE(6824), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108910] = 12, - ACTIONS(6329), 1, - anon_sym_LPAREN, - ACTIONS(6343), 1, + [129241] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, sym_identifier, - STATE(4242), 1, + STATE(4395), 1, sym__signedness, - STATE(4451), 1, + STATE(4586), 1, sym__longness, - STATE(6129), 1, + STATE(6072), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108954] = 12, - ACTIONS(4632), 1, + [129285] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5896), 1, + STATE(6116), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [108998] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6914), 1, - sym_identifier, - ACTIONS(6963), 1, + [129329] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, anon_sym_LPAREN, - STATE(4314), 1, - sym_type_index, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6705), 1, + sym_c_type, 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(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, - [109040] = 12, - ACTIONS(4632), 1, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [129373] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5927), 1, + STATE(6151), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(4626), 2, + anon_sym_signed, + anon_sym_unsigned, ACTIONS(4628), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(7068), 2, + anon_sym_const, + anon_sym_volatile, + STATE(4606), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4624), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [129417] = 12, + ACTIONS(4630), 1, + anon_sym_long, + ACTIONS(6715), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, + sym_identifier, + STATE(4395), 1, + sym__signedness, + STATE(4586), 1, + sym__longness, + STATE(6754), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109084] = 12, - ACTIONS(4632), 1, + [129461] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6323), 1, + STATE(6179), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109128] = 12, - ACTIONS(4632), 1, + [129505] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5963), 1, + STATE(6747), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109172] = 12, - ACTIONS(4632), 1, + [129549] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6386), 1, + STATE(6201), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109216] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6907), 1, - sym_identifier, - ACTIONS(6930), 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(4272), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(4402), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(6909), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [109258] = 12, - ACTIONS(4632), 1, + [129593] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(5995), 1, + STATE(6806), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109302] = 12, - ACTIONS(4632), 1, + [129637] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6477), 1, + STATE(6223), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [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(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, - [109388] = 12, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6914), 1, - sym_identifier, - ACTIONS(6963), 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, - 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(4467), 2, - sym_operator_name, - sym_c_function_pointer_name, - [109432] = 12, - ACTIONS(4632), 1, + [129681] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6019), 1, + STATE(6734), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109476] = 12, - ACTIONS(4632), 1, + [129725] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6436), 1, + STATE(6245), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109520] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - 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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - 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, - [109562] = 12, - ACTIONS(1668), 1, + [129769] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6585), 1, + STATE(6774), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109606] = 12, - ACTIONS(4632), 1, + [129813] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6038), 1, + STATE(6257), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109650] = 12, - ACTIONS(4632), 1, + [129857] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6531), 1, + STATE(6826), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 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, + [129901] = 2, 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(6631), 2, - anon_sym_RPAREN, + ACTIONS(7180), 17, anon_sym_COMMA, - ACTIONS(6633), 2, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, - 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [129925] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6060), 1, + STATE(6263), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109782] = 12, - ACTIONS(4632), 1, + [129969] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6432), 1, + STATE(6745), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109826] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - 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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - 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, - anon_sym_COLON, - anon_sym_EQ, - [109868] = 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(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(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, + [130013] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6073), 1, + STATE(6269), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [109956] = 12, - ACTIONS(4632), 1, + [130057] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6464), 1, + STATE(6746), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110000] = 12, - ACTIONS(4632), 1, + [130101] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6557), 1, + STATE(6276), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110044] = 12, - ACTIONS(4632), 1, + [130145] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6434), 1, + STATE(6852), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110088] = 11, - ACTIONS(4883), 1, - anon_sym_LBRACK, - 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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - 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, + [130189] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6435), 1, + STATE(6280), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110174] = 12, - ACTIONS(4632), 1, + [130233] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6317), 1, + STATE(6748), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110218] = 12, - ACTIONS(4632), 1, + [130277] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6437), 1, + STATE(6287), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110262] = 12, - ACTIONS(4632), 1, + [130321] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6438), 1, + STATE(6749), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4606), 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(6897), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - 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_AMP, - [110334] = 12, - ACTIONS(4632), 1, + [130365] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6776), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6970), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4071), 1, + STATE(4395), 1, sym__signedness, - STATE(4313), 1, + STATE(4586), 1, sym__longness, - STATE(6936), 1, + STATE(6293), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4294), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [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(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_EQ, - [110420] = 12, - ACTIONS(1668), 1, + [130409] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6441), 1, + STATE(6298), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110464] = 12, - ACTIONS(1668), 1, + [130453] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6110), 1, + STATE(6753), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110508] = 12, - ACTIONS(6329), 1, - anon_sym_LPAREN, - ACTIONS(6343), 1, + [130497] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6422), 1, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, sym_identifier, - STATE(4242), 1, + STATE(4337), 1, sym__signedness, - STATE(4451), 1, + STATE(4553), 1, sym__longness, - STATE(5555), 1, + STATE(6701), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(6341), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6345), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4375), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(6337), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110552] = 12, - ACTIONS(1668), 1, + [130541] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6398), 1, + STATE(6710), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110596] = 12, - ACTIONS(1668), 1, + [130585] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6411), 1, + STATE(6715), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110640] = 12, - ACTIONS(1668), 1, + [130629] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6421), 1, + STATE(6721), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110684] = 12, - ACTIONS(1668), 1, + [130673] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6426), 1, + STATE(6839), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [110728] = 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(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(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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - 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(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(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, - [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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - 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, + [130717] = 2, 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(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, + ACTIONS(4418), 17, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, 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, @@ -313035,517 +329268,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [110972] = 12, - ACTIONS(1668), 1, + [130741] = 12, + ACTIONS(4630), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6715), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(4003), 1, + STATE(4395), 1, sym__signedness, - STATE(4252), 1, + STATE(4586), 1, sym__longness, - STATE(6447), 1, + STATE(6473), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(4626), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(4628), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(7068), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4606), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(4624), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111016] = 12, - ACTIONS(1668), 1, + [130785] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6451), 1, + STATE(6759), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111060] = 12, - ACTIONS(1668), 1, + [130829] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6455), 1, + STATE(6762), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111104] = 12, - ACTIONS(1668), 1, + [130873] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6459), 1, + STATE(6766), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 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, + [130917] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6475), 1, + STATE(6770), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111234] = 12, - ACTIONS(1668), 1, + [130961] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6478), 1, + STATE(6790), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111278] = 12, - ACTIONS(1668), 1, + [131005] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6167), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4003), 1, + STATE(4337), 1, sym__signedness, - STATE(4252), 1, + STATE(4553), 1, sym__longness, - STATE(6481), 1, + STATE(6797), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1666), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(1670), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4328), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1660), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111322] = 12, - ACTIONS(4632), 1, + [131049] = 12, + ACTIONS(1620), 1, anon_sym_long, - ACTIONS(6552), 1, + ACTIONS(6318), 1, anon_sym_LPAREN, - ACTIONS(6880), 1, + ACTIONS(7082), 1, sym_identifier, - STATE(4071), 1, + STATE(4337), 1, sym__signedness, - STATE(4313), 1, + STATE(4553), 1, sym__longness, - STATE(6522), 1, + STATE(6720), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, + ACTIONS(1616), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4630), 2, + ACTIONS(1618), 2, anon_sym_char, anon_sym_short, - ACTIONS(6778), 2, + ACTIONS(1622), 2, anon_sym_const, anon_sym_volatile, - STATE(4312), 2, + STATE(4642), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4626), 3, + ACTIONS(1612), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [111366] = 12, - ACTIONS(1668), 1, - anon_sym_long, - ACTIONS(6167), 1, + [131093] = 13, + ACTIONS(4401), 1, anon_sym_LPAREN, - ACTIONS(6716), 1, + ACTIONS(4412), 1, sym_identifier, - STATE(4003), 1, - sym__signedness, - STATE(4252), 1, - sym__longness, - STATE(6563), 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, - [111410] = 11, - ACTIONS(4883), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_operator, - ACTIONS(6939), 1, - sym_identifier, - ACTIONS(6941), 1, - anon_sym_LPAREN, - STATE(4314), 1, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7227), 1, + anon_sym_complex, + ACTIONS(7304), 1, + anon_sym_EQ, + STATE(4655), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4881), 2, + ACTIONS(6324), 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, + ACTIONS(7221), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [111452] = 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(4879), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(4211), 2, + STATE(4954), 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, - [111494] = 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, + [131138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4879), 2, + ACTIONS(7306), 7, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4881), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(4276), 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, - [111536] = 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(6485), 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, - [111580] = 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_operator, anon_sym___stdcall, - ACTIONS(5069), 9, + ACTIONS(7308), 9, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [111607] = 11, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(6974), 1, - sym_identifier, - 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(4494), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4510), 2, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(4317), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(4485), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(6909), 3, - sym__newline, - anon_sym_COMMA, anon_sym_EQ, - [111648] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + [131163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6986), 2, + ACTIONS(7314), 2, anon_sym_int, anon_sym_double, - ACTIONS(6982), 5, + ACTIONS(7310), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6984), 9, + ACTIONS(7312), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -313555,141 +329601,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [111675] = 11, - ACTIONS(4658), 1, - anon_sym_operator, - ACTIONS(6692), 1, - sym_identifier, - ACTIONS(6988), 1, - anon_sym_LPAREN, - ACTIONS(6992), 1, - anon_sym_LBRACK, - 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(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(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_COMMA, - anon_sym_EQ, - [111757] = 11, - ACTIONS(4658), 1, + [131190] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6996), 1, + ACTIONS(7054), 1, sym_identifier, - ACTIONS(6998), 1, + ACTIONS(7056), 1, anon_sym_LPAREN, - ACTIONS(7001), 1, + ACTIONS(7059), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4232), 2, + STATE(4587), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4427), 2, + STATE(4808), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6868), 3, + ACTIONS(6919), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [111798] = 13, - ACTIONS(4489), 1, - anon_sym_LPAREN, - ACTIONS(4500), 1, - sym_identifier, - 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(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, + [131231] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7006), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(6966), 2, anon_sym_int, anon_sym_double, + ACTIONS(6962), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7008), 9, + ACTIONS(6964), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -313699,108 +329654,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [111868] = 10, - ACTIONS(6171), 1, + [131258] = 11, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6953), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(7010), 1, + ACTIONS(7316), 1, anon_sym_complex, - STATE(4246), 1, + STATE(4400), 1, aux_sym_class_definition_repeat2, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4323), 2, + STATE(4623), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(4489), 5, - anon_sym_LPAREN, + ACTIONS(6993), 4, 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, - 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, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [111981] = 7, - ACTIONS(6604), 1, + [131299] = 7, + ACTIONS(6962), 1, anon_sym_STAR, - ACTIONS(7018), 1, + ACTIONS(7322), 1, anon_sym_long, - STATE(4459), 1, + STATE(4718), 1, sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7014), 2, + ACTIONS(7318), 2, anon_sym_int, anon_sym_double, - ACTIONS(7016), 2, + ACTIONS(7320), 2, anon_sym_char, anon_sym_short, - ACTIONS(6606), 9, + ACTIONS(6964), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -313810,754 +329710,770 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [112014] = 4, - ACTIONS(6576), 1, + [131332] = 11, + ACTIONS(6322), 1, anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7324), 1, + anon_sym_complex, + STATE(4535), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 6, - anon_sym_LPAREN, + STATE(4627), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6324), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5069), 9, + ACTIONS(7024), 4, 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_GT, + anon_sym_QMARK, + [131373] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6764), 1, + ACTIONS(7326), 1, sym_identifier, - ACTIONS(6766), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(6769), 1, + ACTIONS(7331), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4253), 2, + STATE(4583), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4413), 2, + STATE(4785), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6633), 3, + ACTIONS(7244), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112082] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7020), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6982), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, + [131414] = 11, + ACTIONS(4656), 1, anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6984), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7326), 1, + sym_identifier, + ACTIONS(7328), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [112109] = 10, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(7331), 1, anon_sym_LBRACK, - ACTIONS(6953), 1, - anon_sym_DOT, - ACTIONS(7022), 1, - anon_sym_complex, - STATE(4148), 1, - aux_sym_class_definition_repeat2, - STATE(4379), 1, + STATE(4617), 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, + ACTIONS(4406), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6645), 5, - anon_sym_LPAREN, + STATE(4543), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(4785), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7244), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [112148] = 11, - ACTIONS(4658), 1, + anon_sym_EQ, + [131455] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(7024), 1, + ACTIONS(7072), 1, sym_identifier, - ACTIONS(7026), 1, + ACTIONS(7074), 1, anon_sym_LPAREN, - ACTIONS(7029), 1, + ACTIONS(7077), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4321), 2, + STATE(4546), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4404), 2, + STATE(4735), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6946), 3, + ACTIONS(6925), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112189] = 11, - ACTIONS(4658), 1, + [131496] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(7032), 1, + ACTIONS(7072), 1, sym_identifier, - ACTIONS(7034), 1, + ACTIONS(7334), 1, anon_sym_LPAREN, - ACTIONS(7037), 1, + ACTIONS(7338), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4247), 2, + STATE(4604), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4408), 2, + STATE(4735), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6916), 3, + ACTIONS(7273), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [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, - 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, + [131537] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6764), 1, + ACTIONS(7072), 1, sym_identifier, - ACTIONS(6766), 1, + ACTIONS(7074), 1, anon_sym_LPAREN, - ACTIONS(6769), 1, + ACTIONS(7077), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4298), 2, + STATE(4604), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4413), 2, + STATE(4735), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6633), 3, + ACTIONS(6925), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112300] = 11, - ACTIONS(4658), 1, + [131578] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6692), 1, + ACTIONS(7342), 1, sym_identifier, - ACTIONS(6694), 1, + ACTIONS(7344), 1, anon_sym_LPAREN, - ACTIONS(6697), 1, + ACTIONS(7347), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4309), 2, + STATE(4589), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4481), 2, + STATE(4717), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6647), 3, + ACTIONS(7233), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112341] = 4, + [131619] = 10, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7350), 1, + anon_sym_complex, + STATE(4556), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6608), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6604), 5, + STATE(4673), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4401), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [131658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7196), 6, + anon_sym_import, + anon_sym_cimport, anon_sym_STAR, sym_identifier, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6606), 9, + ACTIONS(7201), 10, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_AMP, - [112368] = 11, - ACTIONS(4658), 1, + anon_sym_GT, + anon_sym_QMARK, + [131683] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(7032), 1, + ACTIONS(7352), 1, sym_identifier, - ACTIONS(7034), 1, + ACTIONS(7354), 1, anon_sym_LPAREN, - ACTIONS(7037), 1, + ACTIONS(7357), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4287), 2, + STATE(4592), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4408), 2, + STATE(4731), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6916), 3, + ACTIONS(7240), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112409] = 11, - ACTIONS(4658), 1, + [131724] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6764), 1, + ACTIONS(7352), 1, sym_identifier, - ACTIONS(7040), 1, + ACTIONS(7354), 1, anon_sym_LPAREN, - ACTIONS(7044), 1, + ACTIONS(7357), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4298), 2, + STATE(4552), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4413), 2, + STATE(4731), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6911), 3, + ACTIONS(7240), 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, + [131765] = 3, 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, + ACTIONS(7306), 7, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6631), 4, + ACTIONS(7308), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(7058), 1, - anon_sym_complex, - STATE(4281), 1, - aux_sym_class_definition_repeat2, - STATE(4552), 1, + anon_sym_AMP, + [131790] = 11, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(7054), 1, + sym_identifier, + ACTIONS(7056), 1, + anon_sym_LPAREN, + ACTIONS(7059), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, - STATE(6561), 1, - sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4484), 2, + ACTIONS(4406), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4422), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4538), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + STATE(4808), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(6919), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [131831] = 4, + ACTIONS(6913), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(4489), 4, - anon_sym_LPAREN, + ACTIONS(5093), 9, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - [112532] = 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [131858] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7006), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(7360), 2, anon_sym_int, anon_sym_double, + ACTIONS(7310), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7008), 9, + ACTIONS(7312), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [112557] = 11, - ACTIONS(4658), 1, + [131885] = 11, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(6692), 1, + ACTIONS(7362), 1, sym_identifier, - ACTIONS(6694), 1, + ACTIONS(7364), 1, anon_sym_LPAREN, - ACTIONS(6697), 1, + ACTIONS(7367), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4510), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4235), 2, + STATE(4591), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(4481), 2, + STATE(4726), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(6647), 3, + ACTIONS(7261), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [112598] = 3, + [131926] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6932), 6, - anon_sym_import, - anon_sym_cimport, + ACTIONS(7032), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6962), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6937), 10, + ACTIONS(6964), 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_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [112623] = 11, - ACTIONS(6171), 1, + [131953] = 5, + ACTIONS(5101), 1, + anon_sym_as, + ACTIONS(6913), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(6655), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5093), 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, + [131982] = 4, + ACTIONS(6913), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 6, anon_sym_LPAREN, - ACTIONS(6953), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5093), 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, + [132009] = 10, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(7060), 1, + ACTIONS(7370), 1, anon_sym_complex, - STATE(4255), 1, + STATE(4400), 1, aux_sym_class_definition_repeat2, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4357), 2, + STATE(4664), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6682), 4, + ACTIONS(6986), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [112664] = 9, - ACTIONS(7064), 1, + [132048] = 11, + ACTIONS(4656), 1, + anon_sym_operator, + ACTIONS(7054), 1, + sym_identifier, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(7376), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(4406), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(4422), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4587), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7066), 4, - anon_sym_RPAREN, + STATE(4808), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(7249), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [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, + [132089] = 14, + ACTIONS(4401), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(4412), 1, + sym_identifier, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4314), 1, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7221), 1, + anon_sym_COMMA, + ACTIONS(7227), 1, + anon_sym_complex, + ACTIONS(7304), 1, + anon_sym_EQ, + ACTIONS(7380), 1, + anon_sym_COLON, + STATE(4655), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4954), 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, + [132136] = 11, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(7052), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(7058), 1, + ACTIONS(7390), 1, anon_sym_complex, - STATE(4281), 1, + STATE(4572), 1, aux_sym_class_definition_repeat2, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, + STATE(6777), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4484), 2, + STATE(4699), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(4489), 4, + ACTIONS(4401), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [112800] = 10, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(4879), 1, + [132177] = 5, + ACTIONS(5101), 1, + anon_sym_as, + ACTIONS(6913), 1, anon_sym_STAR, - ACTIONS(4883), 1, - anon_sym_LBRACK, - ACTIONS(7081), 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, - STATE(4409), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(5103), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(5093), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [112838] = 11, - ACTIONS(6655), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [132205] = 10, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(7052), 1, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(7083), 1, + ACTIONS(4905), 1, anon_sym_complex, - STATE(4274), 1, + STATE(4574), 1, aux_sym_class_definition_repeat2, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4492), 2, + STATE(4812), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6682), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(4901), 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(6897), 6, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6899), 8, + ACTIONS(4401), 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, - [112904] = 9, - ACTIONS(7064), 1, + anon_sym_EQ, + [132243] = 9, + ACTIONS(7394), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(7399), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(7402), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7087), 4, + ACTIONS(7396), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [112940] = 8, - ACTIONS(7096), 1, + [132279] = 11, + ACTIONS(4897), 1, + anon_sym_DOT, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7408), 1, + anon_sym_complex, + STATE(4577), 1, + aux_sym_class_definition_repeat2, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - sym_identifier, - 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, + STATE(4824), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7064), 5, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6993), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [112974] = 5, - ACTIONS(5077), 1, + [132319] = 5, + ACTIONS(5101), 1, anon_sym_as, - ACTIONS(6576), 1, + ACTIONS(6913), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 6, + ACTIONS(5103), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5069), 7, + ACTIONS(5093), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -314565,360 +330481,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [113002] = 8, - ACTIONS(7075), 1, + [132347] = 9, + ACTIONS(7394), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(7399), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(7402), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7064), 5, - anon_sym_LPAREN, + ACTIONS(7410), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [113036] = 9, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, + [132383] = 8, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(7413), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(7416), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7099), 4, - anon_sym_RPAREN, + ACTIONS(7394), 5, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [113072] = 5, - ACTIONS(7102), 1, - anon_sym_DOT, - STATE(4273), 1, - aux_sym_class_definition_repeat2, + [132417] = 4, + ACTIONS(7265), 1, + anon_sym_COLON, + ACTIONS(7267), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6932), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - 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, - [113100] = 11, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, + ACTIONS(7269), 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, + [132443] = 10, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(7052), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7390), 1, anon_sym_complex, - STATE(4286), 1, + STATE(4572), 1, aux_sym_class_definition_repeat2, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4458), 2, + STATE(4699), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6631), 3, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(4401), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(7054), 3, + [132481] = 4, + ACTIONS(7422), 1, + anon_sym_long, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7203), 6, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(7205), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [113140] = 9, - ACTIONS(7064), 1, + anon_sym_GT, + anon_sym_QMARK, + [132507] = 9, + ACTIONS(7394), 1, anon_sym_LPAREN, - ACTIONS(7075), 1, + ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(7399), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(7402), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7107), 4, + ACTIONS(7424), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [113176] = 9, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7075), 1, + [132543] = 8, + ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7069), 2, + ACTIONS(7399), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7072), 2, + ACTIONS(7402), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7110), 4, + ACTIONS(7394), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [113212] = 11, - ACTIONS(4877), 1, + [132577] = 10, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(4879), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7113), 1, + ACTIONS(7427), 1, anon_sym_complex, - STATE(4273), 1, + STATE(4603), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4400), 2, + STATE(4759), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6631), 3, - anon_sym_RPAREN, + ACTIONS(6986), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [113252] = 5, - ACTIONS(5077), 1, - anon_sym_as, - ACTIONS(6576), 1, - anon_sym_STAR, + anon_sym_RBRACK, + [132615] = 9, + ACTIONS(7394), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 6, - anon_sym_LPAREN, + ACTIONS(7392), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7399), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7402), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5069), 7, + STATE(4571), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7429), 4, 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_COLON, + anon_sym_EQ, + [132651] = 10, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(4879), 1, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4885), 1, + ACTIONS(7432), 1, anon_sym_complex, - STATE(4265), 1, + STATE(4577), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4477), 2, + STATE(4804), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(4489), 4, + ACTIONS(6986), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [132689] = 9, + ACTIONS(7394), 1, anon_sym_LPAREN, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4602), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7392), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7399), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7402), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4571), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7434), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [113318] = 11, - ACTIONS(4877), 1, + [132725] = 11, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(4879), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_LPAREN, - ACTIONS(7115), 1, + ACTIONS(7437), 1, anon_sym_complex, - STATE(4277), 1, + STATE(4603), 1, aux_sym_class_definition_repeat2, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4428), 2, + STATE(4795), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(6993), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6682), 3, + [132765] = 5, + ACTIONS(7439), 1, + anon_sym_DOT, + STATE(4577), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7196), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7201), 8, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [113358] = 10, - ACTIONS(7050), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [132793] = 11, + ACTIONS(4897), 1, anon_sym_DOT, - ACTIONS(7052), 1, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(7117), 1, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7442), 1, anon_sym_complex, - STATE(4286), 1, + STATE(4563), 1, aux_sym_class_definition_repeat2, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4489), 2, + STATE(4821), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(7024), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [113396] = 8, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7125), 1, + [132833] = 9, + ACTIONS(7394), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, anon_sym_LBRACK, - STATE(4379), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7119), 2, + ACTIONS(7392), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7399), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7122), 2, + ACTIONS(7402), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4282), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7064), 5, - anon_sym_LPAREN, + ACTIONS(7444), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [113429] = 5, - ACTIONS(7130), 1, + anon_sym_EQ, + [132869] = 11, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4283), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(7384), 1, + anon_sym_STAR, + ACTIONS(7388), 1, + anon_sym_LBRACK, + ACTIONS(7447), 1, + anon_sym_complex, + STATE(4576), 1, + aux_sym_class_definition_repeat2, + STATE(4842), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7133), 8, - sym__newline, - anon_sym_LPAREN, + STATE(4771), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7024), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [113456] = 5, - ACTIONS(6932), 1, + anon_sym___stdcall, + [132909] = 5, + ACTIONS(7196), 1, anon_sym_STAR, - ACTIONS(7135), 1, + ACTIONS(7449), 1, anon_sym_DOT, - STATE(4284), 1, + STATE(4581), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 11, + ACTIONS(7201), 11, sym__newline, anon_sym_SEMI, anon_sym_LPAREN, @@ -314930,83 +330928,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [113483] = 2, + [132936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(7452), 5, anon_sym_STAR, - ACTIONS(7138), 1, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7454), 9, anon_sym_DOT, - STATE(4286), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6937), 11, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, 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, - [113531] = 8, - ACTIONS(7141), 1, + [132959] = 8, + ACTIONS(7456), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7090), 2, + ACTIONS(7413), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7093), 2, + ACTIONS(7416), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4269), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7078), 4, + ACTIONS(7434), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [113564] = 3, + [132992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6604), 5, + ACTIONS(6962), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6606), 9, + ACTIONS(6964), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -315016,202 +330993,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [113587] = 5, - ACTIONS(7145), 1, - anon_sym_LBRACK, - STATE(4385), 1, - sym_type_index, + [133015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7133), 8, + ACTIONS(4949), 14, sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_with, anon_sym_EQ, - anon_sym_AMP, - [113614] = 5, - ACTIONS(7150), 1, - anon_sym_DOT, - STATE(4292), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [133036] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7148), 4, + ACTIONS(7190), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6962), 4, anon_sym_STAR, sym_identifier, - anon_sym_operator, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(7152), 8, + ACTIONS(6964), 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, - [113641] = 3, + anon_sym_GT, + anon_sym_QMARK, + [133061] = 8, + ACTIONS(7460), 1, + anon_sym_LBRACK, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6982), 5, - anon_sym_STAR, + ACTIONS(7392), 2, sym_identifier, - anon_sym_complex, anon_sym_operator, + ACTIONS(7413), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6984), 9, + ACTIONS(7416), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4566), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + 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, - [113664] = 5, - ACTIONS(7154), 1, - anon_sym_DOT, - STATE(4292), 1, - aux_sym_type_qualifier_repeat1, + [133094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 4, + ACTIONS(7310), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7133), 8, + ACTIONS(7312), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [113691] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7157), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(5079), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6576), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - 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, + [133117] = 8, + ACTIONS(7464), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_LPAREN, - ACTIONS(7161), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4360), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(7392), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(7413), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(7416), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_COMMA, - anon_sym_COLON, - 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, + STATE(4566), 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, + ACTIONS(7396), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [113786] = 9, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6175), 1, + anon_sym_EQ, + [133150] = 5, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_LPAREN, - ACTIONS(7165), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4677), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4341), 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, - [113821] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6982), 5, + ACTIONS(7468), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6984), 9, + ACTIONS(7470), 8, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -315219,119 +331124,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [113844] = 8, - ACTIONS(7167), 1, + [133177] = 8, + ACTIONS(7475), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7090), 2, + ACTIONS(7413), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7093), 2, + ACTIONS(7416), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4269), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7110), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [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(7171), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7175), 8, + ACTIONS(7429), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [133210] = 8, + ACTIONS(7479), 1, anon_sym_LBRACK, - anon_sym_AMP, - [113904] = 3, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7177), 5, - anon_sym_STAR, + ACTIONS(7392), 2, sym_identifier, - anon_sym_complex, anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7179), 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, - [113927] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7006), 6, + ACTIONS(7413), 2, anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(7008), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7416), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [113950] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5608), 14, + STATE(4566), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7410), 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, - [113971] = 2, + [133243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5596), 14, + ACTIONS(5672), 14, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -315346,39 +331194,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [113992] = 2, + [133264] = 5, + ACTIONS(7483), 1, + anon_sym_DOT, + STATE(4594), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5580), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(7468), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7470), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [114013] = 11, + anon_sym_LBRACK, + anon_sym_AMP, + [133291] = 11, ACTIONS(413), 1, anon_sym_long, - ACTIONS(4658), 1, + ACTIONS(4656), 1, anon_sym_operator, - ACTIONS(7181), 1, + ACTIONS(7486), 1, sym_identifier, - STATE(4025), 1, + STATE(4306), 1, sym__signedness, - STATE(4060), 1, + STATE(4359), 1, sym_int_type, - STATE(4241), 1, + STATE(4534), 1, sym__longness, - STATE(4470), 1, + STATE(4788), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, @@ -315393,189 +331244,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_double, anon_sym_complex, - [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(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(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, + [133330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7177), 5, + ACTIONS(7306), 6, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(7179), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7308), 8, anon_sym_LPAREN, 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, + anon_sym_GT, + anon_sym_QMARK, + [133353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6932), 5, + ACTIONS(7452), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6937), 7, + ACTIONS(7454), 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, - [114141] = 8, - ACTIONS(7188), 1, + [133376] = 8, + ACTIONS(7392), 1, + sym_identifier, + ACTIONS(7494), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(7090), 2, + ACTIONS(7488), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7093), 2, + ACTIONS(7491), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4269), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7087), 4, - sym__newline, + ACTIONS(7394), 5, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [114174] = 5, - ACTIONS(7192), 1, - anon_sym_LBRACK, - STATE(4377), 1, - sym_type_index, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [133409] = 5, + ACTIONS(7497), 1, + anon_sym_DOT, + STATE(4599), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 4, + ACTIONS(7196), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7133), 8, - anon_sym_DOT, + ACTIONS(7201), 7, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_AMP, - [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, - STATE(4546), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - 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, - 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, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [114273] = 4, + [133436] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6824), 2, + ACTIONS(7500), 2, anon_sym_int, anon_sym_double, - ACTIONS(6604), 4, + ACTIONS(7310), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(6606), 8, + ACTIONS(7312), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -315584,20 +331352,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [133461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7171), 4, + ACTIONS(7310), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7175), 8, + ACTIONS(7312), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -315606,685 +331372,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [114325] = 5, - ACTIONS(7173), 1, + [133484] = 5, + ACTIONS(7504), 1, anon_sym_DOT, - STATE(4283), 1, + STATE(4611), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7148), 4, + ACTIONS(7502), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7152), 8, - sym__newline, + ACTIONS(7506), 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, - [114352] = 3, + [133511] = 5, + ACTIONS(7196), 1, + anon_sym_STAR, + ACTIONS(7508), 1, + anon_sym_DOT, + STATE(4603), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6932), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6937), 9, - anon_sym_DOT, + ACTIONS(7201), 11, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_AMP, - [114375] = 8, - ACTIONS(7199), 1, + anon_sym_complex, + anon_sym___stdcall, + [133538] = 8, + ACTIONS(7511), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7392), 2, sym_identifier, anon_sym_operator, - ACTIONS(7090), 2, + ACTIONS(7413), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(7093), 2, + ACTIONS(7416), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4269), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7099), 4, + ACTIONS(7444), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [114408] = 10, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(4494), 1, + [133571] = 9, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7203), 1, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, anon_sym_complex, - STATE(4284), 1, - aux_sym_class_definition_repeat2, - STATE(4299), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4544), 2, + STATE(4630), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 3, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7028), 4, + anon_sym_COMMA, anon_sym_COLON, - [114445] = 8, - ACTIONS(7205), 1, + anon_sym_GT, + anon_sym_QMARK, + [133606] = 8, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7517), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - sym_identifier, - 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, + STATE(4666), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7107), 4, - sym__newline, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6956), 5, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [114478] = 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [133639] = 5, + ACTIONS(7519), 1, + anon_sym_LBRACK, + STATE(4624), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6604), 5, + ACTIONS(7468), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6606), 9, + ACTIONS(7470), 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_AMP, - [114501] = 8, - ACTIONS(7209), 1, - anon_sym_LBRACK, - STATE(4299), 1, - sym_type_index, + [133666] = 5, + ACTIONS(7522), 1, + anon_sym_DOT, + STATE(4608), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, + ACTIONS(7468), 4, + anon_sym_STAR, sym_identifier, 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(7066), 4, + ACTIONS(7470), 8, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [114534] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7213), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6982), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6984), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [114559] = 7, - ACTIONS(6171), 1, + [133693] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7525), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4689), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 5, + ACTIONS(7279), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [114589] = 12, - ACTIONS(7215), 1, + [133726] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5358), 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, + [133747] = 5, + ACTIONS(7504), 1, + anon_sym_DOT, + STATE(4594), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7527), 4, + anon_sym_STAR, sym_identifier, - ACTIONS(7217), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7529), 8, anon_sym_LPAREN, - ACTIONS(7219), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, 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, + anon_sym_AMP, + [133774] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(5354), 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, + [133795] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(5103), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - [114629] = 8, - ACTIONS(6171), 1, + ACTIONS(6913), 4, anon_sym_STAR, - ACTIONS(6175), 1, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(7533), 4, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [133822] = 9, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7221), 1, + ACTIONS(7246), 1, anon_sym_LPAREN, - STATE(4379), 1, + ACTIONS(7535), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4646), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7224), 4, + ACTIONS(7290), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [114661] = 9, - ACTIONS(6673), 1, - anon_sym_LPAREN, - ACTIONS(7052), 1, + [133857] = 11, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7226), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7537), 1, anon_sym_complex, - STATE(4552), 1, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4441), 2, + ACTIONS(6993), 2, + sym__newline, + anon_sym_COLON, + STATE(4887), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6686), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [114695] = 8, - ACTIONS(6171), 1, + [133896] = 10, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_LPAREN, - STATE(4379), 1, + ACTIONS(7539), 1, + anon_sym_complex, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4846), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6951), 4, - anon_sym_COMMA, + ACTIONS(6986), 3, + sym__newline, + anon_sym_LPAREN, 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, - STATE(4314), 1, - sym_type_index, + [133933] = 5, + ACTIONS(7541), 1, + anon_sym_DOT, + STATE(4618), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4417), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4881), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(7502), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6614), 4, + ACTIONS(7506), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [114759] = 12, - ACTIONS(7217), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, - sym_identifier, - 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, + anon_sym_AMP, + [133960] = 5, + ACTIONS(7541), 1, + anon_sym_DOT, + STATE(4608), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(7527), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7529), 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, - [114799] = 12, - ACTIONS(7217), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, + [133987] = 11, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, - sym_identifier, - STATE(1744), 1, - sym_c_function_definition, - STATE(4813), 1, - sym_c_name, - STATE(4833), 1, - sym_c_parameters, - STATE(6121), 1, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7543), 1, + anon_sym_complex, + STATE(4615), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 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(6171), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7024), 2, + sym__newline, + anon_sym_COLON, + STATE(4857), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [114839] = 3, + anon_sym___stdcall, + [134026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7234), 4, + ACTIONS(6962), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7236), 9, - sym__newline, + ACTIONS(6964), 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, - [114861] = 4, - ACTIONS(6576), 1, - anon_sym_STAR, + [134049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5069), 6, + ACTIONS(7196), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7201), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(5079), 6, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [114885] = 9, - ACTIONS(4879), 1, + [134072] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(7545), 1, anon_sym_LPAREN, - ACTIONS(7238), 1, - anon_sym_complex, - STATE(4314), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4420), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 3, - anon_sym_RPAREN, + ACTIONS(7548), 4, anon_sym_COMMA, - anon_sym_EQ, - [114919] = 7, - ACTIONS(6171), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [134104] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 5, - anon_sym_LPAREN, + ACTIONS(7288), 4, 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(6953), 1, - anon_sym_DOT, - ACTIONS(7242), 1, - sym_identifier, - ACTIONS(7244), 1, - anon_sym_complex, - STATE(4148), 1, - aux_sym_class_definition_repeat2, - STATE(4379), 1, - sym_type_index, + [134136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(7550), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7552), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, 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_EQ, anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_LPAREN, - ACTIONS(6953), 1, - anon_sym_DOT, - ACTIONS(7246), 1, + anon_sym_AMP, + [134158] = 12, + ACTIONS(7554), 1, sym_identifier, - ACTIONS(7248), 1, - anon_sym_complex, - STATE(4379), 1, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, + anon_sym_LBRACK, + STATE(1360), 1, + sym_c_function_definition, + STATE(5144), 1, + sym_c_name, + STATE(5247), 1, + sym_c_parameters, + STATE(6345), 1, sym_type_index, - STATE(4381), 1, - aux_sym_class_definition_repeat2, + STATE(6729), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 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(6745), 2, - sym__dedent, - anon_sym_LPAREN, - ACTIONS(7250), 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, - [115047] = 8, - ACTIONS(6171), 1, + [134198] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4342), 2, + STATE(4623), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6951), 4, + ACTIONS(6993), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115079] = 7, - ACTIONS(6171), 1, + [134230] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6930), 5, - anon_sym_LPAREN, + ACTIONS(6993), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115109] = 8, - ACTIONS(6171), 1, + [134262] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4325), 2, + STATE(4653), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 4, + ACTIONS(7279), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115141] = 8, - ACTIONS(6171), 1, + [134294] = 4, + ACTIONS(6913), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5093), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(5103), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(7252), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [134318] = 8, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 4, + ACTIONS(7279), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115173] = 8, - ACTIONS(6171), 1, + [134350] = 7, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6941), 1, - anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6944), 4, + ACTIONS(7279), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115205] = 3, + [134380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6932), 5, + ACTIONS(7196), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6937), 8, + ACTIONS(7201), 8, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -316293,83 +332089,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [115227] = 8, - ACTIONS(6171), 1, + [134402] = 10, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_LPAREN, - STATE(4379), 1, + ACTIONS(4420), 1, + anon_sym_complex, + STATE(4616), 1, + aux_sym_class_definition_repeat2, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + ACTIONS(4401), 2, + sym__newline, + anon_sym_LPAREN, + STATE(4893), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(4422), 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, + [134438] = 12, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, + anon_sym_LBRACK, + ACTIONS(7560), 1, + sym_identifier, + STATE(1676), 1, + sym_c_function_definition, + STATE(5234), 1, + sym_c_name, + STATE(5247), 1, + sym_c_parameters, + STATE(6345), 1, + sym_type_index, + STATE(6729), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [134478] = 4, + ACTIONS(7203), 1, anon_sym_STAR, + ACTIONS(7562), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(7205), 11, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym___stdcall, - [115281] = 8, - ACTIONS(7052), 1, + [134502] = 8, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(7255), 1, + ACTIONS(7564), 1, anon_sym_complex, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4437), 2, + STATE(4817), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, + ACTIONS(7279), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [115313] = 3, + [134534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7257), 4, + ACTIONS(7566), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7259), 9, + ACTIONS(7568), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -316379,675 +332206,994 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [115335] = 12, - ACTIONS(7217), 1, + [134556] = 12, + ACTIONS(7556), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, + ACTIONS(7558), 1, anon_sym_LBRACK, - ACTIONS(7261), 1, + ACTIONS(7570), 1, sym_identifier, - STATE(3655), 1, + STATE(3687), 1, sym_c_function_definition, - STATE(4802), 1, + STATE(5168), 1, sym_c_parameters, - STATE(4804), 1, + STATE(5220), 1, sym_c_name, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6469), 1, + STATE(6781), 1, sym_template_params, - STATE(6623), 1, + STATE(7219), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [115375] = 7, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6175), 1, - anon_sym_LBRACK, - STATE(4379), 1, - sym_type_index, + [134596] = 3, 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, + ACTIONS(7572), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6928), 5, + ACTIONS(7574), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [115405] = 8, - ACTIONS(4879), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [134618] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(7263), 1, + ACTIONS(7576), 1, anon_sym_complex, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4393), 2, + STATE(4773), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, + ACTIONS(7279), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [115437] = 3, + [134650] = 3, + ACTIONS(7196), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7257), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7259), 9, - sym__newline, + ACTIONS(7201), 12, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_AMP, - [115459] = 5, - ACTIONS(7265), 1, - anon_sym_DOT, - STATE(4368), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_complex, + anon_sym___stdcall, + [134672] = 8, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(7578), 1, + anon_sym_complex, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7148), 3, - anon_sym_STAR, - sym_identifier, + STATE(4714), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7152), 8, + ACTIONS(6956), 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, - [115485] = 7, - ACTIONS(6171), 1, + anon_sym_EQ, + [134704] = 7, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4339), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 5, + ACTIONS(7580), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115515] = 12, - ACTIONS(7217), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, - anon_sym_LBRACK, - ACTIONS(7267), 1, - sym_identifier, - 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, + [134734] = 9, + ACTIONS(4899), 1, 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, + ACTIONS(4903), 1, anon_sym_LBRACK, - 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, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + anon_sym_complex, + STATE(4602), 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, + STATE(4822), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [115595] = 8, - ACTIONS(6171), 1, + anon_sym___stdcall, + ACTIONS(7028), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [134768] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(7584), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4327), 2, + STATE(4622), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6631), 4, + ACTIONS(7580), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115627] = 8, - ACTIONS(6171), 1, + [134800] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(7584), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6631), 4, + ACTIONS(7580), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115659] = 8, - ACTIONS(6171), 1, + [134832] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, + ACTIONS(7258), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4344), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, + ACTIONS(7298), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115691] = 7, - ACTIONS(6171), 1, + [134864] = 8, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7587), 1, + anon_sym_complex, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4362), 2, + STATE(4819), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 5, + ACTIONS(6956), 4, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [134896] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [115721] = 8, - ACTIONS(6171), 1, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7001), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [134938] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, + ACTIONS(7237), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4647), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, + ACTIONS(7288), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115753] = 9, - ACTIONS(6963), 1, + [134970] = 11, + ACTIONS(4401), 1, anon_sym_LPAREN, - ACTIONS(7052), 1, - anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4412), 1, + sym_identifier, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7607), 1, anon_sym_complex, - STATE(4552), 1, + STATE(4668), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4488), 2, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4984), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6966), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + [135008] = 12, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + sym_identifier, + STATE(1803), 1, + sym_c_function_definition, + STATE(5122), 1, + sym_c_parameters, + STATE(5181), 1, + sym_c_name, + STATE(6345), 1, + sym_type_index, + STATE(6756), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [115787] = 7, - ACTIONS(6171), 1, + [135048] = 8, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7246), 1, + anon_sym_LPAREN, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 5, - anon_sym_LPAREN, + ACTIONS(7290), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115817] = 5, - ACTIONS(7273), 1, - anon_sym_LBRACK, - STATE(4411), 1, - sym_type_index, + [135080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 3, + ACTIONS(7611), 4, anon_sym_STAR, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(7133), 8, + ACTIONS(7613), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [115843] = 3, - ACTIONS(6932), 1, + [135102] = 11, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6986), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7615), 1, + sym_identifier, + ACTIONS(7617), 1, + anon_sym_complex, + STATE(4400), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4917), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [135140] = 11, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7619), 1, + sym_identifier, + ACTIONS(7621), 1, + anon_sym_complex, + STATE(4661), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4907), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [135178] = 12, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, + anon_sym_LBRACK, + ACTIONS(7623), 1, + sym_identifier, + STATE(1831), 1, + sym_c_function_definition, + STATE(5122), 1, + sym_c_parameters, + STATE(5195), 1, + sym_c_name, + STATE(6345), 1, + sym_type_index, + STATE(6756), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [135218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 12, + ACTIONS(7625), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(7627), 9, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_AMP, + [135240] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7264), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135282] = 9, + ACTIONS(7246), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, + anon_sym_STAR, + ACTIONS(7388), 1, + anon_sym_LBRACK, + ACTIONS(7629), 1, anon_sym_complex, + STATE(4842), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4783), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7290), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - [115865] = 9, - ACTIONS(4879), 1, - anon_sym_STAR, - ACTIONS(4883), 1, + [135316] = 11, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(7276), 1, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7631), 1, + sym_identifier, + ACTIONS(7633), 1, anon_sym_complex, - STATE(4314), 1, + STATE(4400), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4987), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [135354] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4432), 2, + STATE(4697), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 3, - anon_sym_RPAREN, + ACTIONS(7271), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [115899] = 7, - ACTIONS(6171), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [135384] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7171), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135426] = 7, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4334), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 5, + ACTIONS(7271), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [115929] = 7, - ACTIONS(6171), 1, + [135456] = 7, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4631), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 5, + ACTIONS(7028), 5, anon_sym_LPAREN, anon_sym_COMMA, 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, + [135486] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7128), 3, - anon_sym_STAR, - sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7133), 8, + ACTIONS(7028), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [115985] = 11, - ACTIONS(6175), 1, + [135516] = 12, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, + anon_sym_LBRACK, + ACTIONS(7635), 1, + sym_identifier, + STATE(3877), 1, + sym_c_function_definition, + STATE(5123), 1, + sym_c_name, + STATE(5180), 1, + sym_c_parameters, + STATE(6345), 1, + sym_type_index, + STATE(6695), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [135556] = 11, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(6986), 1, anon_sym_LPAREN, - ACTIONS(6953), 1, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(7281), 1, + ACTIONS(7615), 1, sym_identifier, - ACTIONS(7283), 1, + ACTIONS(7637), 1, anon_sym_complex, - STATE(4148), 1, + STATE(4400), 1, aux_sym_class_definition_repeat2, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4673), 2, + STATE(4922), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [116023] = 11, - ACTIONS(4489), 1, - anon_sym_LPAREN, - ACTIONS(4500), 1, - sym_identifier, - ACTIONS(6175), 1, + [135594] = 11, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6953), 1, + ACTIONS(6999), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(7285), 1, + ACTIONS(7619), 1, + sym_identifier, + ACTIONS(7639), 1, anon_sym_complex, - STATE(4379), 1, - sym_type_index, - STATE(4382), 1, + STATE(4672), 1, aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4617), 2, + STATE(4927), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [116061] = 7, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6175), 1, + [135632] = 12, + ACTIONS(7556), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7641), 1, + sym_identifier, + STATE(3880), 1, + sym_c_function_definition, + STATE(5157), 1, + sym_c_name, + STATE(5180), 1, + sym_c_parameters, + STATE(6345), 1, sym_type_index, + STATE(6695), 1, + sym_template_params, + STATE(7219), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6173), 3, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6686), 5, - anon_sym_LPAREN, + [135672] = 13, + ACTIONS(7589), 1, anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [116091] = 10, - ACTIONS(4487), 1, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7141), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135714] = 11, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(4494), 1, + ACTIONS(7631), 1, + sym_identifier, + ACTIONS(7643), 1, + anon_sym_complex, + STATE(4400), 1, + aux_sym_class_definition_repeat2, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, anon_sym_STAR, - ACTIONS(4504), 1, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4908), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [135752] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_complex, - STATE(4299), 1, + STATE(4690), 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, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [116127] = 4, - ACTIONS(7289), 1, - anon_sym_AT, + ACTIONS(6986), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [135782] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(6911), 1, + sym__comprehension_clauses, 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, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7292), 4, + ACTIONS(7645), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7294), 9, - sym__newline, + ACTIONS(7647), 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, - [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, + [135846] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7153), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4487), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(7054), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6614), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [116205] = 3, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7298), 4, + ACTIONS(7550), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7300), 9, + ACTIONS(7552), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -317057,776 +333203,996 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [116227] = 3, + [135910] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(6970), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [135952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7302), 4, + ACTIONS(7566), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7304), 9, + ACTIONS(7568), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [116249] = 7, - ACTIONS(6171), 1, - anon_sym_STAR, - ACTIONS(6175), 1, - anon_sym_LBRACK, - STATE(4379), 1, - sym_type_index, + [135974] = 13, + ACTIONS(7589), 1, + anon_sym_COMMA, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7595), 1, + anon_sym_COLON, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(7601), 1, + anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, + STATE(7313), 1, + sym__comprehension_clauses, 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, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [136016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7572), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6645), 5, + ACTIONS(7574), 9, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, 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, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [136038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7171), 3, + ACTIONS(7625), 4, anon_sym_STAR, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(7175), 8, + ACTIONS(7627), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [116305] = 12, - ACTIONS(7217), 1, + [136060] = 12, + ACTIONS(7556), 1, anon_sym_LPAREN, - ACTIONS(7219), 1, + ACTIONS(7558), 1, anon_sym_LBRACK, - ACTIONS(7306), 1, + ACTIONS(7649), 1, sym_identifier, - STATE(3697), 1, + STATE(3673), 1, sym_c_function_definition, - STATE(4803), 1, - sym_c_name, - STATE(4905), 1, + STATE(5168), 1, sym_c_parameters, - STATE(6121), 1, + STATE(5178), 1, + sym_c_name, + STATE(6345), 1, sym_type_index, - STATE(6389), 1, + STATE(6781), 1, sym_template_params, - STATE(6623), 1, + STATE(7219), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [116345] = 11, - ACTIONS(6175), 1, + [136100] = 9, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(7246), 1, anon_sym_LPAREN, - ACTIONS(6953), 1, - anon_sym_DOT, - ACTIONS(7281), 1, - sym_identifier, - ACTIONS(7308), 1, + ACTIONS(7651), 1, anon_sym_complex, - STATE(4148), 1, - aux_sym_class_definition_repeat2, - STATE(4379), 1, + STATE(4602), 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(4701), 2, + STATE(4749), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [116383] = 11, - ACTIONS(6175), 1, - anon_sym_LBRACK, - 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(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7290), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [136134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(7611), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7613), 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(4694), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [116421] = 11, - ACTIONS(6175), 1, + [136156] = 4, + ACTIONS(7655), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4686), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(7653), 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, + [136180] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, anon_sym_LBRACK, - 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, + STATE(4690), 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(4625), 2, + STATE(4664), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [116459] = 3, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6986), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [136210] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7298), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(4643), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7300), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7290), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + [136240] = 7, + ACTIONS(6322), 1, + anon_sym_STAR, + ACTIONS(6326), 1, anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6324), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [116481] = 3, + anon_sym___stdcall, + ACTIONS(7290), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [136270] = 5, + ACTIONS(7658), 1, + anon_sym_DOT, + STATE(4694), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7302), 4, + ACTIONS(7502), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(7304), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(7506), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [116503] = 3, + anon_sym_GT, + anon_sym_QMARK, + [136296] = 3, + ACTIONS(7196), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7314), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7316), 9, + ACTIONS(7201), 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_EQ, anon_sym_LBRACK, anon_sym_AMP, - [116525] = 3, + anon_sym_complex, + anon_sym___stdcall, + [136318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7292), 4, + ACTIONS(7645), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7294), 9, + ACTIONS(7647), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [116547] = 12, - ACTIONS(7217), 1, - anon_sym_LPAREN, - ACTIONS(7219), 1, + [136340] = 5, + ACTIONS(7660), 1, anon_sym_LBRACK, - 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, + STATE(4826), 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, - [116587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7314), 4, + ACTIONS(7468), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(7316), 9, + ACTIONS(7470), 8, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [116609] = 4, - ACTIONS(6897), 1, - anon_sym_STAR, - ACTIONS(7320), 1, - anon_sym_long, + anon_sym_GT, + anon_sym_QMARK, + [136366] = 5, + ACTIONS(7658), 1, + anon_sym_DOT, + STATE(4695), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6899), 11, + ACTIONS(7527), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7529), 8, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [116633] = 3, + anon_sym_GT, + anon_sym_QMARK, + [136392] = 5, + ACTIONS(7663), 1, + anon_sym_DOT, + STATE(4695), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7234), 4, + ACTIONS(7468), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(7236), 9, - anon_sym_DOT, + ACTIONS(7470), 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, - [116655] = 7, - ACTIONS(4879), 1, + anon_sym_GT, + anon_sym_QMARK, + [136418] = 9, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + ACTIONS(7666), 1, + anon_sym_complex, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4767), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7028), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7322), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [116684] = 7, - ACTIONS(4879), 1, + [136452] = 7, + ACTIONS(6322), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(6324), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 4, + ACTIONS(7231), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [116713] = 8, - ACTIONS(4879), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [136482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7140), 2, + sym__dedent, + anon_sym_LPAREN, + ACTIONS(7668), 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, + [136504] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4424), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6951), 3, - anon_sym_RPAREN, + ACTIONS(6986), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [116744] = 7, - ACTIONS(7052), 1, + anon_sym_RBRACK, + [136533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7670), 4, anon_sym_STAR, - ACTIONS(7056), 1, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(7672), 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, + [136554] = 3, + ACTIONS(7306), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7308), 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, + [136575] = 7, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, - anon_sym_LPAREN, + ACTIONS(7674), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + [136604] = 12, + ACTIONS(7601), 1, anon_sym_RBRACK, - [116773] = 7, - ACTIONS(4879), 1, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(6988), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [136643] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6930), 4, + ACTIONS(7279), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [116802] = 8, - ACTIONS(4494), 1, + anon_sym_RBRACK, + [136672] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7572), 3, anon_sym_STAR, - ACTIONS(4504), 1, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7574), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(7324), 1, - anon_sym_complex, - STATE(4299), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [136693] = 8, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(6990), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4554), 2, + STATE(4824), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [116833] = 9, - ACTIONS(4494), 1, + ACTIONS(6993), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [136724] = 9, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(7009), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7690), 1, anon_sym_complex, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6966), 2, + ACTIONS(7028), 2, sym__newline, anon_sym_COLON, - STATE(4575), 2, + STATE(4860), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [116866] = 7, - ACTIONS(4879), 1, + [136757] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4823), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7328), 4, + ACTIONS(7028), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [116895] = 8, - ACTIONS(4879), 1, + [136786] = 12, + ACTIONS(7692), 1, + anon_sym_RPAREN, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(6927), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [136825] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7710), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6951), 3, - anon_sym_RPAREN, + ACTIONS(7708), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [116926] = 13, - ACTIONS(7330), 1, + [136854] = 12, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(7332), 1, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7706), 1, anon_sym_or, - STATE(5060), 1, - sym_for_in_clause, - STATE(5902), 1, + ACTIONS(7713), 1, + anon_sym_RPAREN, + STATE(6520), 1, aux_sym__collection_elements_repeat1, - STATE(6724), 1, + STATE(7142), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [136893] = 12, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7715), 1, + anon_sym_RPAREN, + ACTIONS(7717), 1, + anon_sym_COMMA, + STATE(6611), 1, + aux_sym_argument_list_repeat1, + STATE(7250), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116967] = 7, - ACTIONS(4879), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [136932] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7721), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4412), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7348), 4, - anon_sym_RPAREN, + ACTIONS(7719), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [116996] = 7, - ACTIONS(4494), 1, + [136961] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7350), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7322), 4, - sym__newline, + ACTIONS(7028), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [117025] = 7, - ACTIONS(4494), 1, + [136990] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7355), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4490), 2, + STATE(4827), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7353), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7279), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [117054] = 7, - ACTIONS(4494), 1, + [137021] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7360), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7358), 4, + ACTIONS(7724), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117083] = 7, - ACTIONS(4494), 1, + [137050] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7365), 1, + ACTIONS(7731), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4710), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7363), 4, + ACTIONS(7729), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117112] = 8, - ACTIONS(4879), 1, + [137079] = 4, + ACTIONS(7310), 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, + ACTIONS(7734), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(7312), 9, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6966), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [117143] = 7, - ACTIONS(4494), 1, + [137102] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7370), 1, + ACTIONS(7738), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4403), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7368), 4, + ACTIONS(7736), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117172] = 7, - ACTIONS(4879), 1, + [137131] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4781), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 4, - anon_sym_LPAREN, + ACTIONS(7741), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [117201] = 3, + [137160] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(7743), 1, + anon_sym_LBRACK, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7298), 3, - anon_sym_STAR, - sym_identifier, + STATE(4566), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4422), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7300), 9, - anon_sym_DOT, + ACTIONS(7674), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [117222] = 3, + anon_sym_EQ, + [137189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7302), 3, + ACTIONS(7452), 4, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(7304), 9, - anon_sym_DOT, + ACTIONS(7454), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -317835,149 +334201,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [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, - 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(7373), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [117272] = 7, - ACTIONS(4494), 1, + [137210] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7377), 1, + ACTIONS(7748), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4498), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7375), 4, + ACTIONS(7746), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117301] = 7, - ACTIONS(4879), 1, + [137239] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7380), 4, + ACTIONS(7751), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [117330] = 8, - ACTIONS(4879), 1, + [137268] = 12, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(7276), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [137307] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7755), 1, anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4754), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7224), 3, - anon_sym_RPAREN, + ACTIONS(7753), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117361] = 7, - ACTIONS(4879), 1, + [137336] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4399), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7382), 4, - anon_sym_RPAREN, + ACTIONS(7580), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [117390] = 7, - ACTIONS(4879), 1, + anon_sym_RBRACK, + [137365] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4746), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_LPAREN, + ACTIONS(7758), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [117419] = 3, + [137394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7384), 4, + ACTIONS(6913), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(7386), 8, + ACTIONS(5103), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -317986,579 +334356,614 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [117440] = 8, - ACTIONS(4494), 1, + [137415] = 12, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7760), 1, + anon_sym_RPAREN, + ACTIONS(7762), 1, + anon_sym_COMMA, + STATE(6061), 1, + aux_sym_argument_list_repeat1, + STATE(6927), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [137454] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(7764), 1, anon_sym_LBRACK, - ACTIONS(7388), 1, - anon_sym_complex, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4509), 2, + STATE(4713), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6614), 3, + ACTIONS(7741), 4, 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, + anon_sym_COMMA, + anon_sym_EQ, + [137483] = 3, 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, + ACTIONS(7767), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(7240), 3, - anon_sym_RPAREN, + ACTIONS(7769), 8, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [117502] = 7, - ACTIONS(7390), 1, - anon_sym_STAR, - ACTIONS(7396), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(4552), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [137504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(7393), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(7611), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(7064), 4, + ACTIONS(7613), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [117531] = 7, - ACTIONS(4879), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [137525] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4727), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7399), 4, - anon_sym_RPAREN, + ACTIONS(7290), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [117560] = 7, - ACTIONS(4879), 1, + anon_sym_RBRACK, + [137554] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7773), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4440), 2, + STATE(4721), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7375), 4, - anon_sym_RPAREN, + ACTIONS(7771), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [117589] = 8, - ACTIONS(4879), 1, + [137583] = 12, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(7232), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [137622] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6941), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4745), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6944), 3, + ACTIONS(7776), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [117620] = 13, - ACTIONS(7330), 1, + [137651] = 12, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(7332), 1, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7706), 1, anon_sym_or, - STATE(5060), 1, - sym_for_in_clause, - STATE(5902), 1, + ACTIONS(7778), 1, + anon_sym_RPAREN, + STATE(6520), 1, aux_sym__collection_elements_repeat1, - STATE(6817), 1, + STATE(7133), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117661] = 7, - ACTIONS(4494), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [137690] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7403), 1, + ACTIONS(7782), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4474), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7401), 4, + ACTIONS(7780), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117690] = 7, - ACTIONS(4494), 1, + [137719] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7406), 1, + ACTIONS(7787), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4475), 2, + STATE(4719), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7382), 4, + ACTIONS(7785), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [117719] = 8, - ACTIONS(4879), 1, + [137748] = 8, + ACTIONS(7237), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4791), 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, + ACTIONS(7288), 3, anon_sym_COMMA, anon_sym_EQ, - [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, - STATE(4494), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7353), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [117779] = 7, - ACTIONS(4494), 1, + [137779] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7411), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4406), 2, + STATE(4792), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7409), 4, - sym__newline, + ACTIONS(7271), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [117808] = 7, - ACTIONS(7052), 1, + [137808] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4456), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 4, + ACTIONS(7580), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [117837] = 8, - ACTIONS(4879), 1, + [137837] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4768), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 3, + ACTIONS(7790), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [117868] = 8, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7052), 1, + [137866] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4458), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6631), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [117899] = 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(4465), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6866), 3, + ACTIONS(7780), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [117930] = 7, - ACTIONS(4879), 1, + [137895] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 4, - anon_sym_LPAREN, + ACTIONS(7792), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [117959] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6982), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6984), 8, - anon_sym_LPAREN, + [137924] = 12, + ACTIONS(7694), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [117980] = 7, - ACTIONS(7052), 1, - anon_sym_STAR, - ACTIONS(7056), 1, - anon_sym_LBRACK, - STATE(4552), 1, - sym_type_index, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7794), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(7200), 1, + sym__comprehension_clauses, 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(6966), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [137963] = 12, + ACTIONS(7601), 1, anon_sym_RBRACK, - [118009] = 13, - ACTIONS(7330), 1, + ACTIONS(7676), 1, anon_sym_COMMA, - ACTIONS(7332), 1, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7680), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7682), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7684), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7688), 1, anon_sym_or, - STATE(5060), 1, - sym_for_in_clause, - STATE(5902), 1, + STATE(6283), 1, aux_sym__collection_elements_repeat1, - STATE(6760), 1, + STATE(7154), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118050] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7257), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(7259), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [118071] = 7, - ACTIONS(4879), 1, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138002] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7414), 4, + ACTIONS(7580), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [118100] = 8, - ACTIONS(6888), 1, - anon_sym_LPAREN, - ACTIONS(7052), 1, + [138033] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4801), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6866), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [118131] = 7, - ACTIONS(4879), 1, + ACTIONS(7796), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [138062] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + ACTIONS(7258), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4396), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 4, - anon_sym_LPAREN, + ACTIONS(7298), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [118160] = 8, - ACTIONS(4879), 1, + [138093] = 12, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7798), 1, + anon_sym_RPAREN, + ACTIONS(7800), 1, + anon_sym_COMMA, + STATE(6133), 1, + aux_sym_argument_list_repeat1, + STATE(7142), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138132] = 12, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7802), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(7250), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138171] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7804), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4400), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6631), 3, - anon_sym_RPAREN, + ACTIONS(7751), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [118191] = 3, + [138200] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6962), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6964), 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, + [138221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7171), 4, + ACTIONS(7502), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(7175), 8, + ACTIONS(7506), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -318567,4204 +334972,3316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [118212] = 7, - ACTIONS(7052), 1, + [138242] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4489), 2, + STATE(4777), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(7580), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [118241] = 13, - ACTIONS(7330), 1, - anon_sym_COMMA, - ACTIONS(7332), 1, + [138273] = 12, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7706), 1, anon_sym_or, - STATE(5060), 1, - sym_for_in_clause, - STATE(5902), 1, - aux_sym__collection_elements_repeat1, - STATE(6904), 1, + ACTIONS(7807), 1, + anon_sym_RPAREN, + ACTIONS(7809), 1, + anon_sym_COMMA, + STATE(6043), 1, + aux_sym_argument_list_repeat1, + STATE(7133), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118282] = 8, - ACTIONS(4879), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138312] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4407), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 3, - anon_sym_RPAREN, + ACTIONS(7271), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [118313] = 8, - ACTIONS(7052), 1, + anon_sym_RBRACK, + [138341] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_LPAREN, - STATE(4552), 1, + ACTIONS(7811), 1, + anon_sym_complex, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4894), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7224), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [118344] = 7, - ACTIONS(4879), 1, + ACTIONS(6956), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [138372] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4503), 2, + STATE(4704), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7409), 4, - anon_sym_RPAREN, + ACTIONS(7028), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [118373] = 13, - ACTIONS(7330), 1, - anon_sym_COMMA, - ACTIONS(7332), 1, + anon_sym_RBRACK, + [138401] = 12, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7706), 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, + ACTIONS(7813), 1, + anon_sym_RPAREN, + ACTIONS(7815), 1, 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, - [118437] = 3, + STATE(6480), 1, + aux_sym_argument_list_repeat1, + STATE(7200), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7171), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(7175), 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, - [118458] = 7, - ACTIONS(4879), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138440] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4409), 2, + STATE(4814), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(7785), 4, 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, - 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_EQ, + [138469] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4482), 2, + STATE(4759), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 4, + ACTIONS(6986), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [118557] = 7, - ACTIONS(7052), 1, + [138498] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7817), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4806), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6930), 4, + ACTIONS(7758), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, + [138527] = 12, + ACTIONS(7601), 1, anon_sym_RBRACK, - [118586] = 13, - ACTIONS(7330), 1, + ACTIONS(7676), 1, anon_sym_COMMA, - ACTIONS(7332), 1, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(7680), 1, anon_sym_if, - ACTIONS(7336), 1, - anon_sym_COLON, - ACTIONS(7338), 1, + ACTIONS(7682), 1, anon_sym_async, - ACTIONS(7340), 1, + ACTIONS(7684), 1, anon_sym_for, - ACTIONS(7342), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(7688), 1, anon_sym_or, - STATE(5060), 1, - sym_for_in_clause, - STATE(5902), 1, + STATE(6283), 1, aux_sym__collection_elements_repeat1, - STATE(6873), 1, + STATE(7134), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118627] = 8, - ACTIONS(6948), 1, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138566] = 8, + ACTIONS(7276), 1, anon_sym_LPAREN, - ACTIONS(7052), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6951), 3, + ACTIONS(7279), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(7054), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [118658] = 4, - ACTIONS(6982), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7416), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(6984), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(7386), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [118681] = 7, - ACTIONS(4879), 1, + [138597] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7418), 4, + ACTIONS(7820), 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, + [138626] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4495), 2, + STATE(4770), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6951), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(7386), 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, + ACTIONS(7271), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_RBRACK, + [138655] = 7, + ACTIONS(7384), 1, + anon_sym_STAR, + ACTIONS(7388), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [118803] = 3, + STATE(4842), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6576), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, + STATE(4811), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5079), 8, + ACTIONS(7231), 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, - [118824] = 8, - ACTIONS(6963), 1, + anon_sym_EQ, + anon_sym_RBRACK, + [138684] = 8, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(7052), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6966), 3, + ACTIONS(6993), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [118855] = 3, + [138715] = 12, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(7314), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7420), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - 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, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138754] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4392), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7368), 4, + ACTIONS(7290), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [118905] = 7, - ACTIONS(4879), 1, + [138783] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4422), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7424), 4, + ACTIONS(7708), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [118934] = 7, - ACTIONS(4879), 1, + [138812] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7822), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7358), 4, - anon_sym_RPAREN, + ACTIONS(7820), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [118963] = 7, - ACTIONS(4494), 1, + [138841] = 12, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(7147), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138880] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7428), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7545), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4405), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7426), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7548), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [118992] = 7, - ACTIONS(4494), 1, + [138911] = 12, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7825), 1, + anon_sym_RPAREN, + ACTIONS(7827), 1, + anon_sym_COMMA, + STATE(6154), 1, + aux_sym_argument_list_repeat1, + STATE(7130), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [138950] = 8, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7431), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4491), 2, + STATE(4818), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7424), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7580), 3, anon_sym_COMMA, anon_sym_EQ, - [119021] = 7, - ACTIONS(4879), 1, + anon_sym_RBRACK, + [138981] = 12, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(7676), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, + STATE(6962), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5138), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [139020] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4435), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_LPAREN, + ACTIONS(7719), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [119050] = 3, + [139049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7314), 3, + ACTIONS(7310), 4, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(7316), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [119071] = 7, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(7434), 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(7418), 4, - sym__newline, + ACTIONS(7312), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [119100] = 7, - ACTIONS(4494), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [139070] = 8, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7437), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7328), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7580), 3, anon_sym_COMMA, anon_sym_EQ, - [119129] = 7, - ACTIONS(4494), 1, + anon_sym_RBRACK, + [139101] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7440), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4724), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7380), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7753), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [119158] = 7, - ACTIONS(4879), 1, + [139130] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7831), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4716), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 4, + ACTIONS(7829), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [119187] = 7, - ACTIONS(7052), 1, + [139159] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7834), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4395), 2, + STATE(4739), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [119216] = 3, - ACTIONS(7006), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7008), 11, + ACTIONS(7776), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [119237] = 3, + [139188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6604), 4, + ACTIONS(7502), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6606), 8, + ACTIONS(7506), 8, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [119258] = 7, - ACTIONS(4494), 1, + [139209] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7445), 1, + ACTIONS(7837), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4476), 2, + STATE(4775), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7443), 4, + ACTIONS(7790), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [119287] = 7, - ACTIONS(7052), 1, + [139238] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4743), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 4, + ACTIONS(7290), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [119316] = 8, - ACTIONS(7052), 1, + [139267] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_LPAREN, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4448), 2, + STATE(4804), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 3, + ACTIONS(6986), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [119347] = 7, - ACTIONS(7052), 1, + [139296] = 8, + ACTIONS(7258), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(7298), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [119376] = 7, - ACTIONS(4494), 1, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [139327] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7448), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4500), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7348), 4, - sym__newline, + ACTIONS(7231), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [119405] = 3, + [139356] = 12, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7840), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(6961), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7292), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(7294), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [119426] = 7, - ACTIONS(7052), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [139395] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4751), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_LPAREN, + ACTIONS(7288), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [119455] = 8, - ACTIONS(7052), 1, + [139426] = 8, + ACTIONS(7237), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_LPAREN, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(7288), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 3, + [139457] = 12, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7794), 1, + anon_sym_RPAREN, + ACTIONS(7842), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [119486] = 7, - ACTIONS(7052), 1, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(7200), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [139496] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 4, - anon_sym_LPAREN, + ACTIONS(7724), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [119515] = 7, - ACTIONS(4494), 1, + [139525] = 8, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7453), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4795), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(6993), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7451), 4, - sym__newline, + [139556] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7566), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7568), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [119544] = 7, - ACTIONS(4494), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [139577] = 12, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7845), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(7310), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [139616] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7456), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7399), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(7746), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [119573] = 8, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7052), 1, + [139645] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4797), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6631), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [119604] = 9, - ACTIONS(4494), 1, + ACTIONS(7829), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [139674] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_LPAREN, - ACTIONS(7459), 1, + ACTIONS(7847), 1, anon_sym_complex, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6686), 2, - sym__newline, - anon_sym_COLON, - STATE(4553), 2, + STATE(4884), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [119637] = 7, - ACTIONS(4879), 1, + ACTIONS(7279), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [139705] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7451), 4, + ACTIONS(7271), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [119666] = 8, - ACTIONS(6941), 1, + [139734] = 8, + ACTIONS(7246), 1, anon_sym_LPAREN, - ACTIONS(7052), 1, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7056), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4552), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4421), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6944), 3, + ACTIONS(7290), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(7054), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [119697] = 7, - ACTIONS(4879), 1, + [139765] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7849), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 4, + ACTIONS(7792), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [119726] = 7, - ACTIONS(4879), 1, + [139794] = 8, + ACTIONS(7276), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4496), 2, + STATE(4805), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(7279), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [119755] = 7, - ACTIONS(4494), 1, + [139825] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7461), 1, + ACTIONS(7852), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4723), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7414), 4, + ACTIONS(7796), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [119784] = 7, - ACTIONS(4879), 1, - anon_sym_STAR, - ACTIONS(4883), 1, - anon_sym_LBRACK, - STATE(4314), 1, - sym_type_index, + [139854] = 12, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(7855), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + STATE(7130), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4460), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4881), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [139893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7625), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(7401), 4, - anon_sym_RPAREN, + ACTIONS(7627), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [119813] = 7, - ACTIONS(4494), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [139914] = 7, + ACTIONS(7857), 1, anon_sym_STAR, - ACTIONS(7464), 1, + ACTIONS(7863), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7860), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7373), 4, - sym__newline, + ACTIONS(7394), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [119842] = 7, - ACTIONS(4879), 1, + anon_sym_RBRACK, + [139943] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4469), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7426), 4, + ACTIONS(6986), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [119871] = 8, - ACTIONS(4879), 1, + [139972] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_LPAREN, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4415), 2, + STATE(4774), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7240), 3, + ACTIONS(7729), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [119902] = 7, - ACTIONS(4879), 1, + [140001] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4271), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7363), 4, + ACTIONS(7736), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [119931] = 3, + [140030] = 9, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7246), 1, + anon_sym_LPAREN, + ACTIONS(7866), 1, + anon_sym_complex, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7234), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(7236), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(7290), 2, + sym__newline, anon_sym_COLON, + STATE(4900), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [119952] = 7, - ACTIONS(4879), 1, + anon_sym___stdcall, + [140063] = 7, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4883), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - STATE(4314), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4414), 2, + STATE(4702), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4881), 3, + ACTIONS(4901), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(7443), 4, + ACTIONS(7771), 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(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, + [140092] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(7483), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4637), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7133), 8, - anon_sym_DOT, + STATE(4811), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7386), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7290), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [120067] = 7, - ACTIONS(4494), 1, + [140121] = 8, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7545), 1, + anon_sym_LPAREN, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [120095] = 10, - ACTIONS(7469), 1, + ACTIONS(7548), 3, 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_RBRACK, + [140152] = 7, + ACTIONS(7384), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(7388), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4842), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4557), 2, + STATE(4811), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7386), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6928), 3, - sym__newline, + ACTIONS(7028), 4, anon_sym_LPAREN, - anon_sym_COLON, - [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, - sym_identifier, - 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_RBRACK, + [140181] = 12, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7504), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7506), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7508), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7510), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7706), 1, anon_sym_or, - ACTIONS(7522), 1, + ACTIONS(7868), 1, anon_sym_RPAREN, - ACTIONS(7524), 1, + ACTIONS(7870), 1, anon_sym_COMMA, - STATE(5072), 1, - sym_for_in_clause, - STATE(5907), 1, + STATE(6090), 1, aux_sym_argument_list_repeat1, - STATE(6842), 1, + STATE(7310), 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, + STATE(5237), 2, 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, + sym__comprehension_for_clause, + [140220] = 8, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(7553), 1, - sym_identifier, - ACTIONS(7555), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4602), 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(4689), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [120465] = 12, - ACTIONS(7342), 1, - anon_sym_RBRACK, - ACTIONS(7537), 1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6993), 3, + anon_sym_RPAREN, 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(6853), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [120503] = 8, - ACTIONS(4494), 1, + anon_sym_EQ, + [140251] = 8, + ACTIONS(4899), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4299), 1, + STATE(4602), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6631), 2, - sym__newline, - anon_sym_COLON, - STATE(4558), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4901), 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, + ACTIONS(7279), 3, 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, - [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, - sym_identifier, - STATE(4945), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [120763] = 10, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7473), 1, + [140282] = 7, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - 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, + STATE(4602), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7467), 2, + STATE(4571), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7279), 4, anon_sym_LPAREN, - sym_identifier, - STATE(5053), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [120797] = 12, - ACTIONS(7342), 1, - anon_sym_RBRACK, - ACTIONS(7537), 1, + anon_sym_RPAREN, 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, - [120835] = 9, - ACTIONS(6175), 1, + anon_sym_EQ, + [140311] = 8, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, + ACTIONS(7237), 1, anon_sym_LPAREN, - ACTIONS(7577), 1, - sym_identifier, - ACTIONS(7579), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4602), 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(4612), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [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, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7288), 3, 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, + anon_sym_EQ, + [140342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [121071] = 12, - ACTIONS(7500), 1, + ACTIONS(7645), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7647), 9, + anon_sym_DOT, + anon_sym_LPAREN, 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, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [140363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [121109] = 9, - ACTIONS(6175), 1, + ACTIONS(7550), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7552), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [140384] = 8, + ACTIONS(4899), 1, + anon_sym_STAR, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(7246), 1, anon_sym_LPAREN, - ACTIONS(7553), 1, - sym_identifier, - ACTIONS(7593), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4602), 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(4621), 2, + STATE(4571), 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, + ACTIONS(4901), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7290), 3, 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_EQ, + [140415] = 12, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7504), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(7506), 1, + ACTIONS(7700), 1, anon_sym_async, - ACTIONS(7508), 1, + ACTIONS(7702), 1, anon_sym_for, - ACTIONS(7510), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7706), 1, anon_sym_or, - ACTIONS(7597), 1, + ACTIONS(7872), 1, anon_sym_RPAREN, - ACTIONS(7599), 1, + ACTIONS(7874), 1, anon_sym_COMMA, - STATE(5072), 1, - sym_for_in_clause, - STATE(5939), 1, + STATE(6190), 1, aux_sym_argument_list_repeat1, - STATE(6837), 1, + STATE(6961), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [121255] = 7, - ACTIONS(4494), 1, + STATE(5237), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [140454] = 4, + ACTIONS(6962), 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___stdcall, - ACTIONS(6928), 3, - sym__newline, + ACTIONS(7318), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6964), 9, 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_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [140477] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6628), 1, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6631), 2, + ACTIONS(7279), 2, sym__newline, anon_sym_COLON, - STATE(4269), 2, + STATE(4888), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [121351] = 2, + [140507] = 9, + ACTIONS(7880), 1, + anon_sym_COMMA, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + STATE(5947), 1, + aux_sym_assert_statement_repeat1, 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, + ACTIONS(7876), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7878), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [140539] = 5, + ACTIONS(7468), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(7890), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_LPAREN, - STATE(4299), 1, + STATE(4937), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6866), 2, - sym__newline, - anon_sym_COLON, - STATE(4559), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(7470), 8, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [121399] = 7, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - STATE(4299), 1, - sym_type_index, + [140563] = 7, + ACTIONS(5539), 1, + sym_c_integer_signedness, + ACTIONS(5541), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7893), 1, + aux_sym_integer_token1, + STATE(3539), 1, + sym_c_integer_type, + STATE(4966), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, - anon_sym_COLON, - [121427] = 8, + ACTIONS(4844), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + [140591] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7605), 1, + ACTIONS(7901), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4835), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [140621] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7903), 1, + sym_string_end, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4561), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [121457] = 10, - ACTIONS(7469), 1, + [140651] = 10, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7473), 1, - anon_sym_LBRACK, - ACTIONS(7478), 1, - sym_string_start, - ACTIONS(7607), 1, + ACTIONS(7909), 1, anon_sym_EQ, - ACTIONS(7609), 1, + ACTIONS(7911), 1, + anon_sym_LBRACK, + ACTIONS(7914), 1, sym__newline, - STATE(5002), 1, + ACTIONS(7916), 1, + sym_string_start, + STATE(5367), 1, sym_string, - STATE(5835), 1, + STATE(6134), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7467), 2, + ACTIONS(7905), 2, anon_sym_LPAREN, sym_identifier, - STATE(5003), 2, + STATE(5386), 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, + [140685] = 10, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [121515] = 8, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(7911), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_LPAREN, - STATE(4299), 1, - sym_type_index, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(7919), 1, + anon_sym_EQ, + ACTIONS(7921), 1, + sym__newline, + STATE(5429), 1, + sym_string, + STATE(6273), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6866), 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, - [121545] = 7, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7905), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(5252), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [140719] = 7, + ACTIONS(5149), 1, + sym_c_integer_signedness, + ACTIONS(5151), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7923), 1, + aux_sym_integer_token1, + STATE(3433), 1, + sym_c_integer_type, + STATE(4991), 1, + aux_sym_integer_repeat1, 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(6966), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [121573] = 8, + ACTIONS(4844), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + [140747] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7613), 1, + ACTIONS(7925), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4597), 3, + STATE(4848), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [121603] = 8, + [140777] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7927), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7933), 1, anon_sym_BSLASH, - ACTIONS(7615), 1, + ACTIONS(7936), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7930), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4569), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [121633] = 7, - ACTIONS(4494), 1, + [140807] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4846), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6930), 3, + ACTIONS(6986), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [121661] = 8, - ACTIONS(4494), 1, + [140835] = 5, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_LPAREN, - STATE(4299), 1, - sym_type_index, + ACTIONS(7938), 1, + anon_sym_DOT, + STATE(4853), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 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, - [121691] = 8, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(7506), 8, anon_sym_LPAREN, - STATE(4299), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6966), 2, - sym__newline, - anon_sym_COLON, - STATE(4269), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [121721] = 7, - ACTIONS(4494), 1, + [140859] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + STATE(4862), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6645), 3, + ACTIONS(7028), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [121749] = 8, + [140887] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7617), 1, + ACTIONS(7940), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4845), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [121779] = 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(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, - [121817] = 8, + [140917] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7621), 1, + ACTIONS(7942), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4534), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [121847] = 5, - ACTIONS(7148), 1, + [140947] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(7611), 1, - anon_sym_DOT, - STATE(4567), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7152), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(4566), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [121871] = 8, + ACTIONS(7271), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [140975] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7623), 1, + ACTIONS(7944), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4851), 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, - [121939] = 5, - ACTIONS(7128), 1, - anon_sym_STAR, - 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_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - 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(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_AMP, - anon_sym___stdcall, - [121993] = 8, + [141005] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7632), 1, + ACTIONS(7946), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4840), 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(7512), 1, - anon_sym_or, - 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, + [141035] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [122061] = 12, - ACTIONS(7500), 1, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7948), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4852), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [141065] = 10, + ACTIONS(7907), 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(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, - [122099] = 3, + ACTIONS(7911), 1, + anon_sym_LBRACK, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(7950), 1, + anon_sym_EQ, + ACTIONS(7952), 1, + sym__newline, + STATE(5398), 1, + sym_string, + STATE(6024), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7171), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(7175), 8, + ACTIONS(7905), 2, 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, - [122119] = 7, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - STATE(4299), 1, + sym_identifier, + STATE(5399), 2, sym_type_index, - ACTIONS(3), 2, + aux_sym_cvar_decl_repeat1, + [141099] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, 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(7240), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [122147] = 8, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7954), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4840), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [141129] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7640), 1, + ACTIONS(7956), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122177] = 8, - ACTIONS(4494), 1, + [141159] = 5, + ACTIONS(7527), 1, anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7938), 1, + anon_sym_DOT, + STATE(4866), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7529), 8, anon_sym_LPAREN, - STATE(4299), 1, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [141183] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7240), 2, - sym__newline, - anon_sym_COLON, - STATE(4269), 2, + STATE(4886), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [122207] = 8, - ACTIONS(4494), 1, + ACTIONS(7271), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [141211] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6941), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6944), 2, + ACTIONS(6993), 2, sym__newline, anon_sym_COLON, - STATE(4269), 2, + STATE(4887), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [122237] = 9, - ACTIONS(6175), 1, + [141241] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6614), 1, + ACTIONS(6956), 1, anon_sym_LPAREN, - ACTIONS(7642), 1, + ACTIONS(7958), 1, sym_identifier, - ACTIONS(7644), 1, + ACTIONS(7960), 1, anon_sym_complex, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4647), 2, + STATE(4989), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [122269] = 9, - ACTIONS(6175), 1, + [141273] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6614), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(7642), 1, - sym_identifier, - ACTIONS(7646), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4617), 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(4610), 2, + ACTIONS(6993), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [122301] = 8, + ACTIONS(4422), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [141303] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7648), 1, + ACTIONS(7962), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4585), 3, + STATE(4859), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122331] = 8, - ACTIONS(4494), 1, + [141333] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7964), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4840), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [141363] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, + ACTIONS(7276), 1, anon_sym_LPAREN, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 2, + ACTIONS(7279), 2, sym__newline, anon_sym_COLON, - STATE(4576), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [122361] = 9, - ACTIONS(6175), 1, + [141393] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6866), 1, + ACTIONS(7009), 1, anon_sym_LPAREN, - ACTIONS(7650), 1, + ACTIONS(7966), 1, sym_identifier, - ACTIONS(7652), 1, + ACTIONS(7968), 1, anon_sym_complex, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4667), 2, + STATE(4929), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [122393] = 7, - ACTIONS(4494), 1, + [141425] = 7, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - STATE(4299), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4600), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6686), 3, + ACTIONS(7279), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [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(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, - [122459] = 8, - ACTIONS(4494), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_LPAREN, - STATE(4299), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7224), 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, - [122489] = 8, + [141453] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7654), 1, + ACTIONS(7970), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4867), 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, - 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, - [122557] = 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(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, - [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, - 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, + [141483] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_LPAREN, - ACTIONS(7577), 1, - sym_identifier, - ACTIONS(7665), 1, - anon_sym_complex, - STATE(4379), 1, + STATE(4617), 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(4631), 2, + STATE(4899), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [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, + ACTIONS(4422), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(7290), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [141511] = 10, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7473), 1, + ACTIONS(7911), 1, anon_sym_LBRACK, - ACTIONS(7478), 1, + ACTIONS(7916), 1, sym_string_start, - ACTIONS(7667), 1, + ACTIONS(7972), 1, anon_sym_EQ, - ACTIONS(7669), 1, + ACTIONS(7974), 1, sym__newline, - STATE(5124), 1, + STATE(5251), 1, sym_string, - STATE(6182), 1, + STATE(6474), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7467), 2, + ACTIONS(7905), 2, anon_sym_LPAREN, sym_identifier, - STATE(5126), 2, + STATE(5253), 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(4379), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6171), 2, + [141545] = 5, + ACTIONS(7468), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(4627), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [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(7976), 1, + anon_sym_DOT, + STATE(4866), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4839), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - [122787] = 10, - ACTIONS(7469), 1, + ACTIONS(7470), 8, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7473), 1, - anon_sym_LBRACK, - ACTIONS(7478), 1, - sym_string_start, - ACTIONS(7675), 1, + anon_sym_STAR_STAR, 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, - ACTIONS(7467), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4952), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [122821] = 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [141569] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7679), 1, + ACTIONS(7979), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4599), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122851] = 7, - ACTIONS(4494), 1, + [141599] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4573), 2, + ACTIONS(7288), 2, + sym__newline, + anon_sym_COLON, + STATE(4901), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6966), 3, - sym__newline, + [141629] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7981), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4904), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [141659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7502), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7506), 8, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - [122879] = 8, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [141679] = 9, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7279), 1, + anon_sym_LPAREN, + ACTIONS(7983), 1, + sym_identifier, + ACTIONS(7985), 1, + anon_sym_complex, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4992), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [141711] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7681), 1, + ACTIONS(7987), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4873), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122909] = 8, + [141741] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7683), 1, + ACTIONS(7989), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122939] = 8, + [141771] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7685), 1, + ACTIONS(7991), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4517), 3, + STATE(4877), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [122969] = 7, - ACTIONS(4494), 1, + [141801] = 8, + ACTIONS(4406), 1, anon_sym_STAR, - ACTIONS(4504), 1, + ACTIONS(4416), 1, anon_sym_LBRACK, - STATE(4299), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4269), 2, + ACTIONS(7580), 2, + sym__newline, + anon_sym_COLON, + STATE(4902), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4510), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6866), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [122997] = 8, + [141831] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7993), 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, + [141849] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7687), 1, + ACTIONS(7995), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4512), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [123027] = 9, - ACTIONS(7693), 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, - STATE(5710), 1, - aux_sym_assert_statement_repeat1, + [141879] = 7, + ACTIONS(4930), 1, + sym_c_integer_signedness, + ACTIONS(4932), 1, + aux_sym_c_integer_type_token1, + ACTIONS(7997), 1, + aux_sym_integer_token1, + STATE(3163), 1, + sym_c_integer_type, + STATE(4928), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7689), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7691), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [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, + ACTIONS(4844), 6, 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, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + [141907] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [123097] = 8, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(7999), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4880), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [141937] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7707), 1, + ACTIONS(8001), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4565), 3, + STATE(4840), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [123127] = 8, + [141967] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, + ACTIONS(7895), 1, anon_sym_LBRACE, - ACTIONS(7494), 1, + ACTIONS(7899), 1, anon_sym_BSLASH, - ACTIONS(7709), 1, + ACTIONS(8003), 1, sym_string_end, - STATE(4814), 2, + STATE(5146), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(7492), 3, + ACTIONS(7897), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(4526), 3, + STATE(4882), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [123157] = 3, - ACTIONS(7292), 1, - anon_sym_STAR, - ACTIONS(3), 2, + [141997] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7294), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(8005), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4840), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [142027] = 10, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + ACTIONS(7911), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [123176] = 3, - ACTIONS(7257), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7259), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(8007), 1, anon_sym_EQ, - anon_sym_LBRACK, - 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, - ACTIONS(5927), 6, + ACTIONS(8009), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - [123220] = 3, - ACTIONS(6604), 1, - anon_sym_STAR, + STATE(5281), 1, + sym_string, + STATE(6529), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6606), 9, + ACTIONS(7905), 2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + sym_identifier, + STATE(5282), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [142061] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [123239] = 5, - STATE(4379), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7577), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6686), 4, - anon_sym_LPAREN, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, 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, - 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(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(7290), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [142089] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6866), 1, - anon_sym_STAR_STAR, - ACTIONS(6888), 1, + ACTIONS(7246), 1, anon_sym_LPAREN, - STATE(4379), 1, + ACTIONS(8011), 1, + sym_identifier, + ACTIONS(8013), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7650), 2, + ACTIONS(6322), 2, anon_sym_STAR, - sym_identifier, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [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, - 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, - ACTIONS(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, - anon_sym_LBRACK, - STATE(4379), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6866), 2, - anon_sym_LPAREN, + ACTIONS(6324), 2, anon_sym_STAR_STAR, - ACTIONS(7650), 2, - anon_sym_STAR, - sym_identifier, - STATE(4282), 2, + anon_sym_AMP, + STATE(4949), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123380] = 5, - STATE(4379), 1, + [142121] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7715), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(7240), 4, - anon_sym_LPAREN, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [123403] = 8, - ACTIONS(6175), 1, + anon_sym___stdcall, + ACTIONS(7231), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [142149] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, + ACTIONS(7237), 1, anon_sym_LPAREN, - ACTIONS(7553), 1, - sym_identifier, - STATE(4379), 1, + STATE(4617), 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(4615), 2, + ACTIONS(7288), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123432] = 5, - STATE(4379), 1, + ACTIONS(4422), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [142179] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7246), 1, + anon_sym_LPAREN, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + ACTIONS(7290), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7242), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6645), 4, - anon_sym_LPAREN, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [123455] = 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, + anon_sym___stdcall, + [142209] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - 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, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(8015), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4890), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [142239] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(8017), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4840), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [142269] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6941), 1, + ACTIONS(6956), 1, anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_STAR_STAR, - STATE(4379), 1, + ACTIONS(7958), 1, + sym_identifier, + ACTIONS(8019), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7717), 2, + ACTIONS(6322), 2, anon_sym_STAR, - sym_identifier, - STATE(4282), 2, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4959), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123511] = 8, - ACTIONS(6175), 1, + [142301] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6645), 1, + ACTIONS(7009), 1, anon_sym_LPAREN, - ACTIONS(7242), 1, + ACTIONS(7966), 1, sym_identifier, - STATE(4379), 1, + ACTIONS(8021), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4648), 2, + STATE(4911), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123540] = 6, - ACTIONS(7252), 1, - anon_sym_LPAREN, - STATE(4379), 1, + [142333] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7240), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7715), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [123565] = 6, - ACTIONS(6941), 1, + ACTIONS(6986), 3, + sym__newline, anon_sym_LPAREN, - STATE(4379), 1, + anon_sym_COLON, + [142361] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6944), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7717), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [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(7028), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [142389] = 10, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(7911), 1, + anon_sym_LBRACK, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(8023), 1, + anon_sym_EQ, + ACTIONS(8025), 1, + sym__newline, + STATE(5334), 1, + sym_string, + STATE(6454), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7386), 9, + ACTIONS(7905), 2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + sym_identifier, + STATE(5335), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [142423] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [123638] = 6, - ACTIONS(6628), 1, + ACTIONS(7279), 1, anon_sym_LPAREN, - STATE(4379), 1, + ACTIONS(7983), 1, + sym_identifier, + ACTIONS(8027), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4985), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6631), 3, - anon_sym_STAR_STAR, + [142455] = 10, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(7911), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(7281), 3, - anon_sym_STAR, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(8029), 1, + anon_sym_EQ, + ACTIONS(8031), 1, + sym__newline, + STATE(5364), 1, + sym_string, + STATE(6403), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7905), 2, + anon_sym_LPAREN, sym_identifier, - anon_sym___stdcall, - [123663] = 8, - ACTIONS(6175), 1, + STATE(5365), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [142489] = 9, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7246), 1, anon_sym_LPAREN, - ACTIONS(7715), 1, + ACTIONS(8011), 1, sym_identifier, - STATE(4379), 1, + ACTIONS(8033), 1, + anon_sym_complex, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4683), 2, + STATE(4933), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123692] = 5, - STATE(4379), 1, + [142521] = 7, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7553), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6966), 4, - anon_sym_LPAREN, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [123715] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5442), 10, + anon_sym___stdcall, + ACTIONS(7580), 3, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [123732] = 8, - ACTIONS(6175), 1, + [142549] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, + ACTIONS(7584), 1, anon_sym_LPAREN, - ACTIONS(7721), 1, - sym_identifier, - STATE(4379), 1, + STATE(4617), 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(4622), 2, + ACTIONS(7580), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 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(6171), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(4422), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4614), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [123790] = 6, - ACTIONS(6888), 1, + anon_sym___stdcall, + [142579] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7258), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4617), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + ACTIONS(7298), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6866), 3, + ACTIONS(4422), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7650), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [123815] = 8, - ACTIONS(6175), 1, + [142609] = 8, + ACTIONS(4406), 1, + anon_sym_STAR, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(6928), 1, + ACTIONS(7545), 1, anon_sym_LPAREN, - ACTIONS(7723), 1, - sym_identifier, - STATE(4379), 1, + STATE(4617), 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(4656), 2, + ACTIONS(7548), 2, + sym__newline, + anon_sym_COLON, + STATE(4566), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [123844] = 8, - ACTIONS(6171), 1, - anon_sym___stdcall, - ACTIONS(6173), 1, + ACTIONS(4422), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(6175), 1, + anon_sym___stdcall, + [142639] = 10, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(7911), 1, anon_sym_LBRACK, - STATE(4379), 1, - sym_type_index, + ACTIONS(7916), 1, + sym_string_start, + ACTIONS(8035), 1, + anon_sym_EQ, + ACTIONS(8037), 1, + sym__newline, + STATE(5284), 1, + sym_string, + STATE(6572), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6645), 2, + ACTIONS(7905), 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, - [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, + STATE(5285), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [142673] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, 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, - [123902] = 3, - ACTIONS(6576), 1, + ACTIONS(7895), 1, + anon_sym_LBRACE, + ACTIONS(7899), 1, + anon_sym_BSLASH, + ACTIONS(8039), 1, + sym_string_end, + STATE(5146), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7897), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(4840), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [142703] = 3, + ACTIONS(7767), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 9, + ACTIONS(7769), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -322774,63 +338291,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [123921] = 5, - STATE(4379), 1, + [142722] = 5, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7650), 3, + ACTIONS(8041), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(6866), 4, + ACTIONS(7231), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [123944] = 3, - ACTIONS(7302), 1, - anon_sym_STAR, + [142745] = 9, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(6993), 1, + anon_sym_STAR_STAR, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7304), 9, - anon_sym_DOT, + ACTIONS(7631), 2, + anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [142776] = 6, + ACTIONS(7237), 1, anon_sym_LPAREN, - anon_sym_COMMA, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7288), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [123963] = 3, - ACTIONS(7420), 1, + ACTIONS(8043), 3, anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [142801] = 6, + ACTIONS(7246), 1, + anon_sym_LPAREN, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7290), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, + ACTIONS(8011), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [123982] = 3, - ACTIONS(6576), 1, + [142826] = 3, + ACTIONS(7767), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 9, + ACTIONS(7769), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -322840,46 +338385,56 @@ static const uint16_t ts_small_parse_table[] = { 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, + [142845] = 9, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7276), 1, + anon_sym_LPAREN, + ACTIONS(7279), 1, + anon_sym_STAR_STAR, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4863), 8, - anon_sym_COMMA, - 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, + ACTIONS(7983), 2, anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [142876] = 8, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7179), 9, + ACTIONS(7279), 2, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [124041] = 3, - ACTIONS(7314), 1, + ACTIONS(7983), 2, + anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [142905] = 3, + ACTIONS(7566), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7316), 9, + ACTIONS(7568), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -322889,247 +338444,187 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(5982), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [124083] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5484), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [124100] = 8, - ACTIONS(1716), 1, + [142924] = 8, + ACTIONS(1477), 1, aux_sym_integer_token4, - ACTIONS(7733), 1, + ACTIONS(8045), 1, sym_float, - STATE(2524), 1, + STATE(2566), 1, aux_sym_integer_repeat4, - STATE(5630), 1, + STATE(5651), 1, sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1473), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1475), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(1566), 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, + [142953] = 6, + ACTIONS(8047), 1, + anon_sym_as, + ACTIONS(8049), 1, + anon_sym_if, + ACTIONS(8051), 1, + anon_sym_and, + ACTIONS(8053), 1, + anon_sym_or, 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, - [124158] = 8, - ACTIONS(6171), 1, - anon_sym___stdcall, - ACTIONS(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, - anon_sym_LBRACK, - STATE(4379), 1, - sym_type_index, + ACTIONS(7878), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [142978] = 3, + ACTIONS(7452), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6686), 2, + ACTIONS(7454), 9, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, - ACTIONS(7577), 2, - anon_sym_STAR, - sym_identifier, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [124187] = 8, - ACTIONS(6171), 1, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6173), 1, + [142997] = 8, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6928), 2, + ACTIONS(7271), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(7723), 2, + ACTIONS(8055), 2, anon_sym_STAR, sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124216] = 3, - ACTIONS(7234), 1, + [143026] = 8, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(8057), 1, + sym_float, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5411), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + [143055] = 3, + ACTIONS(6913), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7236), 9, - anon_sym_DOT, + ACTIONS(5103), 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, - [124235] = 8, - ACTIONS(6175), 1, + [143074] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6928), 1, + ACTIONS(6986), 1, anon_sym_LPAREN, - ACTIONS(7723), 1, + ACTIONS(7615), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 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(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_LPAREN, - ACTIONS(6966), 1, - anon_sym_STAR_STAR, - STATE(4379), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7553), 2, - anon_sym_STAR, - sym_identifier, - STATE(4282), 2, + STATE(4922), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124295] = 8, - ACTIONS(6175), 1, + [143103] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6645), 1, + ACTIONS(7028), 1, anon_sym_LPAREN, - ACTIONS(7242), 1, + ACTIONS(7966), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4694), 2, + STATE(4932), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124324] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - sym_identifier, - STATE(4379), 1, + [143132] = 5, + STATE(4690), 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(4701), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124353] = 3, - ACTIONS(7384), 1, + ACTIONS(8055), 3, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7386), 9, + sym_identifier, + anon_sym___stdcall, + ACTIONS(7271), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [124372] = 3, - ACTIONS(7298), 1, + [143155] = 3, + ACTIONS(7625), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7300), 9, + ACTIONS(7627), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -323139,592 +338634,526 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [124391] = 5, - STATE(4379), 1, - sym_type_index, + [143174] = 8, + ACTIONS(1786), 1, + aux_sym_integer_token4, + ACTIONS(8059), 1, + sym_float, + STATE(2573), 1, + aux_sym_integer_repeat4, + STATE(5478), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(7737), 3, - anon_sym_STAR, - sym_identifier, + ACTIONS(1782), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1784), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5824), 2, + anon_sym_0x, + anon_sym_0X, + [143203] = 8, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6930), 4, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7580), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [124414] = 3, - ACTIONS(7420), 1, + ACTIONS(8061), 2, anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [143232] = 8, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(8063), 1, + sym_float, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5856), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 9, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + [143261] = 6, + ACTIONS(6990), 1, anon_sym_LPAREN, - anon_sym_COMMA, + STATE(4690), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6993), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, + ACTIONS(7631), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [124433] = 2, + [143286] = 4, + ACTIONS(8065), 1, + aux_sym_integer_token1, + STATE(4928), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5438), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4876), 8, + anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_DASH, 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, - ACTIONS(6628), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [143307] = 6, + ACTIONS(7276), 1, anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_STAR_STAR, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7281), 2, - anon_sym_STAR, - sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124481] = 8, - ACTIONS(6175), 1, + ACTIONS(7279), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(7983), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [143332] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6686), 1, + ACTIONS(7271), 1, anon_sym_LPAREN, - ACTIONS(7577), 1, + ACTIONS(8055), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4636), 2, + STATE(4906), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124510] = 8, - ACTIONS(6175), 1, + [143361] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, + ACTIONS(6990), 1, anon_sym_LPAREN, - ACTIONS(7650), 1, + ACTIONS(7631), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4651), 2, + STATE(4908), 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, - 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, - 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_PIPE, - [124589] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(7281), 1, - sym_identifier, - STATE(4379), 1, + [143390] = 5, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7983), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7279), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(4673), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [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, - ACTIONS(7691), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [124643] = 8, - ACTIONS(6171), 1, + [143413] = 9, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6173), 1, + ACTIONS(6324), 1, anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7580), 1, + anon_sym_STAR_STAR, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7240), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(7715), 2, + ACTIONS(8061), 2, anon_sym_STAR, sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124672] = 8, - ACTIONS(6171), 1, - anon_sym___stdcall, - ACTIONS(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, + [143444] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7276), 1, + anon_sym_LPAREN, + ACTIONS(7983), 1, + sym_identifier, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6966), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(7553), 2, + ACTIONS(6322), 2, anon_sym_STAR, - sym_identifier, - STATE(4282), 2, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4909), 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, - 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, + [143473] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 9, + ACTIONS(6026), 6, 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_or, - [124749] = 2, + [143498] = 3, + ACTIONS(7645), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5495), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(7647), 9, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [124766] = 8, - ACTIONS(6175), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, - anon_sym_LPAREN, - ACTIONS(7553), 1, - sym_identifier, - STATE(4379), 1, - sym_type_index, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [143517] = 3, + ACTIONS(7550), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7552), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - STATE(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, + anon_sym___stdcall, + [143536] = 3, + ACTIONS(6913), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4863), 8, - anon_sym_COMMA, - 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, + ACTIONS(5103), 9, anon_sym_LPAREN, - STATE(4379), 1, + 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, + [143555] = 5, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6951), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(7721), 3, + ACTIONS(8061), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [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(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, + ACTIONS(7580), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [143578] = 8, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(7756), 1, + ACTIONS(8068), 1, sym_float, - STATE(2452), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(4948), 1, + STATE(5878), 1, sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1521), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1523), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(1614), 2, + ACTIONS(5824), 2, anon_sym_0x, anon_sym_0X, - [124899] = 9, - ACTIONS(6171), 1, + [143607] = 9, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6173), 1, + ACTIONS(6324), 1, anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7221), 1, + ACTIONS(7258), 1, anon_sym_LPAREN, - ACTIONS(7224), 1, + ACTIONS(7298), 1, anon_sym_STAR_STAR, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7758), 2, + ACTIONS(8070), 2, anon_sym_STAR, sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [124930] = 4, - ACTIONS(7764), 1, - anon_sym_LBRACK_RBRACK, + [143638] = 3, + ACTIONS(6962), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7762), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(7760), 7, - anon_sym_RPAREN, + ACTIONS(6964), 9, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [124951] = 8, - ACTIONS(1834), 1, + [143657] = 8, + ACTIONS(1786), 1, aux_sym_integer_token4, - ACTIONS(7766), 1, + ACTIONS(8072), 1, sym_float, - STATE(2456), 1, + STATE(2573), 1, aux_sym_integer_repeat4, - STATE(5672), 1, + STATE(5907), 1, sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 2, + ACTIONS(1782), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1832), 2, + ACTIONS(1784), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5750), 2, + ACTIONS(5824), 2, anon_sym_0x, anon_sym_0X, - [124980] = 6, - ACTIONS(6963), 1, - anon_sym_LPAREN, - STATE(4379), 1, - sym_type_index, + [143686] = 5, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(8074), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6966), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(7553), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [125005] = 6, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(6015), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_COLON, + anon_sym_PIPE, + [143709] = 4, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 6, + ACTIONS(6007), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [125030] = 8, - ACTIONS(6171), 1, + [143730] = 3, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5354), 9, + 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_or, + [143749] = 9, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6173), 1, + ACTIONS(6324), 1, anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - STATE(4379), 1, + ACTIONS(7545), 1, + anon_sym_LPAREN, + ACTIONS(7548), 1, + anon_sym_STAR_STAR, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6930), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(7737), 2, + ACTIONS(8077), 2, anon_sym_STAR, sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [125059] = 2, + [143780] = 3, + ACTIONS(7572), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5567), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(7574), 9, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [125076] = 6, - ACTIONS(7221), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [143799] = 6, + ACTIONS(7584), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(7224), 3, + ACTIONS(7580), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7758), 3, + ACTIONS(8061), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [125101] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(6948), 1, + [143824] = 6, + ACTIONS(7258), 1, anon_sym_LPAREN, - ACTIONS(7721), 1, - sym_identifier, - STATE(4379), 1, + STATE(4690), 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(4619), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [125130] = 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, - ACTIONS(7774), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [125159] = 3, - ACTIONS(6982), 1, + ACTIONS(7298), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(8070), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [143849] = 3, + ACTIONS(7670), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6984), 9, + ACTIONS(7672), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -323734,1691 +339163,1568 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [125178] = 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(5967), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [125203] = 8, - ACTIONS(6175), 1, + [143868] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, + ACTIONS(7290), 1, anon_sym_LPAREN, - ACTIONS(7650), 1, + ACTIONS(8011), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4679), 2, + STATE(4939), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [125232] = 9, - ACTIONS(6171), 1, + [143897] = 8, + ACTIONS(1477), 1, + aux_sym_integer_token4, + ACTIONS(8079), 1, + sym_float, + STATE(2566), 1, + aux_sym_integer_repeat4, + STATE(5815), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1475), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(1566), 2, + anon_sym_0x, + anon_sym_0X, + [143926] = 8, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6173), 1, + ACTIONS(6324), 1, anon_sym_AMP, - ACTIONS(6175), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7240), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - anon_sym_LPAREN, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7715), 2, + ACTIONS(6986), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(7615), 2, anon_sym_STAR, sym_identifier, - STATE(4282), 2, + STATE(4598), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [125263] = 5, - ACTIONS(7745), 1, - anon_sym_and, - ACTIONS(7747), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_as, + [143955] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7237), 1, + anon_sym_LPAREN, + ACTIONS(8043), 1, + sym_identifier, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4950), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [143984] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [125286] = 4, - ACTIONS(7745), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7747), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 8, + ACTIONS(6038), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [125307] = 3, - ACTIONS(7745), 1, - anon_sym_and, + [144009] = 3, + ACTIONS(7670), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(7672), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - 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, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [144028] = 3, + ACTIONS(7611), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(7613), 9, anon_sym_DOT, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - [125351] = 5, - STATE(4379), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [144047] = 8, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(7723), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6928), 4, + ACTIONS(7028), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [125374] = 6, - ACTIONS(7741), 1, + ACTIONS(7966), 2, + anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144076] = 8, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(8081), 1, + sym_float, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5463), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + [144105] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7743), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7745), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7747), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 6, + ACTIONS(6049), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - 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, - ACTIONS(4863), 8, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_PLUS, - sym_c_integer_signedness, - aux_sym_c_integer_type_token1, - [125420] = 2, + [144130] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(6986), 1, + anon_sym_LPAREN, + ACTIONS(7615), 1, + sym_identifier, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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_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(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4917), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144159] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7028), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + sym_identifier, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7786), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [125466] = 8, - ACTIONS(6175), 1, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4912), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144188] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7584), 1, anon_sym_LPAREN, - ACTIONS(7715), 1, + ACTIONS(8061), 1, sym_identifier, - STATE(4379), 1, + STATE(4690), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(4676), 2, + STATE(4977), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [125495] = 8, - ACTIONS(1716), 1, + [144217] = 8, + ACTIONS(1668), 1, aux_sym_integer_token4, - ACTIONS(7788), 1, + ACTIONS(8083), 1, sym_float, - STATE(2524), 1, + STATE(2686), 1, aux_sym_integer_repeat4, - STATE(5677), 1, + STATE(5855), 1, sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(1664), 2, anon_sym_0o, anon_sym_0O, - ACTIONS(1714), 2, + ACTIONS(1666), 2, anon_sym_0b, anon_sym_0B, - ACTIONS(5289), 2, + ACTIONS(5444), 2, anon_sym_0x, anon_sym_0X, - [125524] = 9, - ACTIONS(6171), 1, - anon_sym___stdcall, - ACTIONS(6173), 1, - anon_sym_AMP, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_LPAREN, - ACTIONS(6951), 1, - anon_sym_STAR_STAR, - STATE(4379), 1, - sym_type_index, + [144246] = 4, + ACTIONS(8085), 1, + aux_sym_integer_token1, + STATE(4966), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7721), 2, - anon_sym_STAR, - sym_identifier, - STATE(4282), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [125555] = 4, - ACTIONS(7790), 1, - anon_sym_LBRACK_RBRACK, + ACTIONS(4876), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + sym_c_integer_signedness, + aux_sym_c_integer_type_token1, + [144267] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7762), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(7760), 7, + ACTIONS(5476), 10, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [125576] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7794), 1, - sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, - sym_type_qualifier, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [144284] = 2, 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, - [125604] = 9, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7796), 1, - anon_sym_EQ, - ACTIONS(7798), 1, + ACTIONS(5480), 10, sym__newline, - STATE(5148), 1, - sym_string, - STATE(5723), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [144301] = 4, + ACTIONS(8092), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4947), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [125634] = 9, - ACTIONS(4504), 1, + ACTIONS(8090), 2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, + ACTIONS(8088), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7800), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - 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(4966), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [125664] = 8, - ACTIONS(6175), 1, + anon_sym_AMP, + anon_sym___stdcall, + [144322] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(7271), 1, + anon_sym_LPAREN, + ACTIONS(8055), 1, sym_identifier, - ACTIONS(7804), 1, - sym__newline, - STATE(6121), 1, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [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, - 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, - 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(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, - 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, + STATE(4986), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144351] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, sym_identifier, - ACTIONS(7818), 1, - sym__newline, - STATE(6121), 1, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [125810] = 5, - ACTIONS(7820), 1, - anon_sym_DOT, - ACTIONS(7824), 1, - anon_sym_EQ, - STATE(4793), 1, - aux_sym_class_definition_repeat2, + STATE(4987), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144380] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 6, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5599), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_EQ, 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, + [144397] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(7276), 1, + anon_sym_LPAREN, + ACTIONS(7983), 1, + sym_identifier, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [125856] = 10, - ACTIONS(7834), 1, - anon_sym_LPAREN, - 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(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4988), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144426] = 8, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(8094), 1, + sym_float, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5848), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [125888] = 2, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + [144455] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4964), 9, - anon_sym_COMMA, + ACTIONS(5362), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, - 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_PIPE, anon_sym_and, - ACTIONS(7856), 1, anon_sym_or, - STATE(5449), 1, - aux_sym_assert_statement_repeat1, + [144472] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 2, + ACTIONS(5488), 10, sym__newline, anon_sym_SEMI, - [125934] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5580), 9, - anon_sym_COMMA, + 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, - [125950] = 5, - ACTIONS(7858), 1, - anon_sym_class, - ACTIONS(7860), 1, - anon_sym_ctypedef, - 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, - [125972] = 10, - ACTIONS(7834), 1, + [144489] = 6, + ACTIONS(7545), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - ACTIONS(7862), 1, - anon_sym_COMMA, - ACTIONS(7864), 1, - anon_sym_EQ, - 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, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [126004] = 3, - ACTIONS(7870), 1, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7548), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(8077), 3, anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [144514] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7868), 8, + ACTIONS(5494), 10, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [144531] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [126022] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(7290), 1, + anon_sym_LPAREN, + ACTIONS(8011), 1, sym_identifier, - ACTIONS(7872), 1, - sym__newline, - STATE(6121), 1, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [126050] = 10, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + STATE(4925), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144560] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7872), 1, - sym__newline, - ACTIONS(7874), 1, - anon_sym_COMMA, - ACTIONS(7876), 1, - anon_sym_EQ, - 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(7237), 1, + anon_sym_LPAREN, + ACTIONS(8043), 1, + sym_identifier, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [126082] = 2, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(4941), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144589] = 8, + ACTIONS(1907), 1, + aux_sym_integer_token4, + ACTIONS(8096), 1, + sym_float, + STATE(2609), 1, + aux_sym_integer_repeat4, + STATE(5937), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5596), 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, - [126098] = 2, + ACTIONS(1903), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1905), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5466), 2, + anon_sym_0x, + anon_sym_0X, + [144618] = 4, + ACTIONS(8098), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 9, + ACTIONS(8090), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(8088), 7, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [126114] = 3, - ACTIONS(7880), 1, + anon_sym_AMP, + anon_sym___stdcall, + [144639] = 3, + ACTIONS(7310), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7878), 8, - sym__newline, + ACTIONS(7312), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [126132] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7882), 1, - sym__newline, - STATE(6121), 1, + [144658] = 5, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7615), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6986), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - [126160] = 9, - ACTIONS(4504), 1, + [144681] = 8, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 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, - STATE(5002), 1, - sym_string, - STATE(5832), 1, - aux_sym_cvar_decl_repeat2, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5003), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126190] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(7290), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(8011), 2, + anon_sym_STAR, sym_identifier, - ACTIONS(7884), 1, - sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, + STATE(4598), 2, sym_type_qualifier, + aux_sym_c_type_repeat1, + [144710] = 8, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(7231), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(8041), 2, anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144739] = 9, + ACTIONS(6322), 1, anon_sym___stdcall, - ACTIONS(6173), 2, - anon_sym_STAR_STAR, + ACTIONS(6324), 1, anon_sym_AMP, - [126218] = 9, - ACTIONS(4504), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - 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(7237), 1, + anon_sym_LPAREN, + ACTIONS(7288), 1, + anon_sym_STAR_STAR, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5023), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126248] = 9, - ACTIONS(4504), 1, + ACTIONS(8043), 2, + anon_sym_STAR, + sym_identifier, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144770] = 9, + ACTIONS(6322), 1, + anon_sym___stdcall, + ACTIONS(6324), 1, + anon_sym_AMP, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - 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(7246), 1, + anon_sym_LPAREN, + ACTIONS(7290), 1, + anon_sym_STAR_STAR, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5028), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126278] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8011), 2, + anon_sym_STAR, sym_identifier, - ACTIONS(7894), 1, - sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, + STATE(4598), 2, sym_type_qualifier, + aux_sym_c_type_repeat1, + [144801] = 5, + STATE(4690), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(7966), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7028), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - [126306] = 9, - ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7896), 1, - anon_sym_EQ, - ACTIONS(7898), 1, - sym__newline, - STATE(5051), 1, - sym_string, - STATE(5962), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_AMP, + [144824] = 8, + ACTIONS(1668), 1, + aux_sym_integer_token4, + ACTIONS(8100), 1, + sym_float, + STATE(2686), 1, + aux_sym_integer_repeat4, + STATE(5494), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5151), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126336] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7900), 1, - sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, - sym_type_qualifier, + ACTIONS(1664), 2, + anon_sym_0o, + anon_sym_0O, + ACTIONS(1666), 2, + anon_sym_0b, + anon_sym_0B, + ACTIONS(5444), 2, + anon_sym_0x, + anon_sym_0X, + [144853] = 4, + ACTIONS(8102), 1, + aux_sym_integer_token1, + STATE(4991), 1, + aux_sym_integer_repeat1, 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, - [126364] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7902), 1, - sym__newline, - STATE(6121), 1, + ACTIONS(4876), 8, + anon_sym_COMMA, + 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, + [144874] = 5, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + STATE(4598), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(8011), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(7290), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - [126392] = 3, - ACTIONS(7762), 1, - anon_sym_STAR, + [144897] = 8, + ACTIONS(8105), 1, + anon_sym_COMMA, + ACTIONS(8107), 1, + anon_sym_as, + ACTIONS(8109), 1, + anon_sym_if, + ACTIONS(8113), 1, + anon_sym_and, + ACTIONS(8115), 1, + anon_sym_or, + STATE(5502), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7760), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8111), 4, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [144926] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [126410] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(7584), 1, + anon_sym_LPAREN, + ACTIONS(8061), 1, sym_identifier, - ACTIONS(7904), 1, - sym__newline, - STATE(6121), 1, + STATE(4690), 1, sym_type_index, - STATE(6822), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [126438] = 6, - ACTIONS(7332), 1, + STATE(4947), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144955] = 6, + ACTIONS(8047), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(8049), 1, anon_sym_if, - ACTIONS(7344), 1, + ACTIONS(8051), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8053), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 5, - anon_sym_COMMA, + ACTIONS(6026), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [126462] = 5, - ACTIONS(7344), 1, + anon_sym_EQ, + anon_sym_PIPE, + [144980] = 5, + ACTIONS(8051), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8053), 1, anon_sym_or, - ACTIONS(7906), 1, + ACTIONS(8117), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 6, - anon_sym_COMMA, + ACTIONS(6015), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [126484] = 5, - ACTIONS(5917), 1, - anon_sym_as, - ACTIONS(7344), 1, + anon_sym_EQ, + anon_sym_PIPE, + [145003] = 4, + ACTIONS(8051), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8053), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 6, - anon_sym_COMMA, + ACTIONS(6007), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, 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_EQ, + anon_sym_PIPE, + [145024] = 3, + ACTIONS(8051), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 7, - anon_sym_COMMA, + ACTIONS(5354), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_or, - [126526] = 6, - ACTIONS(7332), 1, + [145043] = 6, + ACTIONS(8047), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(8049), 1, anon_sym_if, - ACTIONS(7344), 1, + ACTIONS(8051), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8053), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 5, - anon_sym_COMMA, + ACTIONS(6038), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [126550] = 9, - ACTIONS(4504), 1, - anon_sym_LBRACK, - 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_PIPE, + [145068] = 6, + ACTIONS(8047), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(8049), 1, anon_sym_if, - ACTIONS(7344), 1, + ACTIONS(8051), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8053), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [126604] = 3, - ACTIONS(7762), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7760), 8, + ACTIONS(6049), 6, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [126622] = 10, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - ACTIONS(7913), 1, + anon_sym_PIPE, + [145093] = 8, + ACTIONS(8105), 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(8107), 1, + anon_sym_as, + ACTIONS(8109), 1, + anon_sym_if, + ACTIONS(8113), 1, + anon_sym_and, + ACTIONS(8115), 1, + anon_sym_or, + STATE(5502), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [126654] = 9, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7514), 1, + ACTIONS(8120), 4, + anon_sym_COLON, 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, - STATE(5063), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126684] = 8, - ACTIONS(6175), 1, + anon_sym_RBRACE, + sym_type_conversion, + [145122] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(8124), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [126712] = 10, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - 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, - [126744] = 8, - ACTIONS(6175), 1, + [145150] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7925), 1, + ACTIONS(8126), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [126772] = 9, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7569), 1, - anon_sym_EQ, - ACTIONS(7571), 1, - sym__newline, - STATE(4944), 1, - sym_string, - STATE(5718), 1, - aux_sym_cvar_decl_repeat2, + [145178] = 5, + ACTIONS(6009), 1, + anon_sym_as, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4945), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [126802] = 8, - ACTIONS(6175), 1, - anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7927), 1, - sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, - sym_type_qualifier, + ACTIONS(6007), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [145200] = 2, 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, - [126830] = 6, - ACTIONS(7770), 1, + ACTIONS(5476), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7772), 1, anon_sym_if, - ACTIONS(7776), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7778), 1, anon_sym_or, + sym_type_conversion, + [145216] = 5, + ACTIONS(8128), 1, + anon_sym_class, + ACTIONS(8130), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 5, + STATE(3620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(7160), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [145238] = 7, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + ACTIONS(8132), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + STATE(5460), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8134), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [126854] = 9, - ACTIONS(4504), 1, + [145264] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, + ACTIONS(4530), 1, sym_string_start, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7929), 1, + ACTIONS(8136), 1, anon_sym_EQ, - ACTIONS(7931), 1, + ACTIONS(8138), 1, sym__newline, - STATE(4960), 1, + STATE(5318), 1, sym_string, - STATE(5751), 1, + STATE(6593), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4961), 2, + STATE(5319), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [126884] = 9, - ACTIONS(4504), 1, + [145294] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, + ACTIONS(4530), 1, sym_string_start, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7933), 1, + ACTIONS(8140), 1, anon_sym_EQ, - ACTIONS(7935), 1, + ACTIONS(8142), 1, sym__newline, - STATE(4962), 1, + STATE(5320), 1, sym_string, - STATE(5753), 1, + STATE(6596), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4963), 2, + STATE(5321), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [126914] = 5, - ACTIONS(7776), 1, - anon_sym_and, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7937), 1, - anon_sym_as, + [145324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 6, + ACTIONS(5480), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [126936] = 4, - ACTIONS(7776), 1, anon_sym_and, - ACTIONS(7778), 1, anon_sym_or, + sym_type_conversion, + [145340] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 7, + ACTIONS(5494), 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, - [126956] = 3, - ACTIONS(7776), 1, + [145356] = 6, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7593), 1, + anon_sym_if, + ACTIONS(7603), 1, anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 8, + ACTIONS(6049), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - sym_type_conversion, - [126974] = 8, - ACTIONS(6175), 1, + [145380] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - ACTIONS(7940), 1, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8146), 1, sym__newline, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, - sym_type_qualifier, + STATE(5389), 1, + sym_string, + STATE(6277), 1, + aux_sym_cvar_decl_repeat2, 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, - [127002] = 6, - ACTIONS(7770), 1, - anon_sym_as, - ACTIONS(7772), 1, - anon_sym_if, - ACTIONS(7776), 1, + STATE(5421), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [145410] = 4, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7778), 1, + ACTIONS(8150), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 5, + ACTIONS(6007), 7, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [145430] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8152), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [127026] = 3, - ACTIONS(7880), 1, + ACTIONS(8154), 1, + sym__newline, + STATE(5427), 1, + sym_string, + STATE(6284), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5262), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [145460] = 3, + ACTIONS(8158), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7878), 8, - anon_sym_RPAREN, + ACTIONS(8156), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [127044] = 8, - ACTIONS(6175), 1, + [145478] = 3, + ACTIONS(6913), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5103), 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, + [145496] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7942), 1, + ACTIONS(8160), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127072] = 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, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5947), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [127096] = 10, - ACTIONS(7794), 1, - sym__newline, - ACTIONS(7834), 1, + [145524] = 10, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8164), 1, anon_sym_COMMA, - ACTIONS(7946), 1, + ACTIONS(8166), 1, anon_sym_EQ, - STATE(1640), 1, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8170), 1, + sym__newline, + STATE(4053), 1, sym_c_function_definition, - STATE(4833), 1, + STATE(5180), 1, sym_c_parameters, - STATE(6109), 1, + STATE(6494), 1, aux_sym_cvar_def_repeat1, - STATE(6318), 1, + STATE(6695), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127128] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5567), 9, - anon_sym_COMMA, + [145556] = 7, + ACTIONS(7696), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(7704), 1, anon_sym_and, + ACTIONS(7706), 1, anon_sym_or, - sym_type_conversion, - [127144] = 2, + ACTIONS(8172), 1, + anon_sym_COMMA, + STATE(5524), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5571), 9, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(8134), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [127160] = 2, + anon_sym_async, + anon_sym_for, + [145582] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8174), 1, + sym__newline, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5484), 9, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [145610] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(8176), 1, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [127176] = 2, + ACTIONS(8178), 1, + sym__newline, + STATE(5360), 1, + sym_string, + STATE(6093), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5495), 9, - anon_sym_COMMA, + STATE(5341), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [145640] = 6, + ACTIONS(8107), 1, anon_sym_as, + ACTIONS(8109), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(8113), 1, anon_sym_and, + ACTIONS(8115), 1, anon_sym_or, - sym_type_conversion, - [127192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5438), 9, + ACTIONS(6049), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + sym_type_conversion, + [145664] = 5, + ACTIONS(8113), 1, anon_sym_and, + ACTIONS(8115), 1, anon_sym_or, - sym_type_conversion, - [127208] = 2, + ACTIONS(8180), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5442), 9, + ACTIONS(6015), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, sym_type_conversion, - [127224] = 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, - ACTIONS(5967), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [127248] = 5, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7832), 1, - anon_sym_or, - ACTIONS(7948), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5982), 6, - anon_sym_DOT, + [145686] = 10, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [127270] = 4, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7832), 1, - anon_sym_or, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + sym__newline, + STATE(1258), 1, + sym_c_function_definition, + STATE(5122), 1, + sym_c_parameters, + STATE(6404), 1, + aux_sym_cvar_def_repeat1, + STATE(6756), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [127290] = 3, - ACTIONS(7830), 1, - anon_sym_and, + [145718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 8, - anon_sym_DOT, + ACTIONS(4949), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [127308] = 6, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7832), 1, anon_sym_or, + sym_type_conversion, + [145734] = 3, + ACTIONS(7502), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 5, - anon_sym_DOT, + ACTIONS(7506), 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_PIPE, - [127332] = 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, + anon_sym_AMP, + anon_sym___stdcall, + [145752] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8189), 1, + sym__newline, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [127356] = 8, - ACTIONS(6175), 1, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [145780] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(8191), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127384] = 3, - ACTIONS(7171), 1, + [145808] = 10, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + sym__newline, + ACTIONS(8193), 1, + anon_sym_COMMA, + ACTIONS(8195), 1, + anon_sym_EQ, + STATE(4064), 1, + sym_c_function_definition, + STATE(5180), 1, + sym_c_parameters, + STATE(6339), 1, + aux_sym_cvar_def_repeat1, + STATE(6695), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [145840] = 3, + ACTIONS(8158), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7175), 8, - anon_sym_LPAREN, + ACTIONS(8156), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [127402] = 6, - ACTIONS(7770), 1, + [145858] = 5, + ACTIONS(8197), 1, + anon_sym_DOT, + ACTIONS(8201), 1, + anon_sym_EQ, + STATE(5118), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8199), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [145880] = 6, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7772), 1, + ACTIONS(7593), 1, anon_sym_if, - ACTIONS(7776), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7778), 1, + ACTIONS(7605), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 5, + ACTIONS(6026), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [127426] = 3, - ACTIONS(7870), 1, + [145904] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8203), 1, + sym__newline, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [145932] = 3, + ACTIONS(8090), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7868), 8, + ACTIONS(8088), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -325427,1686 +340733,1951 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [127444] = 3, - ACTIONS(6576), 1, - anon_sym_STAR, + [145950] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8205), 1, + anon_sym_EQ, + ACTIONS(8207), 1, + sym__newline, + STATE(5348), 1, + sym_string, + STATE(6436), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5079), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, + STATE(5349), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [145980] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [127462] = 3, - ACTIONS(7420), 1, - anon_sym_STAR, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8209), 1, + sym__newline, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [127480] = 5, - ACTIONS(7955), 1, + [146008] = 10, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8174), 1, + sym__newline, + ACTIONS(8211), 1, + anon_sym_COMMA, + ACTIONS(8213), 1, + anon_sym_EQ, + STATE(3685), 1, + sym_c_function_definition, + STATE(5168), 1, + sym_c_parameters, + STATE(6128), 1, + aux_sym_cvar_def_repeat1, + STATE(6781), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [146040] = 5, + ACTIONS(8215), 1, anon_sym_class, - ACTIONS(7957), 1, + ACTIONS(8217), 1, anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3444), 2, + STATE(3620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(6848), 5, + ACTIONS(7160), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [127502] = 3, - ACTIONS(7384), 1, - anon_sym_STAR, + [146062] = 5, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8219), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7386), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6015), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [127520] = 10, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [146084] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7959), 1, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7961), 1, + ACTIONS(8222), 1, anon_sym_EQ, - ACTIONS(7963), 1, + ACTIONS(8224), 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, + STATE(5270), 1, + sym_string, + STATE(6381), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127552] = 8, - ACTIONS(6175), 1, + STATE(5273), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146114] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7965), 1, + ACTIONS(8226), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127580] = 10, - ACTIONS(7834), 1, + [146142] = 3, + ACTIONS(7670), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7672), 8, + sym__newline, anon_sym_LPAREN, - ACTIONS(7840), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(7965), 1, - sym__newline, - ACTIONS(7967), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [146160] = 10, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8228), 1, anon_sym_COMMA, - ACTIONS(7969), 1, + ACTIONS(8230), 1, anon_sym_EQ, - STATE(3866), 1, + ACTIONS(8232), 1, + sym__newline, + STATE(3672), 1, sym_c_function_definition, - STATE(4905), 1, + STATE(5168), 1, sym_c_parameters, - STATE(6242), 1, + STATE(6613), 1, aux_sym_cvar_def_repeat1, - STATE(6389), 1, + STATE(6781), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127612] = 8, - ACTIONS(6175), 1, + [146192] = 7, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + ACTIONS(8132), 1, + anon_sym_COMMA, + STATE(5460), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8234), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [146218] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5672), 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, + [146234] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5358), 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, + [146250] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7971), 1, + ACTIONS(8236), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127640] = 9, - ACTIONS(4504), 1, + [146278] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, + ACTIONS(4530), 1, sym_string_start, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7573), 1, + ACTIONS(8029), 1, anon_sym_EQ, - ACTIONS(7575), 1, + ACTIONS(8031), 1, sym__newline, - STATE(4976), 1, + STATE(5364), 1, sym_string, - STATE(5951), 1, + STATE(6402), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5053), 2, + STATE(5365), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [127670] = 8, - ACTIONS(6175), 1, + [146308] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7973), 1, + ACTIONS(8238), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127698] = 8, - ACTIONS(6175), 1, + [146336] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6049), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [146360] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, + ACTIONS(8122), 1, sym_identifier, - ACTIONS(7975), 1, + ACTIONS(8244), 1, sym__newline, - STATE(6121), 1, + STATE(6345), 1, sym_type_index, - STATE(6822), 1, + STATE(7105), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6171), 2, + ACTIONS(6322), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6173), 2, + ACTIONS(6324), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [127726] = 6, - ACTIONS(7695), 1, + [146388] = 9, + ACTIONS(8248), 1, + anon_sym_from, + ACTIONS(8250), 1, + anon_sym_COMMA, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8258), 1, anon_sym_or, + STATE(5785), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 5, + ACTIONS(8246), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [127750] = 9, - ACTIONS(4504), 1, + [146418] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7977), 1, - anon_sym_EQ, - ACTIONS(7979), 1, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8260), 1, sym__newline, - STATE(4975), 1, - sym_string, - STATE(5783), 1, - aux_sym_cvar_decl_repeat2, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4933), 2, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [146446] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8262), 1, + sym__newline, + STATE(6345), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [127780] = 2, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5567), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [146474] = 5, + ACTIONS(7603), 1, anon_sym_and, + ACTIONS(7605), 1, anon_sym_or, - [127795] = 4, - ACTIONS(7820), 1, - anon_sym_DOT, - STATE(4867), 1, - aux_sym_class_definition_repeat2, + ACTIONS(8264), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7981), 6, - anon_sym_LPAREN, + ACTIONS(6015), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, 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(7549), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - ACTIONS(7987), 1, + anon_sym_RBRACE, + [146496] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(7989), 1, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8267), 1, sym__newline, - STATE(1149), 1, - sym_external_definition, - STATE(4820), 1, - aux_sym_class_definition_repeat2, - STATE(5766), 1, - sym_argument_list, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127866] = 9, - ACTIONS(7991), 1, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [146524] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5599), 9, anon_sym_COMMA, - ACTIONS(7993), 1, anon_sym_as, - ACTIONS(7995), 1, anon_sym_if, - ACTIONS(7997), 1, anon_sym_COLON, - ACTIONS(7999), 1, - anon_sym_by, - ACTIONS(8001), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(8003), 1, anon_sym_or, - STATE(5579), 1, - aux_sym_assert_statement_repeat1, + sym_type_conversion, + [146540] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8269), 1, + anon_sym_EQ, + ACTIONS(8271), 1, + sym__newline, + STATE(5401), 1, + sym_string, + STATE(6314), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127895] = 9, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(8005), 1, + STATE(5405), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146570] = 3, + ACTIONS(8090), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8088), 8, + sym__newline, anon_sym_LPAREN, - ACTIONS(8007), 1, - anon_sym_COLON, - ACTIONS(8009), 1, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(8011), 1, + anon_sym_AMP, + anon_sym___stdcall, + [146588] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8273), 1, sym__newline, - STATE(3436), 1, - sym_external_definition, - STATE(4800), 1, - aux_sym_class_definition_repeat2, - STATE(6180), 1, - sym_argument_list, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127924] = 8, - ACTIONS(7693), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [146616] = 7, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7688), 1, anon_sym_or, - STATE(5710), 1, + ACTIONS(8275), 1, + anon_sym_COMMA, + STATE(5553), 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, + ACTIONS(8234), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [146642] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8277), 1, sym__newline, - STATE(4826), 1, - sym_gil_spec, - STATE(5324), 1, - sym_exception_value, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [146670] = 3, + ACTIONS(8148), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [127980] = 9, - ACTIONS(4487), 1, + ACTIONS(5354), 8, anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_LBRACK, - ACTIONS(8025), 1, - anon_sym_LPAREN, - ACTIONS(8027), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, 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, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [146688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128009] = 6, - ACTIONS(8031), 1, + ACTIONS(5354), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8033), 1, anon_sym_if, - ACTIONS(8035), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(8037), 1, anon_sym_or, + sym_type_conversion, + [146704] = 2, 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, + ACTIONS(5362), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(8041), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [146720] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8279), 1, + anon_sym_EQ, + ACTIONS(8281), 1, sym__newline, - STATE(4809), 1, - sym_gil_spec, - STATE(5446), 1, - sym_exception_value, + STATE(5370), 1, + sym_string, + STATE(6323), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128061] = 9, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + STATE(5379), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146750] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(8043), 1, - sym_identifier, - ACTIONS(8045), 1, + ACTIONS(4530), 1, sym_string_start, - STATE(3739), 1, - sym_c_function_definition, - STATE(4905), 1, - sym_c_parameters, - STATE(5180), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8007), 1, + anon_sym_EQ, + ACTIONS(8009), 1, + sym__newline, + STATE(5281), 1, sym_string, - STATE(6389), 1, - sym_template_params, + STATE(6527), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128090] = 9, - ACTIONS(7834), 1, + STATE(5282), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146780] = 10, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, - sym_string_start, - ACTIONS(8047), 1, - sym_identifier, - STATE(3602), 1, + ACTIONS(8260), 1, + sym__newline, + ACTIONS(8283), 1, + anon_sym_COMMA, + ACTIONS(8285), 1, + anon_sym_EQ, + STATE(1268), 1, sym_c_function_definition, - STATE(4802), 1, + STATE(5122), 1, sym_c_parameters, - STATE(5159), 1, - sym_string, STATE(6469), 1, + aux_sym_cvar_def_repeat1, + STATE(6756), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128119] = 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, - [128140] = 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(8051), 1, + [146812] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8053), 1, - anon_sym_COLON, - ACTIONS(8055), 1, - anon_sym_RBRACK, - STATE(6282), 1, - aux_sym_subscript_repeat1, + ACTIONS(8287), 1, + anon_sym_EQ, + ACTIONS(8289), 1, + sym__newline, + STATE(5434), 1, + sym_string, + STATE(6176), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128169] = 9, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + STATE(5435), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146842] = 9, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(8057), 1, - anon_sym_LPAREN, - ACTIONS(8059), 1, - anon_sym_COLON, - ACTIONS(8061), 1, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8291), 1, + anon_sym_EQ, + ACTIONS(8293), 1, sym__newline, - STATE(3441), 1, - sym_external_definition, - STATE(4815), 1, - aux_sym_class_definition_repeat2, - STATE(6185), 1, - sym_argument_list, + STATE(5436), 1, + sym_string, + STATE(6198), 1, + aux_sym_cvar_decl_repeat2, 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, + STATE(5437), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [146872] = 10, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8295), 1, + anon_sym_COMMA, + ACTIONS(8297), 1, + anon_sym_EQ, + ACTIONS(8299), 1, sym__newline, - STATE(4817), 1, - sym_gil_spec, - STATE(5369), 1, - sym_exception_value, + STATE(1337), 1, + sym_c_function_definition, + STATE(5247), 1, + sym_c_parameters, + STATE(6253), 1, + aux_sym_cvar_def_repeat1, + STATE(6729), 1, + sym_template_params, 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, + [146904] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128256] = 4, - ACTIONS(1537), 1, - sym_string_start, + ACTIONS(7878), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [146928] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2603), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(8071), 5, + ACTIONS(6038), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [128275] = 9, - ACTIONS(7826), 1, + [146952] = 7, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7688), 1, anon_sym_or, - ACTIONS(8053), 1, - anon_sym_COLON, - ACTIONS(8073), 1, + ACTIONS(8275), 1, anon_sym_COMMA, - ACTIONS(8075), 1, - anon_sym_RBRACK, - STATE(5757), 1, - aux_sym_subscript_repeat1, + STATE(5553), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128304] = 9, - ACTIONS(7834), 1, + ACTIONS(8134), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [146978] = 10, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, - sym_string_start, - ACTIONS(8077), 1, - sym_identifier, - STATE(3614), 1, + ACTIONS(8301), 1, + anon_sym_COMMA, + ACTIONS(8303), 1, + anon_sym_EQ, + ACTIONS(8305), 1, + sym__newline, + STATE(1669), 1, sym_c_function_definition, - STATE(4802), 1, + STATE(5247), 1, sym_c_parameters, - STATE(5166), 1, - sym_string, - STATE(6469), 1, + STATE(6556), 1, + aux_sym_cvar_def_repeat1, + STATE(6729), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128333] = 9, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - ACTIONS(8045), 1, - sym_string_start, - ACTIONS(8079), 1, - sym_identifier, - STATE(1454), 1, - sym_c_function_definition, - STATE(4833), 1, - sym_c_parameters, - STATE(5216), 1, - sym_string, - STATE(6318), 1, - sym_template_params, + [147010] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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(8087), 1, - anon_sym_LPAREN, - ACTIONS(8089), 1, - anon_sym_COLON, - ACTIONS(8091), 1, + ACTIONS(7878), 5, 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, - [128414] = 9, - ACTIONS(4487), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(8093), 1, - anon_sym_LPAREN, - ACTIONS(8095), 1, anon_sym_COLON, - ACTIONS(8097), 1, + anon_sym_PIPE, + [147034] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(8099), 1, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8305), 1, sym__newline, - STATE(3745), 1, - sym_external_definition, - STATE(4835), 1, - aux_sym_class_definition_repeat2, - STATE(6160), 1, - sym_argument_list, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [147062] = 8, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + ACTIONS(8307), 1, sym__newline, - STATE(5526), 1, - sym_exception_value, - STATE(6556), 1, - sym_gil_spec, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128472] = 5, - ACTIONS(7547), 1, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [147090] = 6, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8105), 1, + ACTIONS(8240), 1, anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 5, + ACTIONS(6026), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [128493] = 5, - ACTIONS(5917), 1, + anon_sym_PIPE, + [147114] = 7, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7547), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(7706), 1, anon_sym_or, + ACTIONS(8172), 1, + anon_sym_COMMA, + STATE(5524), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 5, - anon_sym_COMMA, + ACTIONS(8234), 4, + anon_sym_RPAREN, 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, + [147140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128543] = 4, - ACTIONS(5610), 1, + ACTIONS(5488), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7547), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, + anon_sym_or, + sym_type_conversion, + [147156] = 3, + ACTIONS(7767), 1, + anon_sym_STAR, 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, + ACTIONS(7769), 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, + [147174] = 6, + ACTIONS(8107), 1, anon_sym_as, - ACTIONS(7334), 1, + ACTIONS(8109), 1, anon_sym_if, - ACTIONS(7344), 1, + ACTIONS(8113), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8115), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8114), 4, + ACTIONS(8309), 5, 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, - ACTIONS(8118), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [147198] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8035), 1, + anon_sym_EQ, + ACTIONS(8037), 1, sym__newline, - STATE(4839), 1, - sym_gil_spec, - STATE(5402), 1, - sym_exception_value, + STATE(5284), 1, + sym_string, + STATE(6562), 1, + aux_sym_cvar_decl_repeat2, 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, + STATE(5285), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [147228] = 4, + ACTIONS(8113), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(8115), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 4, - anon_sym_RPAREN, + ACTIONS(6007), 7, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [128637] = 5, - ACTIONS(7332), 1, anon_sym_as, - ACTIONS(7344), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [147248] = 4, + ACTIONS(5356), 1, + anon_sym_as, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7346), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, + ACTIONS(5354), 7, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, 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, - ACTIONS(8118), 1, - sym__newline, - STATE(5402), 1, - sym_exception_value, - STATE(6508), 1, - sym_gil_spec, + anon_sym_or, + [147268] = 3, + ACTIONS(8113), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128687] = 6, - ACTIONS(7770), 1, + ACTIONS(5354), 8, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7772), 1, anon_sym_if, - ACTIONS(7776), 1, - anon_sym_and, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8120), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_or, sym_type_conversion, - [128710] = 8, - ACTIONS(7695), 1, + [147286] = 6, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7593), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7605), 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(8122), 2, - sym__newline, - anon_sym_SEMI, - [128737] = 8, - ACTIONS(7695), 1, + ACTIONS(6038), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [147310] = 6, + ACTIONS(8107), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8109), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8113), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8115), 1, anon_sym_or, - ACTIONS(8128), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6038), 5, anon_sym_COMMA, - STATE(5681), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [147334] = 3, + ACTIONS(8313), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8126), 2, + ACTIONS(8311), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [147352] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(7919), 1, + anon_sym_EQ, + ACTIONS(7921), 1, sym__newline, - anon_sym_SEMI, - [128764] = 4, - ACTIONS(7858), 1, - anon_sym_class, + STATE(5429), 1, + sym_string, + STATE(6270), 1, + aux_sym_cvar_decl_repeat2, 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, - [128783] = 9, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + STATE(5252), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [147382] = 8, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, - sym_string_start, - ACTIONS(8130), 1, + ACTIONS(8122), 1, sym_identifier, - 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(8315), 1, + sym__newline, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [147410] = 3, + ACTIONS(8313), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128812] = 6, - ACTIONS(7850), 1, + ACTIONS(8311), 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, + [147428] = 6, + ACTIONS(8107), 1, anon_sym_as, - ACTIONS(7852), 1, + ACTIONS(8109), 1, anon_sym_if, - ACTIONS(7854), 1, + ACTIONS(8113), 1, anon_sym_and, - ACTIONS(7856), 1, + ACTIONS(8115), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(6026), 5, 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, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [147452] = 9, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8317), 1, + anon_sym_EQ, + ACTIONS(8319), 1, sym__newline, - STATE(4889), 1, - sym_gil_spec, - STATE(5415), 1, - sym_exception_value, + STATE(5397), 1, + sym_string, + STATE(6311), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5400), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [147482] = 7, + ACTIONS(2261), 1, + anon_sym_except, + ACTIONS(2265), 1, + anon_sym_except_STAR, + ACTIONS(8321), 1, + anon_sym_finally, + STATE(2090), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(750), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(751), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [147507] = 6, + ACTIONS(8107), 1, + anon_sym_as, + ACTIONS(8109), 1, + anon_sym_if, + ACTIONS(8113), 1, + anon_sym_and, + ACTIONS(8115), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128864] = 9, - ACTIONS(4487), 1, + ACTIONS(8323), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [147530] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(7987), 1, - anon_sym_LBRACK, - ACTIONS(8136), 1, + ACTIONS(8325), 1, anon_sym_LPAREN, - ACTIONS(8138), 1, + ACTIONS(8327), 1, anon_sym_COLON, - ACTIONS(8140), 1, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8331), 1, sym__newline, - STATE(1153), 1, + STATE(3616), 1, sym_external_definition, - STATE(4284), 1, + STATE(4581), 1, aux_sym_class_definition_repeat2, - STATE(6090), 1, + STATE(6466), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128893] = 9, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(8097), 1, - anon_sym_LBRACK, - 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, + [147559] = 7, + ACTIONS(2261), 1, + anon_sym_except, + ACTIONS(2265), 1, + anon_sym_except_STAR, + ACTIONS(8321), 1, + anon_sym_finally, + STATE(2137), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [128922] = 6, - ACTIONS(7539), 1, + STATE(810), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(813), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [147584] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(7541), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(7547), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(8258), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 4, + ACTIONS(6049), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + [147607] = 8, + ACTIONS(7597), 1, anon_sym_async, + ACTIONS(7599), 1, anon_sym_for, - anon_sym_RBRACK, - [128945] = 8, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8333), 1, + anon_sym_COMMA, + ACTIONS(8335), 1, + anon_sym_RBRACE, + STATE(6075), 1, + aux_sym_dictionary_repeat1, + STATE(6925), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [147634] = 6, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8337), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8339), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5194), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [147657] = 4, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8258), 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, + ACTIONS(6007), 6, sym__newline, anon_sym_SEMI, - [128972] = 9, - ACTIONS(7834), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + [147676] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8341), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8343), 1, + anon_sym_COLON, + ACTIONS(8345), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, - sym_string_start, - ACTIONS(8152), 1, - sym_identifier, - 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(8347), 1, + sym__newline, + STATE(3876), 1, + sym_external_definition, + STATE(5116), 1, + aux_sym_class_definition_repeat2, + STATE(6422), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [147705] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8349), 1, + anon_sym_COMMA, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8156), 1, - sym__newline, - STATE(5527), 1, - sym_exception_value, - STATE(6535), 1, - sym_gil_spec, + ACTIONS(8353), 1, + anon_sym_RBRACK, + STATE(6094), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [147734] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8355), 1, + anon_sym_COMMA, + ACTIONS(8357), 1, + anon_sym_RBRACE, + STATE(6391), 1, + aux_sym_dictionary_repeat1, + STATE(7268), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [147761] = 6, + ACTIONS(8359), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8361), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8365), 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(8160), 2, + ACTIONS(4301), 4, sym__newline, - anon_sym_SEMI, - [129082] = 6, - ACTIONS(7539), 1, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [147784] = 4, + ACTIONS(1489), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2681), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8367), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7541), 1, anon_sym_if, - ACTIONS(7547), 1, + anon_sym_COLON, + anon_sym_PIPE, + [147803] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, + ACTIONS(6038), 4, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [129105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - 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_COLON, + anon_sym_PIPE, + [147826] = 5, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7605), 1, anon_sym_or, - 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, - [129157] = 9, - ACTIONS(7991), 1, + ACTIONS(8377), 5, 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(8174), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [147847] = 9, + ACTIONS(8379), 1, anon_sym_COLON, - ACTIONS(8176), 1, - anon_sym_by, - STATE(5579), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8389), 1, + sym__newline, + STATE(5634), 1, + sym_exception_value, + STATE(6717), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129186] = 8, - ACTIONS(7695), 1, + [147876] = 8, + ACTIONS(7880), 1, + anon_sym_COMMA, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8150), 1, - anon_sym_COMMA, - STATE(5546), 1, + STATE(5947), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6870), 2, + ACTIONS(7876), 2, sym__newline, anon_sym_SEMI, - [129213] = 5, - ACTIONS(7539), 1, + [147903] = 5, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7547), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(7605), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, + ACTIONS(8377), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [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, + anon_sym_RBRACE, + [147924] = 5, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_EQ, + STATE(5317), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(8199), 5, + anon_sym_LPAREN, anon_sym_COMMA, - [129257] = 7, - ACTIONS(6175), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [147945] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8345), 1, anon_sym_LBRACK, - ACTIONS(7792), 1, - sym_identifier, - STATE(6121), 1, - sym_type_index, - STATE(6822), 1, - sym_type_qualifier, + ACTIONS(8393), 1, + anon_sym_LPAREN, + ACTIONS(8395), 1, + anon_sym_COLON, + ACTIONS(8397), 1, + sym__newline, + STATE(3879), 1, + sym_external_definition, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(6429), 1, + sym_argument_list, 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, - [129282] = 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, + [147974] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8399), 1, + anon_sym_COMMA, + ACTIONS(8401), 1, + anon_sym_RBRACE, + STATE(6120), 1, + aux_sym_dictionary_repeat1, + STATE(7155), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [148001] = 4, + ACTIONS(8197), 1, + anon_sym_DOT, + STATE(5120), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 6, + anon_sym_LPAREN, anon_sym_COMMA, - [129305] = 9, - ACTIONS(7826), 1, anon_sym_as, - ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7830), 1, + anon_sym_COLON, + anon_sym_PIPE, + [148020] = 9, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8053), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8178), 1, + ACTIONS(8405), 1, anon_sym_COMMA, - ACTIONS(8180), 1, + ACTIONS(8407), 1, anon_sym_RBRACK, - STATE(5911), 1, + STATE(6137), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [148049] = 4, + ACTIONS(8409), 1, + anon_sym_DOT, + STATE(5120), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 4, - anon_sym_RPAREN, + ACTIONS(7201), 6, + anon_sym_LPAREN, 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, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [148068] = 3, + ACTIONS(8256), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 5, + ACTIONS(5354), 7, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_if, - [129378] = 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, + [148085] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8412), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8418), 1, + sym__newline, + STATE(5151), 1, + sym_gil_spec, + STATE(5796), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [148114] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + sym_identifier, + ACTIONS(8422), 1, + sym_string_start, + STATE(3880), 1, + sym_c_function_definition, + STATE(5180), 1, + sym_c_parameters, + STATE(5459), 1, + sym_string, + STATE(6695), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, - anon_sym_COMMA, - anon_sym_if, + [148143] = 8, + ACTIONS(7597), 1, anon_sym_async, + ACTIONS(7599), 1, anon_sym_for, + ACTIONS(8424), 1, + anon_sym_COMMA, + ACTIONS(8426), 1, anon_sym_RBRACE, - [129422] = 9, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + STATE(6155), 1, + aux_sym_dictionary_repeat1, + STATE(6971), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [148170] = 9, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8053), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8185), 1, + ACTIONS(8428), 1, anon_sym_COMMA, - ACTIONS(8187), 1, + ACTIONS(8430), 1, anon_sym_RBRACK, - STATE(5943), 1, + STATE(6485), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, - ACTIONS(8049), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [129472] = 5, - ACTIONS(8189), 1, + [148199] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8191), 1, - anon_sym_EQ, - STATE(5055), 1, + ACTIONS(8345), 1, + anon_sym_LBRACK, + ACTIONS(8432), 1, + anon_sym_LPAREN, + ACTIONS(8434), 1, + anon_sym_COLON, + ACTIONS(8436), 1, + sym__newline, + STATE(3882), 1, + sym_external_definition, + STATE(5158), 1, aux_sym_class_definition_repeat2, + STATE(6432), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + [148228] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, 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(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8438), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, + anon_sym_RBRACK, + STATE(6168), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [148257] = 6, + ACTIONS(8359), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [129514] = 6, - ACTIONS(8031), 1, - anon_sym_as, - ACTIONS(8033), 1, + ACTIONS(8361), 1, anon_sym_if, - ACTIONS(8035), 1, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(8037), 1, + ACTIONS(8365), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 4, + ACTIONS(6049), 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, + [148280] = 6, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8337), 1, + anon_sym_if, + ACTIONS(8442), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + STATE(5103), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [148303] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8444), 1, + anon_sym_LPAREN, + ACTIONS(8446), 1, anon_sym_COLON, - ACTIONS(8198), 1, - anon_sym_COMMA, - ACTIONS(8200), 1, - anon_sym_RBRACK, - STATE(5981), 1, - aux_sym_subscript_repeat1, + ACTIONS(8448), 1, + anon_sym_LBRACK, + ACTIONS(8450), 1, + sym__newline, + STATE(1107), 1, + sym_external_definition, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(6356), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129587] = 4, - ACTIONS(8035), 1, - anon_sym_and, - ACTIONS(8037), 1, - anon_sym_or, + [148332] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8448), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + anon_sym_LPAREN, + ACTIONS(8454), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + sym__newline, + STATE(1058), 1, + sym_external_definition, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(6563), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [148361] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 7, - sym__newline, + ACTIONS(5599), 8, + anon_sym_DOT, 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, - [129623] = 6, - ACTIONS(8202), 1, + [148376] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 4, + ACTIONS(6049), 4, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - [129646] = 6, - ACTIONS(8031), 1, - anon_sym_as, - ACTIONS(8033), 1, - anon_sym_if, - ACTIONS(8035), 1, + [148399] = 9, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8037), 1, + ACTIONS(8150), 1, anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8458), 1, + anon_sym_COMMA, + ACTIONS(8460), 1, + anon_sym_RBRACK, + STATE(6193), 1, + aux_sym_subscript_repeat1, 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, + [148428] = 5, + ACTIONS(8462), 1, anon_sym_DOT, - STATE(4867), 1, + ACTIONS(8464), 1, + anon_sym_EQ, + STATE(5396), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 6, + ACTIONS(8199), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [129688] = 9, - ACTIONS(4487), 1, + anon_sym_RBRACE, + [148449] = 6, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(8339), 1, + anon_sym_RPAREN, + ACTIONS(8466), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5141), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [148472] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8097), 1, + ACTIONS(8329), 1, anon_sym_LBRACK, - ACTIONS(8213), 1, + ACTIONS(8468), 1, anon_sym_LPAREN, - ACTIONS(8215), 1, + ACTIONS(8470), 1, anon_sym_COLON, - ACTIONS(8217), 1, + ACTIONS(8472), 1, sym__newline, - STATE(3720), 1, + STATE(3629), 1, sym_external_definition, - STATE(4284), 1, + STATE(5163), 1, aux_sym_class_definition_repeat2, - STATE(6158), 1, + STATE(6455), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129717] = 9, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, + [148501] = 6, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(8442), 1, + anon_sym_RBRACK, + ACTIONS(8474), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5248), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [148524] = 9, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8053), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8219), 1, + ACTIONS(8476), 1, anon_sym_COMMA, - ACTIONS(8221), 1, + ACTIONS(8478), 1, anon_sym_RBRACK, - STATE(6010), 1, + STATE(6213), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129746] = 6, - ACTIONS(8031), 1, - anon_sym_as, - ACTIONS(8033), 1, + [148553] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8480), 1, + anon_sym_COMMA, + ACTIONS(8482), 1, + anon_sym_RBRACE, + STATE(6554), 1, + aux_sym_dictionary_repeat1, + STATE(7173), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [148580] = 6, + ACTIONS(8484), 1, + anon_sym_RPAREN, + ACTIONS(8486), 1, anon_sym_if, - ACTIONS(8035), 1, - anon_sym_and, - ACTIONS(8037), 1, - anon_sym_or, + ACTIONS(8489), 1, + anon_sym_async, + ACTIONS(8492), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [129769] = 2, + STATE(5141), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [148603] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5484), 8, + ACTIONS(5362), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -327115,929 +342686,1073 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [129784] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5495), 8, - anon_sym_DOT, + [148618] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, anon_sym_as, + ACTIONS(8242), 1, anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [129799] = 2, + ACTIONS(8495), 1, + anon_sym_COMMA, + ACTIONS(8497), 1, + anon_sym_RBRACK, + STATE(6236), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [148647] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8422), 1, + sym_string_start, + ACTIONS(8499), 1, + sym_identifier, + STATE(1676), 1, + sym_c_function_definition, + STATE(5247), 1, + sym_c_parameters, + STATE(5529), 1, + sym_string, + STATE(6729), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5442), 8, - anon_sym_DOT, + [148676] = 8, + ACTIONS(7882), 1, anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [129829] = 5, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8223), 1, - anon_sym_as, + ACTIONS(8501), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(8111), 2, + sym__newline, + anon_sym_SEMI, + [148703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(8507), 1, + anon_sym_BSLASH, + ACTIONS(8503), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(5188), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(8505), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [148726] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8509), 1, anon_sym_COLON, - anon_sym_PIPE, - [129850] = 9, - ACTIONS(8015), 1, + ACTIONS(8511), 1, + sym__newline, + STATE(5162), 1, + sym_gil_spec, + STATE(5807), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [148755] = 9, + ACTIONS(8381), 1, anon_sym_except, - ACTIONS(8017), 1, + ACTIONS(8383), 1, anon_sym_with, - ACTIONS(8019), 1, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(8021), 1, + ACTIONS(8387), 1, anon_sym_noexcept, - ACTIONS(8226), 1, + ACTIONS(8513), 1, anon_sym_COLON, - ACTIONS(8228), 1, + ACTIONS(8515), 1, sym__newline, - STATE(4928), 1, - sym_gil_spec, - STATE(5514), 1, + STATE(5612), 1, sym_exception_value, + STATE(6692), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129879] = 4, - ACTIONS(8206), 1, - anon_sym_and, - ACTIONS(8208), 1, - anon_sym_or, + [148784] = 7, + ACTIONS(6326), 1, + anon_sym_LBRACK, + ACTIONS(8122), 1, + sym_identifier, + STATE(6345), 1, + sym_type_index, + STATE(7105), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 6, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(6322), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6324), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [148809] = 6, + ACTIONS(8517), 1, anon_sym_as, + ACTIONS(8519), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [129898] = 3, - ACTIONS(8206), 1, + ACTIONS(8521), 1, anon_sym_and, + ACTIONS(8523), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 7, + ACTIONS(7878), 4, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, + [148832] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8509), 1, + anon_sym_COLON, + ACTIONS(8511), 1, + sym__newline, + STATE(5807), 1, + sym_exception_value, + STATE(6827), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [148861] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, anon_sym_or, - [129915] = 9, - ACTIONS(7826), 1, + ACTIONS(8240), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8242), 1, anon_sym_if, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7832), 1, - anon_sym_or, - ACTIONS(8053), 1, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8230), 1, + ACTIONS(8525), 1, anon_sym_COMMA, - ACTIONS(8232), 1, + ACTIONS(8527), 1, anon_sym_RBRACK, - STATE(6030), 1, + STATE(6250), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129944] = 9, - ACTIONS(7826), 1, + [148890] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8258), 1, anon_sym_or, - ACTIONS(8053), 1, - anon_sym_COLON, - ACTIONS(8234), 1, - anon_sym_COMMA, - ACTIONS(8236), 1, - anon_sym_RBRACK, - STATE(5789), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [129973] = 9, - ACTIONS(7826), 1, + ACTIONS(6038), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [148913] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8053), 1, - anon_sym_COLON, - ACTIONS(8238), 1, + ACTIONS(8501), 1, anon_sym_COMMA, - ACTIONS(8240), 1, - anon_sym_RBRACK, - STATE(6050), 1, - aux_sym_subscript_repeat1, + STATE(6022), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130002] = 6, - ACTIONS(8031), 1, + ACTIONS(7283), 2, + sym__newline, + anon_sym_SEMI, + [148940] = 6, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(8033), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(8035), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(8037), 1, + ACTIONS(7706), 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, + ACTIONS(6049), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [148963] = 5, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7510), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7706), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, + ACTIONS(8377), 5, anon_sym_RPAREN, anon_sym_COMMA, 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, - STATE(6066), 1, - aux_sym_subscript_repeat1, + [148984] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8422), 1, + sym_string_start, + ACTIONS(8529), 1, + sym_identifier, + STATE(3884), 1, + sym_c_function_definition, + STATE(5180), 1, + sym_c_parameters, + STATE(5473), 1, + sym_string, + STATE(6695), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130075] = 9, - ACTIONS(4487), 1, + [149013] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(7987), 1, + ACTIONS(8345), 1, anon_sym_LBRACK, - ACTIONS(8246), 1, + ACTIONS(8531), 1, anon_sym_LPAREN, - ACTIONS(8248), 1, + ACTIONS(8533), 1, anon_sym_COLON, - ACTIONS(8250), 1, + ACTIONS(8535), 1, sym__newline, - STATE(1138), 1, + STATE(3886), 1, sym_external_definition, - STATE(4834), 1, + STATE(4581), 1, aux_sym_class_definition_repeat2, - STATE(5798), 1, + STATE(6437), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130104] = 6, - ACTIONS(8252), 1, + [149042] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8256), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8258), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(8539), 1, + anon_sym_COMMA, + STATE(6017), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [130127] = 6, - ACTIONS(8202), 1, + ACTIONS(8537), 2, + sym__newline, + anon_sym_SEMI, + [149069] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(8501), 1, + anon_sym_COMMA, + STATE(6022), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - [130150] = 8, - ACTIONS(7695), 1, + ACTIONS(8541), 2, + sym__newline, + anon_sym_SEMI, + [149096] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8150), 1, + ACTIONS(8501), 1, anon_sym_COMMA, - STATE(5546), 1, + STATE(6022), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7786), 2, + ACTIONS(8543), 2, sym__newline, anon_sym_SEMI, - [130177] = 9, - ACTIONS(8015), 1, + [149123] = 9, + ACTIONS(8381), 1, anon_sym_except, - ACTIONS(8021), 1, - anon_sym_noexcept, - ACTIONS(8067), 1, + ACTIONS(8383), 1, anon_sym_with, - ACTIONS(8069), 1, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(8226), 1, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8545), 1, anon_sym_COLON, - ACTIONS(8228), 1, + ACTIONS(8547), 1, sym__newline, - STATE(5514), 1, + STATE(5823), 1, sym_exception_value, - STATE(6422), 1, + STATE(6875), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130206] = 9, - ACTIONS(7991), 1, - anon_sym_COMMA, - ACTIONS(7993), 1, + [149152] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8549), 1, + anon_sym_LPAREN, + ACTIONS(8551), 1, + anon_sym_COLON, + ACTIONS(8553), 1, + sym__newline, + STATE(3625), 1, + sym_external_definition, + STATE(4581), 1, + aux_sym_class_definition_repeat2, + STATE(6460), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [149181] = 5, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8377), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(8001), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [149202] = 5, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(7706), 1, anon_sym_or, - ACTIONS(8260), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8377), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [149223] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8555), 1, + anon_sym_LPAREN, + ACTIONS(8557), 1, anon_sym_COLON, - ACTIONS(8262), 1, - anon_sym_by, - STATE(5579), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8559), 1, + anon_sym_LBRACK, + ACTIONS(8561), 1, + sym__newline, + STATE(1131), 1, + sym_external_definition, + STATE(5176), 1, + aux_sym_class_definition_repeat2, + STATE(6344), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130235] = 4, - ACTIONS(7955), 1, + [149252] = 4, + ACTIONS(8128), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3444), 2, + STATE(3620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(6848), 5, + ACTIONS(7160), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130254] = 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(8264), 1, + [149271] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8563), 1, anon_sym_COLON, - ACTIONS(8266), 1, - anon_sym_by, - STATE(5579), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8565), 1, + sym__newline, + STATE(5207), 1, + sym_gil_spec, + STATE(5626), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [149300] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8567), 1, + anon_sym_COMMA, + ACTIONS(8569), 1, + anon_sym_RBRACE, + STATE(6448), 1, + aux_sym_dictionary_repeat1, + STATE(7005), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [149327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, + ACTIONS(5488), 8, 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_COLON, + anon_sym_EQ, + anon_sym_PIPE, 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, + [149342] = 6, + ACTIONS(8484), 1, + anon_sym_RBRACK, + ACTIONS(8571), 1, + anon_sym_if, + ACTIONS(8574), 1, + anon_sym_async, + ACTIONS(8577), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130335] = 9, - ACTIONS(7991), 1, - anon_sym_COMMA, - ACTIONS(7993), 1, + STATE(5171), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [149365] = 6, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(7698), 1, anon_sym_if, - ACTIONS(8001), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(7706), 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, - [130364] = 5, - ACTIONS(8276), 1, - anon_sym_DOT, - ACTIONS(8278), 1, - anon_sym_EQ, - 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, - anon_sym_PIPE, - anon_sym_RBRACE, - [130385] = 4, - ACTIONS(7820), 1, - anon_sym_DOT, - STATE(4793), 1, - aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 6, - anon_sym_LPAREN, + ACTIONS(6026), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [130404] = 9, - ACTIONS(4487), 1, + anon_sym_async, + anon_sym_for, + [149388] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8280), 1, + ACTIONS(8448), 1, + anon_sym_LBRACK, + ACTIONS(8580), 1, anon_sym_LPAREN, - ACTIONS(8282), 1, + ACTIONS(8582), 1, anon_sym_COLON, - ACTIONS(8284), 1, - anon_sym_LBRACK, - ACTIONS(8286), 1, + ACTIONS(8584), 1, sym__newline, - STATE(1161), 1, + STATE(1103), 1, sym_external_definition, - STATE(4903), 1, + STATE(5131), 1, aux_sym_class_definition_repeat2, - STATE(6120), 1, + STATE(6040), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130433] = 4, - ACTIONS(7854), 1, - anon_sym_and, - ACTIONS(7856), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5915), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + [149417] = 6, + ACTIONS(7678), 1, anon_sym_as, + ACTIONS(7680), 1, anon_sym_if, - [130452] = 5, - ACTIONS(7510), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7688), 1, anon_sym_or, - ACTIONS(8288), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 5, - anon_sym_RPAREN, + ACTIONS(6038), 4, anon_sym_COMMA, - anon_sym_if, 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(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, - [130502] = 7, - ACTIONS(2341), 1, + anon_sym_RBRACK, + [149440] = 7, + ACTIONS(2309), 1, anon_sym_except, - ACTIONS(2345), 1, + ACTIONS(2313), 1, anon_sym_except_STAR, - ACTIONS(8295), 1, + ACTIONS(8586), 1, anon_sym_finally, - STATE(2061), 1, + STATE(2143), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(792), 2, + STATE(772), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(793), 2, + STATE(773), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [130527] = 9, - ACTIONS(4487), 1, + [149465] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8284), 1, + ACTIONS(8559), 1, anon_sym_LBRACK, - ACTIONS(8297), 1, + ACTIONS(8588), 1, anon_sym_LPAREN, - ACTIONS(8299), 1, + ACTIONS(8590), 1, anon_sym_COLON, - ACTIONS(8301), 1, + ACTIONS(8592), 1, sym__newline, - STATE(1070), 1, + STATE(1060), 1, sym_external_definition, - STATE(4284), 1, + STATE(4581), 1, aux_sym_class_definition_repeat2, - STATE(6128), 1, + STATE(6353), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130556] = 3, - ACTIONS(7854), 1, - anon_sym_and, + [149494] = 4, + ACTIONS(8197), 1, + anon_sym_DOT, + STATE(5118), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(8199), 6, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_or, - [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, + anon_sym_PIPE, + [149513] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8422), 1, + sym_string_start, + ACTIONS(8594), 1, + sym_identifier, + STATE(3687), 1, + sym_c_function_definition, + STATE(5168), 1, + sym_c_parameters, + STATE(5506), 1, + sym_string, + STATE(6781), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130602] = 6, - ACTIONS(7850), 1, + [149542] = 5, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7852), 1, - anon_sym_if, - ACTIONS(7854), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7856), 1, + ACTIONS(7605), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(8309), 5, anon_sym_COMMA, - [130625] = 9, - ACTIONS(7834), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [149563] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8596), 1, + anon_sym_COLON, + ACTIONS(8598), 1, + sym__newline, + STATE(5193), 1, + sym_gil_spec, + STATE(5594), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [149592] = 9, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, + ACTIONS(8422), 1, sym_string_start, - ACTIONS(8307), 1, + ACTIONS(8600), 1, sym_identifier, - STATE(1578), 1, + STATE(1831), 1, sym_c_function_definition, - STATE(4799), 1, + STATE(5122), 1, sym_c_parameters, - STATE(5279), 1, + STATE(5551), 1, sym_string, - STATE(6442), 1, + STATE(6756), 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, + [149621] = 9, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8053), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8309), 1, + ACTIONS(8602), 1, anon_sym_COMMA, - ACTIONS(8311), 1, + ACTIONS(8604), 1, anon_sym_RBRACK, - STATE(6253), 1, + STATE(6296), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130683] = 9, - ACTIONS(4487), 1, + [149650] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8284), 1, + ACTIONS(8559), 1, anon_sym_LBRACK, - ACTIONS(8313), 1, + ACTIONS(8606), 1, anon_sym_LPAREN, - ACTIONS(8315), 1, + ACTIONS(8608), 1, anon_sym_COLON, - ACTIONS(8317), 1, + ACTIONS(8610), 1, sym__newline, - STATE(1071), 1, + STATE(1062), 1, sym_external_definition, - STATE(4918), 1, + STATE(5196), 1, aux_sym_class_definition_repeat2, - STATE(6131), 1, + STATE(6357), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130712] = 7, - ACTIONS(2341), 1, + [149679] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8614), 1, + anon_sym_RBRACK, + STATE(6632), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [149708] = 7, + ACTIONS(2309), 1, anon_sym_except, - ACTIONS(2345), 1, + ACTIONS(2313), 1, anon_sym_except_STAR, - ACTIONS(8295), 1, + ACTIONS(8586), 1, anon_sym_finally, - STATE(2079), 1, + STATE(2156), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(808), 2, + STATE(774), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(813), 2, + STATE(775), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [130737] = 5, - ACTIONS(7539), 1, + [149733] = 6, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7547), 1, + ACTIONS(7698), 1, + anon_sym_if, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(7706), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, + ACTIONS(6038), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, + [149756] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8616), 1, + anon_sym_COMMA, + ACTIONS(8618), 1, 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, + STATE(6159), 1, + aux_sym_subscript_repeat1, 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, - ACTIONS(8321), 1, - sym__newline, - STATE(4930), 1, - sym_gil_spec, - STATE(5521), 1, - sym_exception_value, - ACTIONS(3), 2, + [149785] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, 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, + ACTIONS(8625), 1, + anon_sym_BSLASH, + ACTIONS(8620), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(5188), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(8622), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [149808] = 9, + ACTIONS(4399), 1, + anon_sym_DOT, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, anon_sym_COLON, - ACTIONS(8321), 1, + ACTIONS(8632), 1, sym__newline, - STATE(5521), 1, - sym_exception_value, - STATE(6586), 1, - sym_gil_spec, + STATE(3626), 1, + sym_external_definition, + STATE(5099), 1, + aux_sym_class_definition_repeat2, + STATE(6463), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130841] = 5, - ACTIONS(5917), 1, + [149837] = 5, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7510), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7706), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 5, + ACTIONS(8309), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [130862] = 8, - ACTIONS(7695), 1, + [149858] = 5, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7688), 1, anon_sym_or, - ACTIONS(8128), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8377), 5, anon_sym_COMMA, - STATE(5550), 1, - aux_sym_assert_statement_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [149879] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8634), 1, + anon_sym_COLON, + ACTIONS(8636), 1, + sym__newline, + STATE(5208), 1, + sym_gil_spec, + STATE(5608), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8323), 2, + [149908] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8634), 1, + anon_sym_COLON, + ACTIONS(8636), 1, sym__newline, - anon_sym_SEMI, - [130889] = 9, - ACTIONS(7834), 1, + STATE(5608), 1, + sym_exception_value, + STATE(6847), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [149937] = 6, + ACTIONS(8484), 1, + anon_sym_RBRACE, + ACTIONS(8638), 1, + anon_sym_if, + ACTIONS(8641), 1, + anon_sym_async, + ACTIONS(8644), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5194), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [149960] = 9, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8045), 1, + ACTIONS(8422), 1, sym_string_start, - ACTIONS(8325), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(1605), 1, + STATE(1849), 1, sym_c_function_definition, - STATE(4799), 1, + STATE(5122), 1, sym_c_parameters, - STATE(5239), 1, + STATE(5475), 1, sym_string, - STATE(6442), 1, + STATE(6756), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130918] = 9, - ACTIONS(4487), 1, + [149989] = 9, + ACTIONS(4399), 1, anon_sym_DOT, - ACTIONS(8284), 1, + ACTIONS(8559), 1, anon_sym_LBRACK, - ACTIONS(8327), 1, + ACTIONS(8649), 1, anon_sym_LPAREN, - ACTIONS(8329), 1, + ACTIONS(8651), 1, anon_sym_COLON, - ACTIONS(8331), 1, + ACTIONS(8653), 1, sym__newline, - STATE(1085), 1, + STATE(1104), 1, sym_external_definition, - STATE(4284), 1, + STATE(4581), 1, aux_sym_class_definition_repeat2, - STATE(6135), 1, + STATE(6366), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130947] = 6, - ACTIONS(8252), 1, + [150018] = 5, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(8254), 1, - anon_sym_if, - ACTIONS(8256), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(8258), 1, + ACTIONS(7688), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [130970] = 9, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(8097), 1, - anon_sym_LBRACK, - ACTIONS(8333), 1, - anon_sym_LPAREN, - ACTIONS(8335), 1, + ACTIONS(8377), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [150039] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8655), 1, anon_sym_COLON, - ACTIONS(8337), 1, + ACTIONS(8657), 1, sym__newline, - STATE(3732), 1, - sym_external_definition, - STATE(4868), 1, - aux_sym_class_definition_repeat2, - STATE(6151), 1, - sym_argument_list, + STATE(5112), 1, + sym_gil_spec, + STATE(5631), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [130999] = 5, - ACTIONS(8256), 1, - anon_sym_and, - ACTIONS(8258), 1, - anon_sym_or, - ACTIONS(8339), 1, + [150068] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5982), 5, - anon_sym_DOT, + ACTIONS(8371), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [131020] = 4, - ACTIONS(8256), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8258), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 6, + ACTIONS(6026), 4, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [131039] = 3, - ACTIONS(8256), 1, + [150091] = 5, + ACTIONS(7704), 1, anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, + ACTIONS(8659), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 7, - anon_sym_DOT, - anon_sym_as, + ACTIONS(6015), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [131056] = 6, + anon_sym_async, + anon_sym_for, + [150112] = 6, ACTIONS(8252), 1, anon_sym_as, ACTIONS(8254), 1, @@ -328049,26103 +343764,27109 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [131079] = 6, - ACTIONS(8252), 1, + ACTIONS(8309), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [150135] = 6, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(7593), 1, anon_sym_if, - ACTIONS(8256), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(8258), 1, + ACTIONS(7605), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, + ACTIONS(8662), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [150158] = 9, + ACTIONS(4399), 1, anon_sym_DOT, + ACTIONS(8448), 1, + anon_sym_LBRACK, + ACTIONS(8664), 1, + anon_sym_LPAREN, + ACTIONS(8666), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [131102] = 9, - ACTIONS(7991), 1, + ACTIONS(8668), 1, + sym__newline, + STATE(1097), 1, + sym_external_definition, + STATE(5130), 1, + aux_sym_class_definition_repeat2, + STATE(6076), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150187] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8670), 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(8342), 1, - anon_sym_COLON, - ACTIONS(8344), 1, - anon_sym_by, - STATE(5579), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8672), 1, + anon_sym_RBRACE, + STATE(6511), 1, + aux_sym_dictionary_repeat1, + STATE(6937), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131131] = 5, - ACTIONS(7502), 1, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [150214] = 5, + ACTIONS(6009), 1, anon_sym_as, - ACTIONS(7510), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7706), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, + ACTIONS(6007), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [131152] = 9, - ACTIONS(8015), 1, + [150235] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5494), 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, + [150250] = 9, + ACTIONS(8381), 1, anon_sym_except, - ACTIONS(8021), 1, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8387), 1, anon_sym_noexcept, - ACTIONS(8067), 1, + ACTIONS(8655), 1, + anon_sym_COLON, + ACTIONS(8657), 1, + sym__newline, + STATE(5631), 1, + sym_exception_value, + STATE(6885), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150279] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8383), 1, anon_sym_with, - ACTIONS(8069), 1, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(8346), 1, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8674), 1, anon_sym_COLON, - ACTIONS(8348), 1, + ACTIONS(8676), 1, sym__newline, - STATE(5351), 1, + STATE(5628), 1, sym_exception_value, - STATE(6486), 1, + STATE(6768), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131181] = 4, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(7510), 1, + [150308] = 5, + ACTIONS(8373), 1, anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(8678), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 6, - anon_sym_RPAREN, + ACTIONS(6015), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [131200] = 9, - ACTIONS(8015), 1, + anon_sym_COLON, + anon_sym_PIPE, + [150329] = 9, + ACTIONS(8381), 1, anon_sym_except, - ACTIONS(8021), 1, + ACTIONS(8387), 1, anon_sym_noexcept, - ACTIONS(8067), 1, + ACTIONS(8414), 1, anon_sym_with, - ACTIONS(8069), 1, + ACTIONS(8416), 1, anon_sym_nogil, - ACTIONS(8350), 1, + ACTIONS(8681), 1, anon_sym_COLON, - ACTIONS(8352), 1, + ACTIONS(8683), 1, sym__newline, - STATE(5513), 1, - sym_exception_value, - STATE(6336), 1, + STATE(5148), 1, sym_gil_spec, + STATE(5821), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131229] = 5, - ACTIONS(7502), 1, + [150358] = 4, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6007), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [150377] = 6, + ACTIONS(8359), 1, anon_sym_as, - ACTIONS(7510), 1, + ACTIONS(8361), 1, + anon_sym_if, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(8365), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8049), 5, - anon_sym_RPAREN, + ACTIONS(6094), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [150400] = 5, + ACTIONS(7591), 1, + anon_sym_as, + ACTIONS(7603), 1, + anon_sym_and, + ACTIONS(7605), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8377), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [131250] = 2, + anon_sym_RBRACE, + [150421] = 4, + ACTIONS(8215), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(7160), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [150440] = 3, + ACTIONS(8373), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5571), 8, + ACTIONS(5354), 7, anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [131265] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(8354), 1, - anon_sym_EQ, - ACTIONS(8356), 1, + [150457] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8681), 1, + anon_sym_COLON, + ACTIONS(8683), 1, sym__newline, - STATE(5812), 1, - aux_sym_cvar_decl_repeat2, + STATE(5821), 1, + sym_exception_value, + STATE(6809), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131289] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [150486] = 6, + ACTIONS(8359), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8361), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8365), 1, anon_sym_or, - ACTIONS(8358), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6026), 4, sym__newline, - STATE(6264), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [150509] = 8, + ACTIONS(7597), 1, + anon_sym_async, + ACTIONS(7599), 1, + anon_sym_for, + ACTIONS(8685), 1, + anon_sym_COMMA, + ACTIONS(8687), 1, + anon_sym_RBRACE, + STATE(6027), 1, + aux_sym_dictionary_repeat1, + STATE(7144), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5129), 2, + sym_for_in_clause, + sym__comprehension_for_clause, + [150536] = 5, + ACTIONS(7696), 1, + anon_sym_as, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(7706), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131315] = 8, - ACTIONS(7557), 1, + ACTIONS(8377), 5, anon_sym_RPAREN, - ACTIONS(7559), 1, anon_sym_COMMA, - ACTIONS(8360), 1, - anon_sym_as, - ACTIONS(8362), 1, anon_sym_if, - ACTIONS(8364), 1, + anon_sym_async, + anon_sym_for, + [150557] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(8422), 1, + sym_string_start, + ACTIONS(8689), 1, + sym_identifier, + STATE(3704), 1, + sym_c_function_definition, + STATE(5168), 1, + sym_c_parameters, + STATE(5571), 1, + sym_string, + STATE(6781), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150586] = 5, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8258), 1, anon_sym_or, - STATE(6251), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8691), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131341] = 8, - ACTIONS(7469), 1, + ACTIONS(6015), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7699), 1, + [150607] = 5, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8365), 1, anon_sym_or, - ACTIONS(8368), 1, + ACTIONS(8694), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6015), 5, sym__newline, - STATE(6270), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [150628] = 4, + ACTIONS(8363), 1, + anon_sym_and, + ACTIONS(8365), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131367] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(6007), 6, + sym__newline, anon_sym_as, - ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [150647] = 3, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - ACTIONS(8370), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5354), 7, sym__newline, - STATE(6273), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_or, + anon_sym_nogil, + [150664] = 5, + ACTIONS(8697), 1, + anon_sym_DOT, + ACTIONS(8699), 1, + anon_sym_EQ, + STATE(5406), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131393] = 8, - ACTIONS(7469), 1, + ACTIONS(8199), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, + anon_sym_PIPE, + [150685] = 6, + ACTIONS(8517), 1, + anon_sym_as, + ACTIONS(8519), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8521), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8523), 1, anon_sym_or, - 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, + ACTIONS(6026), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [150708] = 5, + ACTIONS(8521), 1, + anon_sym_and, + ACTIONS(8523), 1, + anon_sym_or, + ACTIONS(8701), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6015), 5, + anon_sym_DOT, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [150729] = 4, + ACTIONS(8521), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8523), 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, - [131445] = 6, - ACTIONS(8378), 1, + ACTIONS(6007), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(8380), 1, - anon_sym_LBRACK, - STATE(5459), 1, - sym_type_index, + anon_sym_PIPE, + [150748] = 3, + ACTIONS(8521), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8376), 2, - anon_sym_COMMA, + ACTIONS(5354), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(8382), 2, - anon_sym_not, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_or, - [131467] = 8, - ACTIONS(7695), 1, + [150765] = 6, + ACTIONS(8517), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8519), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8521), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8523), 1, anon_sym_or, - 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, - [131493] = 8, - ACTIONS(7469), 1, + ACTIONS(6038), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [150788] = 9, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8704), 1, anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(8706), 1, + anon_sym_RBRACK, + STATE(6047), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [150817] = 6, + ACTIONS(8517), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8519), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8521), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8523), 1, anon_sym_or, - ACTIONS(7935), 1, - sym__newline, - STATE(5743), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131519] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7929), 1, + ACTIONS(6049), 4, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7931), 1, - sym__newline, - STATE(5745), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_PIPE, + [150840] = 5, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131543] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(8309), 5, anon_sym_COMMA, - ACTIONS(8386), 1, - anon_sym_EQ, - ACTIONS(8388), 1, - sym__newline, - STATE(5747), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4959), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131567] = 7, - ACTIONS(4504), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [150861] = 9, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7933), 1, - anon_sym_EQ, - ACTIONS(7935), 1, - sym__newline, - STATE(5748), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8422), 1, + sym_string_start, + ACTIONS(8708), 1, + sym_identifier, + STATE(1250), 1, + sym_c_function_definition, + STATE(5247), 1, + sym_c_parameters, + STATE(5521), 1, + sym_string, + STATE(6729), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131591] = 8, - ACTIONS(7695), 1, + [150890] = 6, + ACTIONS(8252), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8254), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8256), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8258), 1, anon_sym_or, - ACTIONS(7882), 1, - sym__newline, - ACTIONS(8390), 1, - anon_sym_COMMA, - STATE(5808), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131617] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(8392), 1, - anon_sym_EQ, - ACTIONS(8394), 1, + ACTIONS(6026), 4, sym__newline, - STATE(5722), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [150913] = 6, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7680), 1, + anon_sym_if, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131641] = 3, + ACTIONS(6026), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [150936] = 6, + ACTIONS(7700), 1, + anon_sym_async, + ACTIONS(7702), 1, + anon_sym_for, + ACTIONS(8442), 1, + anon_sym_RPAREN, + ACTIONS(8466), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + STATE(5136), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [150959] = 6, + ACTIONS(8359), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8361), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8363), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8365), 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(6038), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [150982] = 5, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, + ACTIONS(8710), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6015), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [151003] = 8, + ACTIONS(7882), 1, anon_sym_as, - anon_sym_PIPE, - [131701] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(8539), 1, anon_sym_COMMA, - ACTIONS(8400), 1, - anon_sym_EQ, - ACTIONS(8402), 1, - sym__newline, - STATE(5824), 1, - aux_sym_cvar_decl_repeat2, + STATE(5976), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5001), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131725] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7607), 1, - anon_sym_EQ, - ACTIONS(7609), 1, + ACTIONS(8713), 2, sym__newline, - STATE(5827), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [151030] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131749] = 8, - ACTIONS(7826), 1, + ACTIONS(5476), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7830), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [151045] = 5, + ACTIONS(6009), 1, + anon_sym_as, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7688), 1, anon_sym_or, - ACTIONS(8404), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6007), 5, anon_sym_COMMA, - ACTIONS(8406), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(5764), 1, - aux_sym_type_index_repeat1, + [151066] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131775] = 4, - ACTIONS(8276), 1, + ACTIONS(5480), 8, anon_sym_DOT, - STATE(4965), 1, - aux_sym_class_definition_repeat2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [151081] = 4, + ACTIONS(5356), 1, + anon_sym_as, + ACTIONS(7686), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7981), 5, - anon_sym_LPAREN, + ACTIONS(5354), 6, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [151100] = 4, + ACTIONS(5356), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [131793] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7704), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5354), 6, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8408), 1, - anon_sym_EQ, - ACTIONS(8410), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [151119] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(8717), 1, + anon_sym_COMMA, + STATE(6011), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8715), 2, sym__newline, - STATE(5734), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [151146] = 9, + ACTIONS(8381), 1, + anon_sym_except, + ACTIONS(8387), 1, + anon_sym_noexcept, + ACTIONS(8414), 1, + anon_sym_with, + ACTIONS(8416), 1, + anon_sym_nogil, + ACTIONS(8719), 1, + anon_sym_COLON, + ACTIONS(8721), 1, + sym__newline, + STATE(5216), 1, + sym_gil_spec, + STATE(5811), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5093), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [131817] = 4, - ACTIONS(8412), 1, - anon_sym_DOT, - STATE(4956), 1, - aux_sym_class_definition_repeat2, + [151175] = 6, + ACTIONS(7682), 1, + anon_sym_async, + ACTIONS(7684), 1, + anon_sym_for, + ACTIONS(8339), 1, + anon_sym_RBRACK, + ACTIONS(8474), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + STATE(5171), 4, + sym_for_in_clause, + sym_if_clause, + sym__comprehension_for_clause, + aux_sym__comprehension_clauses_repeat1, + [151198] = 6, + ACTIONS(7678), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7680), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7686), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7688), 1, anon_sym_or, - ACTIONS(8415), 1, - sym__newline, - STATE(5771), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131861] = 8, - ACTIONS(7469), 1, + ACTIONS(6049), 4, anon_sym_COMMA, - ACTIONS(7695), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [151221] = 8, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(8417), 1, - sym__newline, - STATE(5773), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8723), 1, + anon_sym_COMMA, + ACTIONS(8725), 1, + anon_sym_COLON, + STATE(6598), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [131887] = 7, - ACTIONS(4504), 1, + [151247] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7977), 1, + ACTIONS(8727), 1, anon_sym_EQ, - ACTIONS(7979), 1, + ACTIONS(8729), 1, sym__newline, - STATE(5775), 1, + STATE(6523), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5278), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [131911] = 7, - ACTIONS(4504), 1, + [151271] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(8269), 1, anon_sym_EQ, - ACTIONS(8421), 1, + ACTIONS(8271), 1, sym__newline, - STATE(5777), 1, + STATE(6309), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4973), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [131935] = 7, - ACTIONS(4504), 1, + [151295] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8415), 1, - sym__newline, - ACTIONS(8423), 1, + ACTIONS(8007), 1, anon_sym_EQ, - STATE(5778), 1, + ACTIONS(8009), 1, + sym__newline, + STATE(6524), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 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(5780), 1, - aux_sym_cvar_decl_repeat2, + [151319] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(5183), 7, sym__newline, - ACTIONS(8429), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, 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, + anon_sym_LBRACK, + [151333] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8431), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8071), 5, + ACTIONS(8309), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + [151355] = 8, + ACTIONS(7882), 1, anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [132023] = 4, - ACTIONS(8433), 1, - anon_sym_DOT, - STATE(4965), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8731), 1, + sym__newline, + STATE(6188), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [151381] = 8, + ACTIONS(7882), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [132041] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8436), 1, - anon_sym_EQ, - ACTIONS(8438), 1, + ACTIONS(8733), 1, sym__newline, - STATE(5736), 1, + STATE(6548), 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, - [132065] = 4, - ACTIONS(6953), 1, + [151407] = 4, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4148), 1, + STATE(5317), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7981), 5, - anon_sym_import, - anon_sym_cimport, + ACTIONS(8199), 5, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [132083] = 7, - ACTIONS(2678), 1, - anon_sym_COLON, - ACTIONS(7826), 1, + [151425] = 8, + ACTIONS(8111), 1, + anon_sym_RPAREN, + ACTIONS(8735), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8743), 1, anon_sym_or, + STATE(6085), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [151451] = 4, + ACTIONS(8697), 1, + anon_sym_DOT, + STATE(5406), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2676), 2, + ACTIONS(8199), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [132107] = 8, - ACTIONS(7826), 1, anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + anon_sym_PIPE, + [151469] = 8, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8404), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(8440), 1, + ACTIONS(8747), 1, anon_sym_RBRACK, - STATE(6089), 1, + STATE(6055), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132133] = 8, - ACTIONS(7469), 1, + [151495] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8749), 1, + anon_sym_EQ, + ACTIONS(8751), 1, + sym__newline, + STATE(6397), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [151519] = 4, + ACTIONS(8753), 1, + anon_sym_DOT, + STATE(5263), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7201), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [151537] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8442), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8756), 1, sym__newline, - STATE(5804), 1, + STATE(6591), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132159] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [151563] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8356), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8758), 1, sym__newline, - STATE(5805), 1, + STATE(6418), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132185] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [151589] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8444), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8760), 1, sym__newline, - STATE(5806), 1, + STATE(6423), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132211] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [151615] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8446), 1, - anon_sym_EQ, - ACTIONS(8448), 1, + ACTIONS(8762), 1, sym__newline, - STATE(5807), 1, + STATE(6427), 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, - [132235] = 7, - ACTIONS(4504), 1, + [151641] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8450), 1, + ACTIONS(8764), 1, anon_sym_EQ, - ACTIONS(8452), 1, + ACTIONS(8766), 1, sym__newline, - STATE(5809), 1, + STATE(6434), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132259] = 7, - ACTIONS(4504), 1, + [151665] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8454), 1, + ACTIONS(8768), 1, anon_sym_EQ, - ACTIONS(8456), 1, + ACTIONS(8770), 1, sym__newline, - STATE(5811), 1, + STATE(6435), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132283] = 7, - ACTIONS(4504), 1, + [151689] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8458), 1, + ACTIONS(8772), 1, anon_sym_EQ, - ACTIONS(8460), 1, + ACTIONS(8774), 1, sym__newline, - STATE(6279), 1, + STATE(6439), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5079), 2, + STATE(5296), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132307] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + [151713] = 8, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8150), 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, - [132333] = 8, - ACTIONS(8202), 1, + ACTIONS(8240), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8242), 1, anon_sym_if, - ACTIONS(8206), 1, - anon_sym_and, - ACTIONS(8208), 1, - anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(8466), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [132359] = 6, - ACTIONS(7543), 1, - anon_sym_async, - ACTIONS(7545), 1, - anon_sym_for, - ACTIONS(8468), 1, - anon_sym_if, - ACTIONS(8470), 1, + ACTIONS(8776), 1, anon_sym_RBRACK, + STATE(6252), 1, + aux_sym_type_index_repeat1, 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, + [151739] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(7816), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8778), 1, sym__newline, - STATE(6054), 1, + STATE(6600), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132407] = 8, - ACTIONS(7469), 1, + [151765] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8472), 1, + ACTIONS(8760), 1, sym__newline, - STATE(5825), 1, + ACTIONS(8780), 1, + anon_sym_EQ, + STATE(6441), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132433] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [151789] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8474), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8782), 1, sym__newline, - STATE(5826), 1, + STATE(6185), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132459] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [151815] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8476), 1, + ACTIONS(8126), 1, sym__newline, - STATE(5828), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8784), 1, + anon_sym_COMMA, + STATE(6583), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132485] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [151841] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8478), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8142), 1, sym__newline, - STATE(5829), 1, + STATE(6584), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132511] = 8, - ACTIONS(7469), 1, + [151867] = 4, + ACTIONS(8786), 1, + anon_sym_DOT, + STATE(5277), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7201), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, 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(8480), 1, + anon_sym_PIPE, + [151885] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8136), 1, + anon_sym_EQ, + ACTIONS(8138), 1, sym__newline, - STATE(5830), 1, + STATE(6585), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132537] = 7, - ACTIONS(4504), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [151909] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8482), 1, + ACTIONS(8789), 1, anon_sym_EQ, - ACTIONS(8484), 1, + ACTIONS(8791), 1, sym__newline, - STATE(5831), 1, + STATE(6261), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132561] = 5, - ACTIONS(7539), 1, + [151933] = 8, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7547), 1, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7549), 1, + ACTIONS(8375), 1, anon_sym_or, + ACTIONS(8793), 1, + anon_sym_COMMA, + ACTIONS(8795), 1, + anon_sym_COLON, + STATE(6421), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8486), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - 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, + [151959] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8797), 1, + anon_sym_EQ, + ACTIONS(8799), 1, + sym__newline, + STATE(6588), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4988), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [132603] = 8, - ACTIONS(7469), 1, + STATE(5316), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [151983] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8499), 1, + ACTIONS(8140), 1, + anon_sym_EQ, + ACTIONS(8142), 1, sym__newline, - STATE(5840), 1, + STATE(6589), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132629] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152007] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8501), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8751), 1, sym__newline, - STATE(5841), 1, + STATE(6624), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132655] = 8, - ACTIONS(7469), 1, + [152033] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8503), 1, + ACTIONS(8801), 1, + anon_sym_EQ, + ACTIONS(8803), 1, sym__newline, - STATE(5842), 1, + STATE(6255), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132681] = 8, - ACTIONS(7469), 1, + STATE(5306), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152057] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8505), 1, + ACTIONS(8152), 1, + anon_sym_EQ, + ACTIONS(8154), 1, sym__newline, - STATE(5843), 1, + STATE(6275), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132707] = 7, - ACTIONS(4504), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152081] = 4, + ACTIONS(1915), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2983), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8367), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [152099] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7796), 1, + ACTIONS(8805), 1, anon_sym_EQ, - ACTIONS(7798), 1, + ACTIONS(8807), 1, sym__newline, - STATE(6206), 1, + STATE(6602), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132731] = 8, - ACTIONS(7469), 1, + [152123] = 8, + ACTIONS(8111), 1, + anon_sym_RBRACE, + ACTIONS(8809), 1, anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8817), 1, anon_sym_or, - ACTIONS(8507), 1, - sym__newline, - STATE(5846), 1, - aux_sym_cvar_decl_repeat2, + STATE(6621), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132757] = 5, - ACTIONS(7332), 1, - anon_sym_as, - ACTIONS(7344), 1, + [152149] = 8, + ACTIONS(8111), 1, + anon_sym_RBRACK, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7346), 1, + ACTIONS(8150), 1, anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8819), 1, + anon_sym_COMMA, + STATE(6545), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8486), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [132777] = 5, - ACTIONS(7502), 1, + [152175] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7510), 1, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7512), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8821), 1, + sym__newline, + STATE(6487), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8486), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [132797] = 6, - ACTIONS(8497), 1, - anon_sym_RPAREN, - ACTIONS(8509), 1, + [152201] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8512), 1, - anon_sym_async, - ACTIONS(8515), 1, - anon_sym_for, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8823), 1, + sym__newline, + STATE(6489), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4997), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [132819] = 8, - ACTIONS(7695), 1, + [152227] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(7884), 1, - sym__newline, - ACTIONS(8518), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5881), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8825), 1, + sym__newline, + STATE(6492), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132845] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [152253] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(7892), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8827), 1, sym__newline, - STATE(5883), 1, + STATE(6493), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, - STATE(5060), 1, - sym_for_in_clause, - STATE(5858), 1, - aux_sym_dictionary_repeat1, - STATE(6921), 1, - sym__comprehension_clauses, + [152279] = 5, + ACTIONS(7678), 1, + anon_sym_as, + ACTIONS(7686), 1, + anon_sym_and, + ACTIONS(7688), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [132897] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, - anon_sym_COMMA, + ACTIONS(8829), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [152299] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, ACTIONS(7886), 1, - anon_sym_EQ, + anon_sym_and, ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8831), 1, sym__newline, - STATE(5886), 1, + STATE(6500), 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, - [132921] = 7, - ACTIONS(4504), 1, + [152325] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8524), 1, + ACTIONS(8833), 1, anon_sym_EQ, - ACTIONS(8526), 1, + ACTIONS(8835), 1, sym__newline, - STATE(5887), 1, + STATE(6508), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5018), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [132945] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [152349] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7890), 1, - anon_sym_EQ, - ACTIONS(7892), 1, + ACTIONS(8837), 1, sym__newline, - STATE(5888), 1, + STATE(6634), 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, - [132969] = 6, - ACTIONS(7993), 1, + [152375] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8001), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8839), 1, + sym__newline, + STATE(6046), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 3, + [152401] = 6, + ACTIONS(8843), 1, + anon_sym_EQ, + ACTIONS(8845), 1, + anon_sym_LBRACK, + STATE(5654), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8841), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_by, - [132991] = 8, - ACTIONS(7786), 1, - anon_sym_RBRACK, - ACTIONS(7826), 1, + ACTIONS(8847), 2, + anon_sym_not, + anon_sym_or, + [152423] = 8, + ACTIONS(7798), 1, + anon_sym_RPAREN, + ACTIONS(7800), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8528), 1, - anon_sym_COMMA, - STATE(5741), 1, - aux_sym_assert_statement_repeat1, + STATE(6133), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133017] = 6, - ACTIONS(8497), 1, - anon_sym_RBRACE, - ACTIONS(8530), 1, + [152449] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8533), 1, - anon_sym_async, - ACTIONS(8536), 1, - anon_sym_for, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8849), 1, + sym__newline, + STATE(6445), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [152475] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8851), 1, + anon_sym_EQ, + ACTIONS(8853), 1, + sym__newline, + STATE(6458), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133065] = 2, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152499] = 6, + ACTIONS(8855), 1, + anon_sym_EQ, + ACTIONS(8857), 1, + anon_sym_LBRACK, + STATE(5636), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5251), 7, - sym__newline, - anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [133079] = 4, - ACTIONS(7050), 1, + ACTIONS(8859), 2, + anon_sym_not, + anon_sym_or, + [152521] = 4, + ACTIONS(7219), 1, anon_sym_DOT, - STATE(5033), 1, + STATE(4400), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, + ACTIONS(8403), 5, + anon_sym_import, + anon_sym_cimport, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE, - [133097] = 5, - ACTIONS(8001), 1, + [152539] = 8, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8543), 1, + ACTIONS(8240), 1, anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(8861), 1, + anon_sym_RBRACK, + STATE(6619), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [152565] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(6278), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8176), 1, + anon_sym_EQ, + ACTIONS(8178), 1, + sym__newline, + STATE(6464), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133143] = 8, - ACTIONS(8202), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152589] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8546), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8863), 1, + sym__newline, + STATE(6534), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133169] = 8, - ACTIONS(7826), 1, + [152615] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8404), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8548), 1, - anon_sym_RBRACK, - STATE(5922), 1, - aux_sym_type_index_repeat1, + ACTIONS(8865), 1, + sym__newline, + STATE(6535), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133195] = 8, - ACTIONS(7826), 1, + [152641] = 5, + ACTIONS(7696), 1, anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7704), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7706), 1, anon_sym_or, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(8550), 1, - anon_sym_RBRACK, - STATE(5884), 1, - aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133221] = 8, - ACTIONS(7695), 1, + ACTIONS(8829), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [152661] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(7973), 1, - sym__newline, - ACTIONS(8552), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6044), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8867), 1, + sym__newline, + STATE(6536), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133247] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [152687] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8554), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8869), 1, sym__newline, - STATE(5937), 1, + STATE(6540), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133273] = 8, - ACTIONS(7469), 1, + [152713] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5116), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [152727] = 8, + ACTIONS(7760), 1, + anon_sym_RPAREN, + ACTIONS(7762), 1, anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8556), 1, - sym__newline, - STATE(5945), 1, - aux_sym_cvar_decl_repeat2, + STATE(6061), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133299] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [152753] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7896), 1, - anon_sym_EQ, - ACTIONS(7898), 1, + ACTIONS(8871), 1, sym__newline, - STATE(5947), 1, + STATE(6633), 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, - [133323] = 8, - ACTIONS(7786), 1, - anon_sym_RBRACE, - ACTIONS(8558), 1, - anon_sym_COMMA, - ACTIONS(8560), 1, + [152779] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8562), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8564), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(7888), 1, anon_sym_or, - STATE(6311), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8873), 1, + sym__newline, + STATE(6636), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133349] = 7, - ACTIONS(4504), 1, + [152805] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8568), 1, + ACTIONS(8205), 1, anon_sym_EQ, - ACTIONS(8570), 1, + ACTIONS(8207), 1, sym__newline, - STATE(5953), 1, + STATE(6574), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5047), 2, + STATE(5578), 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(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, + [152829] = 4, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4603), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133399] = 8, - ACTIONS(8576), 1, - sym_identifier, - ACTIONS(8578), 1, + ACTIONS(8403), 5, anon_sym_LPAREN, - 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_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [152847] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8554), 1, - sym__newline, - ACTIONS(8582), 1, + ACTIONS(8875), 1, anon_sym_EQ, - STATE(5954), 1, + ACTIONS(8877), 1, + sym__newline, + STATE(6031), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5346), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [133449] = 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(7953), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [133471] = 8, - ACTIONS(7634), 1, - anon_sym_RPAREN, - ACTIONS(7636), 1, + [152871] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(5874), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8871), 1, + sym__newline, + ACTIONS(8879), 1, + anon_sym_EQ, + STATE(6060), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133497] = 7, - ACTIONS(4504), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [152895] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8584), 1, + ACTIONS(8881), 1, anon_sym_EQ, - ACTIONS(8586), 1, + ACTIONS(8883), 1, sym__newline, - STATE(5955), 1, + STATE(6069), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5049), 2, + STATE(5347), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [133521] = 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(8588), 1, - anon_sym_RBRACK, - STATE(5917), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [133547] = 7, - ACTIONS(4504), 1, + [152919] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8556), 1, + ACTIONS(8873), 1, sym__newline, - ACTIONS(8590), 1, + ACTIONS(8885), 1, anon_sym_EQ, - STATE(5957), 1, + STATE(6259), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [133571] = 4, - ACTIONS(8001), 1, + [152943] = 8, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5915), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_by, - [133589] = 3, - ACTIONS(8001), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5608), 6, - anon_sym_COMMA, + ACTIONS(8240), 1, anon_sym_as, + ACTIONS(8242), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_by, - anon_sym_or, - [133605] = 8, - ACTIONS(7338), 1, - anon_sym_async, - ACTIONS(7340), 1, - anon_sym_for, - ACTIONS(8592), 1, - anon_sym_COMMA, - 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, - [133631] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5174), 7, - sym__newline, - anon_sym_SEMI, + ACTIONS(8745), 1, 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(8887), 1, + anon_sym_RBRACK, + STATE(6099), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [152969] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8596), 1, - sym__newline, - STATE(6191), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [133689] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7810), 1, - anon_sym_EQ, - ACTIONS(7812), 1, + ACTIONS(8889), 1, sym__newline, - STATE(6086), 1, + STATE(6544), 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(8362), 1, - anon_sym_if, - ACTIONS(8364), 1, - anon_sym_and, - ACTIONS(8366), 1, - anon_sym_or, - ACTIONS(8598), 1, + [152995] = 8, + ACTIONS(7715), 1, anon_sym_RPAREN, - ACTIONS(8600), 1, - anon_sym_COMMA, - STATE(6027), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [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, - STATE(6418), 2, - sym_relative_import, - sym_dotted_name, - [133763] = 8, - ACTIONS(7469), 1, + ACTIONS(7717), 1, anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8606), 1, - sym__newline, - STATE(6192), 1, - aux_sym_cvar_decl_repeat2, + STATE(6611), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133789] = 8, - ACTIONS(7695), 1, + [153021] = 8, + ACTIONS(8134), 1, + anon_sym_COLON, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(7904), 1, - sym__newline, - ACTIONS(8608), 1, + ACTIONS(8891), 1, anon_sym_COMMA, - STATE(6268), 1, - aux_sym_cvar_def_repeat1, + STATE(6580), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133815] = 8, - ACTIONS(8202), 1, + [153047] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8893), 1, + sym__newline, + STATE(6438), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133841] = 4, - ACTIONS(1728), 1, - sym_string_start, + [153073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2867), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(8071), 4, - anon_sym_RPAREN, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8367), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, 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, - [133885] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153089] = 5, + ACTIONS(7591), 1, anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7603), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7605), 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, - [133911] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8829), 4, anon_sym_if, - ACTIONS(7699), 1, - anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - ACTIONS(8618), 1, - sym__newline, - STATE(6195), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [133937] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [153109] = 8, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8620), 1, - sym__newline, - STATE(6015), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8897), 1, + anon_sym_RPAREN, + ACTIONS(8899), 1, + anon_sym_COMMA, + STATE(6166), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133963] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153135] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8622), 1, + ACTIONS(8236), 1, sym__newline, - STATE(6018), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8901), 1, + anon_sym_COMMA, + STATE(6271), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [133989] = 7, - ACTIONS(4504), 1, + [153161] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8624), 1, + ACTIONS(8144), 1, anon_sym_EQ, - ACTIONS(8626), 1, + ACTIONS(8146), 1, sym__newline, - STATE(6022), 1, + STATE(6147), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 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, - ACTIONS(8364), 1, + [153185] = 7, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8150), 1, anon_sym_or, - STATE(5939), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8903), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134039] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(2793), 2, anon_sym_COMMA, - ACTIONS(8628), 1, - anon_sym_EQ, - ACTIONS(8630), 1, - sym__newline, - STATE(6026), 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, - [134063] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + anon_sym_RBRACK, + [153209] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8632), 1, - anon_sym_EQ, - ACTIONS(8634), 1, + ACTIONS(8905), 1, sym__newline, - STATE(6199), 1, + STATE(6577), 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, - [134087] = 7, - ACTIONS(4504), 1, + [153235] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8636), 1, + ACTIONS(8907), 1, anon_sym_EQ, - ACTIONS(8638), 1, + ACTIONS(8909), 1, sym__newline, - STATE(6034), 1, + STATE(6340), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5069), 2, + STATE(5363), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [134111] = 7, - ACTIONS(4504), 1, + [153259] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8640), 1, + ACTIONS(8029), 1, anon_sym_EQ, - ACTIONS(8642), 1, + ACTIONS(8031), 1, sym__newline, - STATE(6225), 1, + STATE(6362), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [134135] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [153283] = 8, + ACTIONS(7872), 1, + anon_sym_RPAREN, + ACTIONS(7874), 1, anon_sym_COMMA, - ACTIONS(7800), 1, - anon_sym_EQ, - ACTIONS(7802), 1, - sym__newline, - STATE(6286), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, + STATE(6190), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [134159] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [153309] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8644), 1, - anon_sym_EQ, - ACTIONS(8646), 1, + ACTIONS(8911), 1, sym__newline, - STATE(6106), 1, + STATE(6579), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(7981), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [134201] = 4, - ACTIONS(2001), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2743), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(8071), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [134219] = 8, - ACTIONS(7625), 1, - anon_sym_RPAREN, - ACTIONS(7627), 1, - anon_sym_COMMA, - ACTIONS(8360), 1, + [153335] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, - STATE(6006), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8913), 1, + sym__newline, + STATE(6442), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134245] = 6, - ACTIONS(7993), 1, + [153361] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8001), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5927), 3, + ACTIONS(7907), 1, anon_sym_COMMA, - 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(8915), 1, + sym__newline, + STATE(6118), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8376), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(8652), 2, - anon_sym_not, - anon_sym_or, - [134289] = 6, - ACTIONS(7338), 1, - anon_sym_async, - ACTIONS(7340), 1, - anon_sym_for, - ACTIONS(8470), 1, - anon_sym_RBRACE, - ACTIONS(8654), 1, + [153387] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 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(7469), 1, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8656), 1, - anon_sym_EQ, - ACTIONS(8658), 1, + ACTIONS(8917), 1, sym__newline, - STATE(6247), 1, + STATE(6581), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5125), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [134335] = 7, - ACTIONS(4504), 1, + [153413] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8606), 1, - sym__newline, - ACTIONS(8660), 1, + ACTIONS(8919), 1, anon_sym_EQ, - STATE(6249), 1, + ACTIONS(8921), 1, + sym__newline, + STATE(6503), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [134359] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [153437] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7814), 1, - anon_sym_EQ, - ACTIONS(7816), 1, + ACTIONS(8921), 1, sym__newline, - STATE(6108), 1, + STATE(6123), 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, - [134383] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153463] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8662), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8923), 1, sym__newline, - STATE(6074), 1, + STATE(6102), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134409] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153489] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8664), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8925), 1, sym__newline, - STATE(6075), 1, + STATE(6110), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134435] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153515] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8666), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8927), 1, sym__newline, - STATE(6077), 1, + STATE(6182), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134461] = 8, - ACTIONS(7469), 1, + [153541] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8668), 1, + ACTIONS(8929), 1, + anon_sym_EQ, + ACTIONS(8931), 1, sym__newline, - STATE(6078), 1, + STATE(6267), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134487] = 8, - ACTIONS(7469), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [153565] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8670), 1, + ACTIONS(8933), 1, + anon_sym_EQ, + ACTIONS(8935), 1, sym__newline, - STATE(6080), 1, + STATE(6321), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134513] = 7, - ACTIONS(4504), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [153589] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8672), 1, + ACTIONS(8937), 1, anon_sym_EQ, - ACTIONS(8674), 1, + ACTIONS(8939), 1, sym__newline, - STATE(6085), 1, + STATE(6324), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5377), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [134537] = 8, - ACTIONS(7522), 1, - anon_sym_RPAREN, - ACTIONS(7524), 1, + [153613] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(5907), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8925), 1, + sym__newline, + ACTIONS(8941), 1, + anon_sym_EQ, + STATE(6325), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134563] = 6, - ACTIONS(7993), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [153637] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8001), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(8307), 1, + sym__newline, + ACTIONS(8943), 1, + anon_sym_COMMA, + STATE(6246), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_by, - [134585] = 6, - ACTIONS(7506), 1, - anon_sym_async, - ACTIONS(7508), 1, - anon_sym_for, - ACTIONS(8470), 1, - anon_sym_RPAREN, - ACTIONS(8676), 1, + [153663] = 8, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, anon_sym_if, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(8945), 1, + anon_sym_RBRACK, + STATE(6336), 1, + aux_sym_type_index_repeat1, 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, + [153689] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8394), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8947), 1, sym__newline, - STATE(6274), 1, + STATE(6142), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134633] = 8, - ACTIONS(7469), 1, + [153715] = 4, + ACTIONS(1794), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2675), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8367), 4, anon_sym_COMMA, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [153733] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8678), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8949), 1, sym__newline, - STATE(5931), 1, + STATE(6590), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134659] = 8, - ACTIONS(8360), 1, + [153759] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 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, - [134685] = 7, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8951), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [153781] = 7, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8684), 1, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8351), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2803), 2, + ACTIONS(8953), 2, anon_sym_COMMA, anon_sym_RBRACK, - [134709] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [153805] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8438), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8955), 1, sym__newline, - STATE(6284), 1, + STATE(6025), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134735] = 6, - ACTIONS(7695), 1, + [153831] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8686), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [134757] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7806), 1, - anon_sym_EQ, - ACTIONS(7808), 1, + ACTIONS(8957), 1, sym__newline, - STATE(6301), 1, + STATE(6479), 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, - [134781] = 4, - ACTIONS(6953), 1, - anon_sym_DOT, - STATE(4967), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + [153857] = 7, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8150), 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, - [134825] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(8240), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8242), 1, anon_sym_if, - ACTIONS(7699), 1, - anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - ACTIONS(8690), 1, - sym__newline, - STATE(6095), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8959), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134851] = 8, - ACTIONS(7469), 1, + ACTIONS(2779), 2, 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(8692), 1, + anon_sym_RBRACK, + [153881] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8961), 1, + anon_sym_EQ, + ACTIONS(8963), 1, sym__newline, - STATE(6096), 1, + STATE(6501), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134877] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + STATE(5302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [153905] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8694), 1, + ACTIONS(8277), 1, sym__newline, - STATE(6098), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8965), 1, + anon_sym_COMMA, + STATE(6149), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134903] = 8, - ACTIONS(8202), 1, + [153931] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8696), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8698), 1, - anon_sym_COLON, - STATE(6178), 1, - aux_sym_match_statement_repeat1, + ACTIONS(8293), 1, + sym__newline, + STATE(6152), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134929] = 8, - ACTIONS(7469), 1, + [153957] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8700), 1, + ACTIONS(8287), 1, + anon_sym_EQ, + ACTIONS(8289), 1, sym__newline, - STATE(5930), 1, + STATE(6158), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134955] = 8, - ACTIONS(7469), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [153981] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8702), 1, + ACTIONS(8967), 1, + anon_sym_EQ, + ACTIONS(8969), 1, sym__newline, - STATE(5932), 1, + STATE(6172), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [134981] = 8, - ACTIONS(7469), 1, + STATE(5433), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154005] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8704), 1, + ACTIONS(8291), 1, + anon_sym_EQ, + ACTIONS(8293), 1, sym__newline, - STATE(5946), 1, + STATE(6173), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135007] = 8, - ACTIONS(7826), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154029] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8404), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8706), 1, - anon_sym_RBRACK, - STATE(5857), 1, - aux_sym_type_index_repeat1, + ACTIONS(8971), 1, + sym__newline, + STATE(6471), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135033] = 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, + [154055] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8708), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8973), 1, + anon_sym_EQ, + ACTIONS(8975), 1, + sym__newline, + STATE(6262), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135059] = 7, - ACTIONS(4504), 1, + STATE(5408), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154079] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8710), 1, + ACTIONS(8977), 1, anon_sym_EQ, - ACTIONS(8712), 1, + ACTIONS(8979), 1, sym__newline, - STATE(5952), 1, + STATE(6478), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135083] = 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, + [154103] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8714), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8981), 1, + anon_sym_EQ, + ACTIONS(8983), 1, + sym__newline, + STATE(6504), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135109] = 7, - ACTIONS(4504), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154127] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8716), 1, + ACTIONS(8985), 1, anon_sym_EQ, - ACTIONS(8718), 1, + ACTIONS(8987), 1, sym__newline, - STATE(5972), 1, + STATE(6521), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5287), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135133] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154151] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8720), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8989), 1, sym__newline, - STATE(6105), 1, + STATE(6568), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135159] = 8, - ACTIONS(8202), 1, + [154177] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(8124), 1, + sym__newline, + ACTIONS(8991), 1, anon_sym_COMMA, - ACTIONS(8722), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + STATE(6443), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135185] = 8, - ACTIONS(8202), 1, + [154203] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(7907), 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, - [135211] = 4, - ACTIONS(1842), 1, - sym_string_start, + ACTIONS(8993), 1, + sym__newline, + STATE(6586), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2592), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(8071), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [135229] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154229] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8726), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8995), 1, sym__newline, - STATE(5950), 1, + STATE(6603), 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, + [154255] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7909), 1, - anon_sym_EQ, - ACTIONS(7911), 1, + ACTIONS(8997), 1, sym__newline, - STATE(5966), 1, + STATE(6608), 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, - [135279] = 8, - ACTIONS(7338), 1, - anon_sym_async, - ACTIONS(7340), 1, - anon_sym_for, - ACTIONS(8728), 1, - anon_sym_COMMA, - ACTIONS(8730), 1, - anon_sym_RBRACE, - STATE(5060), 1, - sym_for_in_clause, - STATE(6186), 1, - aux_sym_dictionary_repeat1, - STATE(6725), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [135305] = 6, - ACTIONS(7506), 1, - anon_sym_async, - ACTIONS(7508), 1, - anon_sym_for, - ACTIONS(8676), 1, - anon_sym_if, - ACTIONS(8732), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4997), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [135327] = 6, - ACTIONS(7695), 1, + [154281] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8999), 1, + sym__newline, + STATE(6617), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8734), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [135349] = 7, - ACTIONS(4504), 1, + [154307] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8736), 1, + ACTIONS(9001), 1, anon_sym_EQ, - ACTIONS(8738), 1, + ACTIONS(9003), 1, sym__newline, - STATE(5983), 1, + STATE(6026), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5050), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135373] = 7, - ACTIONS(4504), 1, + [154331] = 8, + ACTIONS(7868), 1, + anon_sym_RPAREN, + ACTIONS(7870), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, + STATE(6090), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [154357] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8678), 1, + ACTIONS(8913), 1, sym__newline, - ACTIONS(8740), 1, + ACTIONS(9005), 1, anon_sym_EQ, - STATE(5985), 1, + STATE(6526), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135397] = 2, + [154381] = 4, + ACTIONS(8462), 1, + anon_sym_DOT, + STATE(5396), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 7, - anon_sym_DOT, + ACTIONS(8199), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [135411] = 6, - ACTIONS(7993), 1, + anon_sym_RBRACE, + [154399] = 8, + ACTIONS(8234), 1, + anon_sym_COLON, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7995), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8001), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8003), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7953), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_by, - [135433] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(8891), 1, anon_sym_COMMA, - ACTIONS(8742), 1, - anon_sym_EQ, - ACTIONS(8744), 1, - sym__newline, - STATE(5994), 1, - aux_sym_cvar_decl_repeat2, + STATE(6580), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5052), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [135457] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154425] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8746), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, sym__newline, - STATE(5810), 1, + STATE(6084), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135483] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154451] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8748), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9009), 1, sym__newline, - STATE(5844), 1, + STATE(6089), 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, + [154477] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8750), 1, - anon_sym_EQ, - ACTIONS(8752), 1, + ACTIONS(9011), 1, sym__newline, - STATE(5988), 1, + STATE(6091), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5143), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [135533] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [154503] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8726), 1, + ACTIONS(9013), 1, sym__newline, - ACTIONS(8754), 1, - anon_sym_EQ, - STATE(6003), 1, + STATE(6107), 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, + [154529] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8702), 1, - sym__newline, - ACTIONS(8756), 1, + ACTIONS(7919), 1, anon_sym_EQ, - STATE(5992), 1, + ACTIONS(7921), 1, + sym__newline, + STATE(6265), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135581] = 8, - ACTIONS(8202), 1, + [154553] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8758), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8760), 1, - anon_sym_COLON, - STATE(6159), 1, - aux_sym_match_statement_repeat1, + ACTIONS(9015), 1, + sym__newline, + STATE(6028), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135607] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154579] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8762), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9017), 1, sym__newline, - STATE(5731), 1, + STATE(6130), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135633] = 6, - ACTIONS(7543), 1, - anon_sym_async, - ACTIONS(7545), 1, - anon_sym_for, - ACTIONS(8468), 1, - anon_sym_if, - ACTIONS(8732), 1, - anon_sym_RBRACK, + [154605] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9019), 1, + anon_sym_EQ, + ACTIONS(9021), 1, + sym__newline, + STATE(6115), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4988), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [135655] = 8, - ACTIONS(7469), 1, + STATE(5390), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154629] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(8764), 1, + ACTIONS(9023), 1, + anon_sym_EQ, + ACTIONS(9025), 1, sym__newline, - STATE(5854), 1, + STATE(6187), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135681] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154653] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8766), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9027), 1, sym__newline, - STATE(5866), 1, + STATE(6029), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135707] = 8, - ACTIONS(7786), 1, - anon_sym_RPAREN, - ACTIONS(8360), 1, + [154679] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8768), 1, + ACTIONS(8226), 1, + sym__newline, + ACTIONS(9029), 1, anon_sym_COMMA, - STATE(5948), 1, - aux_sym_assert_statement_repeat1, + STATE(6302), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135733] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [154705] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8770), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9031), 1, sym__newline, - STATE(5738), 1, + STATE(6350), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135759] = 8, - ACTIONS(7659), 1, - anon_sym_RPAREN, - ACTIONS(7661), 1, - anon_sym_COMMA, - ACTIONS(8360), 1, + [154731] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, - STATE(5762), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [135785] = 8, - ACTIONS(7469), 1, + ACTIONS(7907), 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(8772), 1, + ACTIONS(9033), 1, sym__newline, - STATE(5871), 1, + STATE(6352), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135811] = 8, - ACTIONS(7338), 1, - anon_sym_async, - ACTIONS(7340), 1, - anon_sym_for, - ACTIONS(8774), 1, + [154757] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8776), 1, - anon_sym_RBRACE, - STATE(5060), 1, - sym_for_in_clause, - STATE(6203), 1, - aux_sym_dictionary_repeat1, - STATE(6761), 1, - sym__comprehension_clauses, + ACTIONS(8222), 1, + anon_sym_EQ, + ACTIONS(8224), 1, + sym__newline, + STATE(6359), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, - ACTIONS(8778), 1, - anon_sym_COMMA, - STATE(6304), 1, - aux_sym_cvar_def_repeat1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [154781] = 4, + ACTIONS(8462), 1, + anon_sym_DOT, + STATE(5263), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [135863] = 7, - ACTIONS(4504), 1, + ACTIONS(8403), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [154799] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8780), 1, + ACTIONS(9035), 1, anon_sym_EQ, - ACTIONS(8782), 1, + ACTIONS(9037), 1, sym__newline, - STATE(5786), 1, + STATE(6363), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5035), 2, + STATE(5268), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135887] = 7, - ACTIONS(4504), 1, + [154823] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8784), 1, + ACTIONS(9039), 1, anon_sym_EQ, - ACTIONS(8786), 1, + ACTIONS(9041), 1, sym__newline, - STATE(5892), 1, + STATE(6268), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5331), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135911] = 7, - ACTIONS(4504), 1, + [154847] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7514), 1, + ACTIONS(8035), 1, anon_sym_EQ, - ACTIONS(7516), 1, + ACTIONS(8037), 1, sym__newline, - STATE(5974), 1, + STATE(6335), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135935] = 8, - ACTIONS(7338), 1, - anon_sym_async, - ACTIONS(7340), 1, - anon_sym_for, - ACTIONS(8788), 1, - anon_sym_COMMA, - 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, - [135961] = 7, - ACTIONS(4504), 1, + [154871] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8792), 1, - anon_sym_EQ, - ACTIONS(8794), 1, + ACTIONS(9031), 1, sym__newline, - STATE(6258), 1, + ACTIONS(9043), 1, + anon_sym_EQ, + STATE(6364), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4993), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [135985] = 7, - ACTIONS(4504), 1, + [154895] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7573), 1, + ACTIONS(9045), 1, anon_sym_EQ, - ACTIONS(7575), 1, + ACTIONS(9047), 1, sym__newline, - STATE(6288), 1, + STATE(6369), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5269), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [136009] = 7, - ACTIONS(7826), 1, + [154919] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8053), 1, - anon_sym_COLON, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8271), 1, + sym__newline, + STATE(6303), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [154945] = 7, + ACTIONS(5881), 1, + sym_identifier, + ACTIONS(9049), 1, + anon_sym_DOT, + ACTIONS(9051), 1, + anon_sym___future__, + STATE(5642), 1, + aux_sym_import_prefix_repeat1, + STATE(5886), 1, + sym_import_prefix, 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, + STATE(6794), 2, + sym_relative_import, + sym_dotted_name, + [154969] = 8, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8798), 1, + ACTIONS(9053), 1, + anon_sym_RPAREN, + ACTIONS(9055), 1, + anon_sym_COMMA, + STATE(6233), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [154995] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9033), 1, sym__newline, - STATE(5749), 1, + ACTIONS(9057), 1, + anon_sym_EQ, + STATE(6372), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136081] = 8, - ACTIONS(8202), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155019] = 4, + ACTIONS(8697), 1, + anon_sym_DOT, + STATE(5277), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8403), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [155037] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8464), 1, + ACTIONS(8267), 1, + sym__newline, + ACTIONS(9059), 1, anon_sym_COMMA, - ACTIONS(8800), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_assert_statement_repeat1, + STATE(6512), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155063] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8317), 1, + anon_sym_EQ, + ACTIONS(8319), 1, + sym__newline, + STATE(6305), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155087] = 4, + ACTIONS(7219), 1, + anon_sym_DOT, + STATE(5304), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136107] = 7, - ACTIONS(7826), 1, + ACTIONS(8199), 5, + anon_sym_import, + anon_sym_cimport, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PIPE, + [155105] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8802), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2825), 2, + ACTIONS(9061), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [136131] = 8, - ACTIONS(7469), 1, + [155127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9063), 5, anon_sym_COMMA, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_COLON, + anon_sym_PIPE, + [155143] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8804), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9067), 1, sym__newline, - STATE(5755), 1, + STATE(6140), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136157] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [155169] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8806), 1, + ACTIONS(8189), 1, sym__newline, - STATE(6118), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9069), 1, + anon_sym_COMMA, + STATE(6038), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136183] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + [155195] = 8, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(8808), 1, - sym__newline, - STATE(6127), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(9071), 1, + anon_sym_RBRACK, + STATE(6289), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155221] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136209] = 8, - ACTIONS(7469), 1, + ACTIONS(7201), 7, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_COLON, + anon_sym_PIPE, + [155235] = 8, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8810), 1, - sym__newline, - STATE(6168), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9075), 1, + anon_sym_COMMA, + STATE(6211), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136235] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [155261] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8812), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9077), 1, sym__newline, - STATE(6173), 1, + STATE(6629), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136261] = 8, - ACTIONS(8360), 1, + [155287] = 8, + ACTIONS(7825), 1, + anon_sym_RPAREN, + ACTIONS(7827), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(8814), 1, - anon_sym_RPAREN, - ACTIONS(8816), 1, - anon_sym_COMMA, - STATE(5978), 1, + STATE(6154), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136287] = 8, - ACTIONS(7695), 1, + [155313] = 8, + ACTIONS(7807), 1, + anon_sym_RPAREN, + ACTIONS(7809), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(7925), 1, - sym__newline, - ACTIONS(8818), 1, - anon_sym_COMMA, - STATE(6310), 1, - aux_sym_cvar_def_repeat1, + STATE(6043), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136313] = 8, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, + [155339] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(8820), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(8154), 1, sym__newline, - STATE(6207), 1, + STATE(6119), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136339] = 7, - ACTIONS(4504), 1, + [155365] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8822), 1, + ACTIONS(9079), 1, anon_sym_EQ, - ACTIONS(8824), 1, + ACTIONS(9081), 1, sym__newline, - STATE(6222), 1, + STATE(6122), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5578), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [136363] = 6, - ACTIONS(8202), 1, + [155389] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 3, + ACTIONS(7878), 3, anon_sym_DOT, anon_sym_COLON, anon_sym_PIPE, - [136385] = 4, - ACTIONS(8276), 1, - anon_sym_DOT, - STATE(4954), 1, - aux_sym_class_definition_repeat2, + [155411] = 4, + ACTIONS(1680), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7822), 5, - anon_sym_LPAREN, + STATE(3115), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(8367), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [136403] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [155429] = 8, + ACTIONS(7813), 1, + anon_sym_RPAREN, + ACTIONS(7815), 1, anon_sym_COMMA, - ACTIONS(8826), 1, - anon_sym_EQ, - ACTIONS(8828), 1, - sym__newline, - STATE(5715), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, + STATE(6480), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4943), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [136427] = 7, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(7469), 1, + [155455] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7569), 1, - anon_sym_EQ, - ACTIONS(7571), 1, + ACTIONS(9083), 1, sym__newline, - STATE(5716), 1, + STATE(6035), 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, - [136451] = 7, - ACTIONS(4504), 1, + [155481] = 8, + ACTIONS(9085), 1, + sym_identifier, + ACTIONS(9087), 1, + anon_sym_LPAREN, + ACTIONS(9089), 1, + anon_sym_STAR, + STATE(5810), 1, + sym_dotted_name, + STATE(5922), 1, + sym_aliased_import, + STATE(6653), 1, + sym__import_list, + STATE(6659), 1, + sym_wildcard_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [155507] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8830), 1, + ACTIONS(9091), 1, anon_sym_EQ, - ACTIONS(8832), 1, + ACTIONS(9093), 1, sym__newline, - STATE(6313), 1, + STATE(6384), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5091), 2, + STATE(5279), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [136475] = 8, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, - anon_sym_if, - ACTIONS(7699), 1, + [155531] = 7, + ACTIONS(2648), 1, + anon_sym_COLON, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(7975), 1, - sym__newline, - ACTIONS(8834), 1, - anon_sym_COMMA, - 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, + ACTIONS(8240), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8242), 1, anon_sym_if, - ACTIONS(7699), 1, - anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - ACTIONS(7802), 1, - sym__newline, - STATE(6084), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136527] = 7, - ACTIONS(4504), 1, + ACTIONS(2646), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [155555] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(7469), 1, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8620), 1, - sym__newline, - ACTIONS(8836), 1, + ACTIONS(9095), 1, anon_sym_EQ, - STATE(6035), 1, + ACTIONS(9097), 1, + sym__newline, + STATE(6308), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5196), 2, + STATE(5395), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [136551] = 6, - ACTIONS(8360), 1, + [155579] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9081), 1, + sym__newline, + STATE(6601), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [136572] = 6, - ACTIONS(8560), 1, + [155605] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8562), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8564), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8838), 2, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [136593] = 2, + ACTIONS(9099), 1, + sym__newline, + STATE(6304), 1, + aux_sym_cvar_decl_repeat2, 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, + [155631] = 8, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5156), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(9101), 1, + sym__newline, + STATE(6306), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8844), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [136623] = 4, - ACTIONS(8846), 1, + [155657] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5156), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(8279), 1, + anon_sym_EQ, + ACTIONS(8281), 1, + sym__newline, + STATE(6310), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [136640] = 4, - ACTIONS(8851), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155681] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5233), 1, - aux_sym__patterns_repeat1, + ACTIONS(9103), 1, + anon_sym_EQ, + ACTIONS(9105), 1, + sym__newline, + STATE(6315), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [136657] = 7, - ACTIONS(8853), 1, - anon_sym_DOT, - ACTIONS(8855), 1, + STATE(5368), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155705] = 7, + ACTIONS(4416), 1, + anon_sym_LBRACK, + ACTIONS(7907), 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(9099), 1, + sym__newline, + ACTIONS(9107), 1, + anon_sym_EQ, + STATE(6316), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136680] = 7, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155729] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - 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(7907), 1, + anon_sym_COMMA, + ACTIONS(9109), 1, + anon_sym_EQ, + ACTIONS(9111), 1, + sym__newline, + STATE(6319), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136703] = 7, - ACTIONS(8009), 1, + STATE(5369), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155753] = 7, + ACTIONS(4416), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, - anon_sym_LPAREN, - ACTIONS(8867), 1, - anon_sym_COLON, - ACTIONS(8869), 1, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9101), 1, sym__newline, - STATE(3438), 1, - sym_external_definition, - STATE(6189), 1, - sym_argument_list, + ACTIONS(9113), 1, + anon_sym_EQ, + STATE(6320), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [155777] = 8, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8562), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8564), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(7888), 1, anon_sym_or, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(9115), 1, + sym__newline, + STATE(6195), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8114), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [136764] = 4, - ACTIONS(8877), 1, + [155803] = 4, + ACTIONS(9119), 1, anon_sym_COMMA, - STATE(5241), 1, + STATE(5528), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8875), 4, + ACTIONS(9117), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [136781] = 4, - ACTIONS(8881), 1, - anon_sym_COMMA, - STATE(5242), 1, - aux_sym_for_in_clause_repeat1, + [155820] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8879), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [136798] = 7, - ACTIONS(8284), 1, - anon_sym_LBRACK, - ACTIONS(8865), 1, - anon_sym_LPAREN, - ACTIONS(8883), 1, - anon_sym_COLON, - ACTIONS(8885), 1, + ACTIONS(9121), 2, sym__newline, - STATE(1103), 1, - sym_external_definition, - STATE(6144), 1, - sym_argument_list, + anon_sym_COMMA, + [155841] = 4, + ACTIONS(9125), 1, + anon_sym_PIPE, + STATE(5470), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136821] = 7, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LBRACK, - 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(9123), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [155858] = 4, + ACTIONS(9127), 1, + anon_sym_COMMA, + STATE(5523), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136844] = 6, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(9129), 4, anon_sym_if, - ACTIONS(7830), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [155875] = 6, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 2, + ACTIONS(2779), 2, anon_sym_COMMA, anon_sym_RBRACK, - [136865] = 7, - ACTIONS(8853), 1, - anon_sym_DOT, - ACTIONS(8857), 1, - anon_sym_COLON, - ACTIONS(8861), 1, + [155896] = 4, + ACTIONS(9125), 1, anon_sym_PIPE, - ACTIONS(8889), 1, - anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RBRACK, - STATE(5763), 1, - aux_sym_type_parameter_repeat1, + STATE(5441), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136888] = 6, - ACTIONS(8360), 1, + ACTIONS(9131), 4, + anon_sym_COMMA, 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(8893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [136909] = 7, - ACTIONS(8009), 1, + anon_sym_COLON, + [155913] = 7, + ACTIONS(8329), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(8895), 1, + ACTIONS(9135), 1, anon_sym_COLON, - ACTIONS(8897), 1, + ACTIONS(9137), 1, sym__newline, - STATE(3431), 1, + STATE(3619), 1, sym_external_definition, - STATE(6190), 1, + STATE(6468), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [136932] = 4, - ACTIONS(4487), 1, - anon_sym_DOT, - STATE(5202), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7822), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + [155936] = 6, + ACTIONS(8737), 1, anon_sym_as, - [136949] = 2, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6049), 2, anon_sym_RPAREN, anon_sym_COMMA, + [155957] = 6, + ACTIONS(8737), 1, anon_sym_as, - anon_sym_PIPE, - [136962] = 6, - ACTIONS(7695), 1, - anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8120), 2, - sym__newline, - anon_sym_SEMI, - [136983] = 6, - ACTIONS(8202), 1, + ACTIONS(8323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [155978] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8899), 2, - anon_sym_COMMA, - 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(3451), 1, - sym_external_definition, - STATE(6194), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [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, + ACTIONS(8323), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - 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, + anon_sym_RBRACE, + [155999] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(8919), 1, + ACTIONS(9141), 1, anon_sym_BSLASH, - ACTIONS(8917), 5, + ACTIONS(9139), 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, + [156016] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137118] = 7, - ACTIONS(8009), 1, - anon_sym_LBRACK, - ACTIONS(8865), 1, - anon_sym_LPAREN, - ACTIONS(8923), 1, - anon_sym_COLON, - ACTIONS(8925), 1, + ACTIONS(9143), 2, sym__newline, - 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, - STATE(5164), 1, - aux_sym_for_in_clause_repeat1, + [156037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8927), 4, - anon_sym_RPAREN, + ACTIONS(9145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8367), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [156052] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [137158] = 2, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(9147), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [137171] = 7, - ACTIONS(8097), 1, + [156073] = 7, + ACTIONS(8448), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(8931), 1, + ACTIONS(9149), 1, anon_sym_COLON, - ACTIONS(8933), 1, + ACTIONS(9151), 1, sym__newline, - STATE(3764), 1, + STATE(1138), 1, sym_external_definition, - STATE(6164), 1, + STATE(6143), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137194] = 4, - ACTIONS(8206), 1, + [156096] = 4, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 4, + ACTIONS(6007), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [137211] = 4, - ACTIONS(3), 1, + [156113] = 3, + STATE(5441), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, 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, + ACTIONS(9153), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7832), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [156128] = 4, + ACTIONS(9155), 1, + anon_sym_COMMA, + STATE(5456), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8939), 2, + ACTIONS(8309), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [156145] = 4, + ACTIONS(9158), 1, 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, + STATE(5457), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, 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, + ACTIONS(9161), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [156162] = 6, + ACTIONS(8811), 1, + anon_sym_as, + ACTIONS(8813), 1, + anon_sym_if, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8817), 1, anon_sym_or, - ACTIONS(8949), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 3, - anon_sym_RPAREN, + ACTIONS(8662), 2, anon_sym_COMMA, - anon_sym_if, - [137302] = 4, - ACTIONS(8364), 1, - anon_sym_and, - ACTIONS(8366), 1, - anon_sym_or, + anon_sym_RBRACE, + [156183] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9163), 1, + sym_identifier, + STATE(3883), 1, + sym_c_function_definition, + STATE(5180), 1, + sym_c_parameters, + STATE(6695), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 4, - anon_sym_RPAREN, + [156206] = 4, + ACTIONS(9165), 1, anon_sym_COMMA, + STATE(5572), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2581), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [156223] = 6, + ACTIONS(8737), 1, anon_sym_as, + ACTIONS(8739), 1, anon_sym_if, - [137319] = 3, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 5, + ACTIONS(9167), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_or, - [137334] = 2, + [156244] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8952), 6, + ACTIONS(9169), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, 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, + [156257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 2, - anon_sym_RPAREN, + ACTIONS(9171), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9063), 4, anon_sym_COMMA, - [137368] = 3, - ACTIONS(8954), 1, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [156272] = 4, + ACTIONS(9175), 1, + anon_sym_COMMA, + STATE(5528), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8071), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(9173), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [137383] = 4, - ACTIONS(8958), 1, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_for, + [156289] = 7, + ACTIONS(4844), 1, + anon_sym_RBRACK, + ACTIONS(4911), 1, + sym_c_integer_signedness, + ACTIONS(4913), 1, + aux_sym_c_integer_type_token1, + ACTIONS(9177), 1, + aux_sym_integer_token1, + STATE(3132), 1, + sym_c_integer_type, + STATE(4991), 1, + aux_sym_integer_repeat1, 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, + [156312] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 2, + ACTIONS(9179), 2, anon_sym_RPAREN, anon_sym_COMMA, - [137421] = 7, - ACTIONS(8961), 1, + [156333] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9179), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [156354] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7201), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(8963), 1, anon_sym_as, - ACTIONS(8965), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [156367] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 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, - [137444] = 4, - ACTIONS(8907), 1, + ACTIONS(9181), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [156388] = 4, + ACTIONS(9183), 1, anon_sym_PIPE, - STATE(5176), 1, + STATE(5470), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 4, + ACTIONS(9153), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [137461] = 6, - ACTIONS(7826), 1, + [156405] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8971), 2, + ACTIONS(8323), 2, + sym__newline, + anon_sym_SEMI, + [156426] = 4, + ACTIONS(9186), 1, + anon_sym_COMMA, + STATE(5472), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7090), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [156443] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9189), 1, + sym_identifier, + STATE(3893), 1, + sym_c_function_definition, + STATE(5180), 1, + sym_c_parameters, + STATE(6695), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156466] = 7, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9193), 1, anon_sym_COMMA, + ACTIONS(9195), 1, + anon_sym_COLON, + ACTIONS(9197), 1, anon_sym_RBRACK, - [137482] = 7, - ACTIONS(7834), 1, + ACTIONS(9199), 1, + anon_sym_PIPE, + STATE(6491), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156489] = 7, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8973), 1, + ACTIONS(9201), 1, sym_identifier, - STATE(3779), 1, + STATE(1891), 1, sym_c_function_definition, - STATE(4905), 1, + STATE(5122), 1, sym_c_parameters, - STATE(6389), 1, + STATE(6756), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137505] = 4, - ACTIONS(4487), 1, + [156512] = 6, + ACTIONS(9205), 1, anon_sym_DOT, - STATE(4284), 1, - aux_sym_class_definition_repeat2, + ACTIONS(9207), 1, + anon_sym_COLON, + ACTIONS(9209), 1, + anon_sym_EQ, + ACTIONS(9211), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7981), 4, + ACTIONS(9203), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + [156533] = 6, + ACTIONS(8737), 1, anon_sym_as, - [137522] = 6, - ACTIONS(8360), 1, - anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8975), 2, + ACTIONS(9213), 2, anon_sym_RPAREN, anon_sym_COMMA, - [137543] = 2, + [156554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(9215), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9063), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [137556] = 2, + anon_sym_RBRACE, + [156569] = 4, + ACTIONS(9217), 1, + anon_sym_COMMA, + STATE(5479), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8977), 6, - sym__newline, - 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, + ACTIONS(8309), 4, anon_sym_COLON, - ACTIONS(8985), 1, anon_sym_EQ, - ACTIONS(8987), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8979), 2, - sym__newline, - anon_sym_SEMI, - [137590] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_RBRACE, + sym_type_conversion, + [156586] = 7, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(8989), 1, + ACTIONS(9220), 1, anon_sym_COMMA, - ACTIONS(8991), 1, + ACTIONS(9222), 1, anon_sym_as, - ACTIONS(8993), 1, + ACTIONS(9224), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137626] = 7, - ACTIONS(8097), 1, + [156609] = 7, + ACTIONS(8559), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(8995), 1, + ACTIONS(9226), 1, anon_sym_COLON, - ACTIONS(8997), 1, + ACTIONS(9228), 1, sym__newline, - STATE(3793), 1, + STATE(1113), 1, sym_external_definition, - STATE(6166), 1, + STATE(6379), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137649] = 6, - ACTIONS(8360), 1, + [156632] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8999), 2, + ACTIONS(8309), 2, anon_sym_RPAREN, anon_sym_COMMA, - [137670] = 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(9001), 2, - sym__newline, - anon_sym_COMMA, - [137691] = 7, - ACTIONS(8284), 1, + [156653] = 7, + ACTIONS(8448), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9003), 1, + ACTIONS(9230), 1, anon_sym_COLON, - ACTIONS(9005), 1, + ACTIONS(9232), 1, sym__newline, - STATE(1102), 1, + STATE(1112), 1, sym_external_definition, - STATE(6142), 1, + STATE(6522), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137714] = 6, - ACTIONS(8360), 1, + [156676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9236), 1, + anon_sym_BSLASH, + ACTIONS(9234), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [156693] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 2, - anon_sym_RPAREN, + ACTIONS(9179), 2, anon_sym_COMMA, - [137735] = 6, - ACTIONS(7695), 1, + anon_sym_RBRACE, + [156714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9240), 1, + anon_sym_BSLASH, + ACTIONS(9238), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [156731] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9007), 2, - sym__newline, + ACTIONS(9242), 2, + anon_sym_COMMA, + anon_sym_COLON, + [156752] = 7, + ACTIONS(9244), 1, anon_sym_COMMA, - [137756] = 6, - ACTIONS(8202), 1, + ACTIONS(9246), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(9248), 1, anon_sym_if, - ACTIONS(8206), 1, - anon_sym_and, - ACTIONS(8208), 1, - anon_sym_or, + ACTIONS(9250), 1, + anon_sym_COLON, + STATE(5678), 1, + aux_sym_case_clause_repeat1, + STATE(7254), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 2, + [156775] = 4, + ACTIONS(9252), 1, anon_sym_COMMA, - 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, + STATE(5492), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137800] = 6, - ACTIONS(8360), 1, - anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(9173), 4, anon_sym_if, - ACTIONS(8364), 1, - anon_sym_and, - ACTIONS(8366), 1, - anon_sym_or, - ACTIONS(3), 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [156792] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(9011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [137821] = 6, - ACTIONS(8360), 1, - anon_sym_as, - ACTIONS(8362), 1, - anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9256), 1, + anon_sym_BSLASH, + ACTIONS(9254), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [156809] = 6, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8150), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7953), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [137842] = 6, - ACTIONS(8360), 1, + ACTIONS(8240), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8242), 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, + ACTIONS(9258), 2, anon_sym_COMMA, - [137863] = 4, - ACTIONS(9015), 1, + anon_sym_RBRACK, + [156830] = 4, + ACTIONS(9260), 1, anon_sym_COMMA, - STATE(5251), 1, + STATE(5492), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8927), 4, + ACTIONS(9161), 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, - ACTIONS(8865), 1, - anon_sym_LPAREN, - ACTIONS(9019), 1, + anon_sym_RBRACE, + [156847] = 7, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9195), 1, anon_sym_COLON, - ACTIONS(9021), 1, - sym__newline, - STATE(3774), 1, - sym_external_definition, - STATE(6170), 1, - sym_argument_list, + ACTIONS(9199), 1, + anon_sym_PIPE, + ACTIONS(9263), 1, + anon_sym_COMMA, + ACTIONS(9265), 1, + anon_sym_RBRACK, + STATE(6063), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [137926] = 3, + [156870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9023), 2, + ACTIONS(9267), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8071), 4, + ACTIONS(9063), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [137941] = 6, - ACTIONS(7695), 1, + [156885] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9025), 2, - sym__newline, + ACTIONS(9213), 2, anon_sym_COMMA, - [137962] = 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, + anon_sym_COLON, + [156906] = 4, + ACTIONS(9125), 1, + anon_sym_PIPE, + STATE(5441), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8939), 2, - anon_sym_RPAREN, + ACTIONS(9269), 4, anon_sym_COMMA, - [137983] = 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, + anon_sym_COLON, + [156923] = 7, + ACTIONS(8345), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9271), 1, + anon_sym_COLON, + ACTIONS(9273), 1, + sym__newline, + STATE(3909), 1, + sym_external_definition, + STATE(6447), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [138004] = 7, - ACTIONS(7987), 1, + [156946] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9275), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [156959] = 7, + ACTIONS(8448), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9027), 1, + ACTIONS(9277), 1, anon_sym_COLON, - ACTIONS(9029), 1, + ACTIONS(9279), 1, sym__newline, - STATE(1146), 1, + STATE(1125), 1, sym_external_definition, - STATE(5975), 1, + STATE(6282), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [138027] = 6, - ACTIONS(8560), 1, + [156982] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8562), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8564), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8120), 2, + ACTIONS(9281), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [138048] = 2, + [157003] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9031), 6, + ACTIONS(9283), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [138061] = 7, - ACTIONS(8097), 1, - anon_sym_LBRACK, - ACTIONS(8865), 1, - anon_sym_LPAREN, - ACTIONS(9033), 1, - anon_sym_COLON, - 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, - [138084] = 4, - ACTIONS(9037), 1, + [157016] = 4, + ACTIONS(9285), 1, anon_sym_COMMA, - STATE(5274), 1, - aux_sym_for_in_clause_repeat1, + STATE(5479), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8927), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(2581), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [138101] = 2, + sym_type_conversion, + [157033] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9039), 6, + ACTIONS(9287), 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, - STATE(5233), 1, - aux_sym__patterns_repeat1, + [157046] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 4, + ACTIONS(9289), 6, + sym__newline, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [138131] = 4, - ACTIONS(9044), 1, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [157059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9293), 1, + anon_sym_BSLASH, + ACTIONS(9291), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [157076] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9295), 1, + sym_identifier, + STATE(3703), 1, + sym_c_function_definition, + STATE(5168), 1, + sym_c_parameters, + STATE(6781), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157099] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 2, anon_sym_COMMA, - STATE(5234), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACK, + [157120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9299), 1, + anon_sym_BSLASH, + ACTIONS(9297), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [157137] = 6, + ACTIONS(9301), 1, + sym_identifier, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(9305), 1, + anon_sym_STAR, + ACTIONS(9307), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5957), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [157158] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 4, + ACTIONS(7878), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [138148] = 6, - ACTIONS(7826), 1, + anon_sym_PIPE, + [157171] = 3, + ACTIONS(9309), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7828), 1, anon_sym_if, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7832), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [157186] = 5, + ACTIONS(9205), 1, + anon_sym_DOT, + ACTIONS(9207), 1, + anon_sym_COLON, + ACTIONS(9211), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9047), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [138169] = 6, - ACTIONS(8360), 1, + ACTIONS(9311), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [157205] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9049), 2, + ACTIONS(9313), 2, + sym__newline, + anon_sym_SEMI, + [157226] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7201), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [138190] = 7, - ACTIONS(7987), 1, + anon_sym_as, + anon_sym_PIPE, + [157239] = 7, + ACTIONS(8559), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9051), 1, + ACTIONS(9315), 1, anon_sym_COLON, - ACTIONS(9053), 1, + ACTIONS(9317), 1, sym__newline, - STATE(1154), 1, + STATE(1121), 1, sym_external_definition, - STATE(6271), 1, + STATE(6383), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [138213] = 6, - ACTIONS(8360), 1, + [157262] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8120), 2, + ACTIONS(9319), 2, anon_sym_RPAREN, anon_sym_COMMA, - [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(8562), 1, - anon_sym_if, - ACTIONS(8564), 1, + [157283] = 6, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(8150), 1, anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8939), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [138278] = 4, - ACTIONS(9057), 1, + ACTIONS(9321), 2, anon_sym_COMMA, - STATE(5242), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [157304] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8844), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [138295] = 4, - ACTIONS(9059), 1, + ACTIONS(2773), 2, anon_sym_COMMA, - STATE(5242), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [157325] = 4, + ACTIONS(4399), 1, + anon_sym_DOT, + STATE(4581), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [138312] = 6, - ACTIONS(8360), 1, + ACTIONS(8403), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8362), 1, + [157342] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9062), 2, + ACTIONS(9323), 2, anon_sym_RPAREN, anon_sym_COMMA, - [138333] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9064), 6, - sym__newline, - 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, + [157363] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9325), 1, + sym_identifier, + STATE(1457), 1, + sym_c_function_definition, + STATE(5247), 1, + sym_c_parameters, + STATE(6729), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9066), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - 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, + [157386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 5, + ACTIONS(9327), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8367), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [138395] = 4, - ACTIONS(9074), 1, - anon_sym_PIPE, - STATE(5248), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [157401] = 4, + ACTIONS(9329), 1, + anon_sym_COMMA, + STATE(5492), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(9117), 4, anon_sym_if, - anon_sym_COLON, - [138412] = 4, - ACTIONS(9077), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [157418] = 4, + ACTIONS(9331), 1, anon_sym_COMMA, - STATE(5275), 1, - aux_sym_for_in_clause_repeat1, + STATE(5456), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8875), 4, + ACTIONS(2581), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [138429] = 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, + [157435] = 7, + ACTIONS(8559), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9335), 1, + sym__newline, + STATE(1088), 1, + sym_external_definition, + STATE(6376), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8975), 2, + ACTIONS(9337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8367), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [157473] = 7, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9339), 1, anon_sym_COLON, - [138450] = 4, - ACTIONS(9079), 1, + ACTIONS(9341), 1, + sym__newline, + STATE(3631), 1, + sym_external_definition, + STATE(6472), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157496] = 4, + ACTIONS(9343), 1, anon_sym_COMMA, - STATE(5278), 1, + STATE(5528), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8879), 4, + ACTIONS(9161), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [138467] = 3, + [157513] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9346), 1, + sym_identifier, + STATE(1247), 1, + sym_c_function_definition, + STATE(5247), 1, + sym_c_parameters, + STATE(6729), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8396), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [157536] = 6, + ACTIONS(8737), 1, anon_sym_as, - anon_sym_PIPE, - [138482] = 4, - ACTIONS(9083), 1, - anon_sym_COMMA, - STATE(5234), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2628), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [138499] = 2, + ACTIONS(9348), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [157557] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9085), 6, + ACTIONS(4586), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [138512] = 6, - ACTIONS(8360), 1, + [157570] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8838), 2, - anon_sym_RPAREN, + ACTIONS(9350), 2, + sym__newline, anon_sym_COMMA, - [138533] = 7, - ACTIONS(8284), 1, + [157591] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9352), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [157604] = 7, + ACTIONS(8329), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9087), 1, + ACTIONS(9354), 1, anon_sym_COLON, - ACTIONS(9089), 1, + ACTIONS(9356), 1, sym__newline, - STATE(1115), 1, + STATE(3623), 1, sym_external_definition, - STATE(6146), 1, + STATE(6481), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [138556] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9091), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8071), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [138571] = 7, - ACTIONS(8204), 1, + [157627] = 7, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(8991), 1, + ACTIONS(9222), 1, anon_sym_as, - ACTIONS(9093), 1, + ACTIONS(9358), 1, anon_sym_COMMA, - ACTIONS(9095), 1, + ACTIONS(9360), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [138594] = 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, + [157650] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9097), 2, + ACTIONS(9362), 6, sym__newline, - anon_sym_SEMI, - [138615] = 6, - ACTIONS(7826), 1, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [157663] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9099), 2, + ACTIONS(9323), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [138636] = 6, - ACTIONS(8202), 1, + anon_sym_COLON, + [157684] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8893), 2, + ACTIONS(4319), 2, + anon_sym_RPAREN, anon_sym_COMMA, - 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(1126), 1, - sym_external_definition, - STATE(5850), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [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, + [157705] = 4, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5594), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [138701] = 6, - ACTIONS(7695), 1, + ACTIONS(6007), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + [157722] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9113), 2, + ACTIONS(6026), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [157743] = 4, + ACTIONS(4399), 1, + anon_sym_DOT, + STATE(5519), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8199), 4, sym__newline, anon_sym_SEMI, - [138722] = 6, - ACTIONS(8360), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8362), 1, - anon_sym_if, - ACTIONS(8364), 1, + [157760] = 5, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(8817), 1, anon_sym_or, + ACTIONS(9364), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4373), 2, - anon_sym_RPAREN, + ACTIONS(6015), 3, anon_sym_COMMA, - [138743] = 6, - ACTIONS(8202), 1, - anon_sym_as, - ACTIONS(8204), 1, anon_sym_if, - ACTIONS(8206), 1, + anon_sym_RBRACE, + [157779] = 4, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9115), 2, + ACTIONS(6007), 4, anon_sym_COMMA, - anon_sym_COLON, - [138764] = 6, - ACTIONS(8360), 1, anon_sym_as, - ACTIONS(8362), 1, anon_sym_if, - ACTIONS(8364), 1, + anon_sym_RBRACE, + [157796] = 3, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8366), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8899), 2, - anon_sym_RPAREN, + ACTIONS(5354), 5, anon_sym_COMMA, - [138785] = 6, - ACTIONS(7695), 1, anon_sym_as, - ACTIONS(7697), 1, anon_sym_if, - ACTIONS(7699), 1, + anon_sym_RBRACE, + anon_sym_or, + [157811] = 6, + ACTIONS(8811), 1, + anon_sym_as, + ACTIONS(8813), 1, + anon_sym_if, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9117), 2, - sym__newline, + ACTIONS(6038), 2, anon_sym_COMMA, - [138806] = 6, - ACTIONS(7826), 1, + anon_sym_RBRACE, + [157832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9369), 1, + anon_sym_BSLASH, + ACTIONS(9367), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [157849] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8120), 2, + ACTIONS(6049), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [138827] = 2, + anon_sym_RBRACE, + [157870] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 6, + ACTIONS(9371), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [138840] = 4, - ACTIONS(9119), 1, + [157883] = 7, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9195), 1, + anon_sym_COLON, + ACTIONS(9199), 1, + anon_sym_PIPE, + ACTIONS(9373), 1, anon_sym_COMMA, - STATE(5155), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(9375), 1, + anon_sym_RBRACK, + STATE(6291), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8875), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [138857] = 3, + [157906] = 2, 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, + ACTIONS(9377), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [138872] = 6, - ACTIONS(7826), 1, + [157919] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9379), 1, + sym_identifier, + STATE(1848), 1, + sym_c_function_definition, + STATE(5122), 1, + sym_c_parameters, + STATE(6756), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157942] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2841), 2, + ACTIONS(9381), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [138893] = 4, - ACTIONS(9123), 1, + anon_sym_RBRACE, + [157963] = 4, + ACTIONS(9383), 1, anon_sym_COMMA, - STATE(5156), 1, - aux_sym_for_in_clause_repeat1, + STATE(5589), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8879), 4, + ACTIONS(2581), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [138910] = 4, - ACTIONS(9125), 1, - anon_sym_COMMA, - STATE(5278), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [157980] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8844), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(9281), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [138927] = 3, + [158001] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9127), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8396), 4, + ACTIONS(9381), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [158022] = 6, + ACTIONS(8369), 1, 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(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [138965] = 4, - ACTIONS(9133), 1, + ACTIONS(9167), 2, + anon_sym_COMMA, + anon_sym_COLON, + [158043] = 4, + ACTIONS(9385), 1, anon_sym_COMMA, - STATE(5278), 1, + STATE(5576), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 4, + ACTIONS(9129), 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(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, - [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(5694), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [139026] = 2, + [158060] = 6, + ACTIONS(8148), 1, + anon_sym_and, + ACTIONS(8150), 1, + anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(8323), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [158081] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(7888), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8838), 2, + ACTIONS(9387), 2, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [139060] = 6, - ACTIONS(7826), 1, - anon_sym_as, - ACTIONS(7828), 1, - anon_sym_if, - ACTIONS(7830), 1, + [158102] = 6, + ACTIONS(8148), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8150), 1, anon_sym_or, + ACTIONS(8240), 1, + anon_sym_as, + ACTIONS(8242), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2825), 2, + ACTIONS(8309), 2, anon_sym_COMMA, anon_sym_RBRACK, - [139081] = 6, - ACTIONS(7826), 1, + [158123] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7531), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [158136] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(7828), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(7830), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(7832), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2839), 2, + ACTIONS(9389), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [139102] = 7, - ACTIONS(7987), 1, + [158157] = 7, + ACTIONS(8329), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9146), 1, + ACTIONS(9391), 1, anon_sym_COLON, - ACTIONS(9148), 1, + ACTIONS(9393), 1, sym__newline, - STATE(1127), 1, + STATE(3610), 1, sym_external_definition, - STATE(6032), 1, + STATE(6477), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139125] = 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, + [158180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(9397), 1, + anon_sym_BSLASH, + ACTIONS(9395), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [158197] = 6, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(9399), 1, + sym_identifier, + ACTIONS(9401), 1, + anon_sym_STAR, + ACTIONS(9403), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5967), 2, + STATE(5946), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [158218] = 4, + ACTIONS(9405), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [139146] = 5, - ACTIONS(8564), 1, - anon_sym_and, - ACTIONS(8566), 1, - anon_sym_or, - ACTIONS(9150), 1, - anon_sym_as, + STATE(5457), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 3, - anon_sym_COMMA, + ACTIONS(9173), 4, anon_sym_if, - anon_sym_RBRACE, - [139165] = 4, - ACTIONS(8564), 1, - anon_sym_and, - ACTIONS(8566), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [158235] = 4, + ACTIONS(9409), 1, + anon_sym_COMMA, + STATE(5464), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 4, + ACTIONS(9407), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [158252] = 4, + ACTIONS(9411), 1, anon_sym_COMMA, - anon_sym_as, + STATE(5489), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [139182] = 3, - ACTIONS(8564), 1, + [158269] = 3, + ACTIONS(8741), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 5, + ACTIONS(5354), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACE, anon_sym_or, - [139197] = 6, - ACTIONS(8560), 1, + [158284] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8562), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8564), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8566), 1, + ACTIONS(8375), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5927), 2, + ACTIONS(9348), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [139218] = 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, + anon_sym_COLON, + [158305] = 7, + ACTIONS(8162), 1, + anon_sym_LPAREN, + ACTIONS(8168), 1, + anon_sym_LBRACK, + ACTIONS(9413), 1, + sym_identifier, + STATE(3731), 1, + sym_c_function_definition, + STATE(5168), 1, + sym_c_parameters, + STATE(6781), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 2, + [158328] = 4, + ACTIONS(9415), 1, anon_sym_COMMA, + STATE(5572), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8309), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [139239] = 7, - ACTIONS(8284), 1, + [158345] = 4, + ACTIONS(9418), 1, + anon_sym_COMMA, + STATE(5566), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9407), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [158362] = 7, + ACTIONS(8448), 1, anon_sym_LBRACK, - ACTIONS(8865), 1, + ACTIONS(9133), 1, anon_sym_LPAREN, - ACTIONS(9153), 1, + ACTIONS(9420), 1, anon_sym_COLON, - ACTIONS(9155), 1, + ACTIONS(9422), 1, sym__newline, - STATE(1093), 1, + STATE(1082), 1, sym_external_definition, - STATE(6138), 1, + STATE(6219), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139262] = 5, - ACTIONS(8981), 1, - anon_sym_DOT, - ACTIONS(8983), 1, + [158385] = 7, + ACTIONS(8345), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9424), 1, anon_sym_COLON, - ACTIONS(8987), 1, - anon_sym_PIPE, + ACTIONS(9426), 1, + sym__newline, + STATE(3887), 1, + sym_external_definition, + STATE(6440), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9157), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [139281] = 2, + [158408] = 4, + ACTIONS(9428), 1, + anon_sym_COMMA, + STATE(5457), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(9117), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [158425] = 6, + ACTIONS(8811), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8813), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8815), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8817), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9049), 2, + ACTIONS(9281), 2, anon_sym_COMMA, - anon_sym_COLON, - [139315] = 7, - ACTIONS(7834), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, + anon_sym_RBRACE, + [158446] = 4, + ACTIONS(9432), 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, - [139338] = 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, + STATE(5578), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(9430), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [158463] = 4, + ACTIONS(9435), 1, + anon_sym_COMMA, + STATE(5472), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 2, - anon_sym_COMMA, + ACTIONS(2229), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [139359] = 3, + sym_type_conversion, + [158480] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8071), 4, + ACTIONS(4325), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [158501] = 6, + ACTIONS(8811), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [139374] = 2, + ACTIONS(8813), 1, + anon_sym_if, + ACTIONS(8815), 1, + anon_sym_and, + ACTIONS(8817), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9165), 5, + ACTIONS(8309), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_RBRACE, + [158522] = 7, + ACTIONS(8559), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9437), 1, anon_sym_COLON, - anon_sym_PIPE, - [139386] = 4, - ACTIONS(9169), 1, - anon_sym_DOT, - STATE(5520), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(9439), 1, + sym__newline, + STATE(1128), 1, + sym_external_definition, + STATE(6371), 1, + sym_argument_list, 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, + [158545] = 7, + ACTIONS(8345), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9441), 1, + anon_sym_COLON, + ACTIONS(9443), 1, sym__newline, - ACTIONS(9175), 1, - sym__indent, - STATE(3814), 1, - sym_struct_suite, - STATE(3899), 1, - sym_pass_statement, + STATE(3896), 1, + sym_external_definition, + STATE(6444), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139422] = 6, - ACTIONS(8404), 1, + [158568] = 4, + ACTIONS(9445), 1, anon_sym_COMMA, - 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, + STATE(5439), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139442] = 6, - ACTIONS(8202), 1, + ACTIONS(9129), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [158585] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - 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, + ACTIONS(8309), 2, anon_sym_COMMA, - 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, - 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, - [139494] = 6, - ACTIONS(9187), 1, - anon_sym_pass, - ACTIONS(9193), 1, + anon_sym_COLON, + [158606] = 7, + ACTIONS(8345), 1, + anon_sym_LBRACK, + ACTIONS(9133), 1, + anon_sym_LPAREN, + ACTIONS(9447), 1, + anon_sym_COLON, + ACTIONS(9449), 1, sym__newline, - ACTIONS(9195), 1, - sym__indent, - STATE(2003), 1, - sym_pass_statement, - STATE(2011), 1, - sym_struct_suite, + STATE(3924), 1, + sym_external_definition, + STATE(6450), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139514] = 6, - ACTIONS(8360), 1, + [158629] = 6, + ACTIONS(7882), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(7884), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(7886), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(7888), 1, anon_sym_or, - ACTIONS(9197), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139534] = 6, - ACTIONS(9199), 1, + ACTIONS(9451), 2, + sym__newline, + anon_sym_SEMI, + [158650] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(9203), 1, - anon_sym_else, - ACTIONS(9205), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(8743), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139554] = 3, - STATE(5483), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(6038), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [158671] = 4, + ACTIONS(9453), 1, + anon_sym_COMMA, + STATE(5589), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(8309), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [139568] = 4, - ACTIONS(9209), 1, - anon_sym_PIPE, - STATE(5310), 1, - aux_sym_union_pattern_repeat1, + [158688] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 3, + ACTIONS(6026), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [158709] = 5, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, + ACTIONS(9456), 1, anon_sym_as, - anon_sym_RBRACK, - [139584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6828), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [139596] = 5, - ACTIONS(9212), 1, + ACTIONS(6015), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9214), 1, - anon_sym_RBRACE, - STATE(5792), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8071), 2, - anon_sym_COLON, - anon_sym_PIPE, - [139614] = 2, + anon_sym_if, + [158728] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8952), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7627), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [139626] = 6, - ACTIONS(5063), 1, - anon_sym_COLON, - ACTIONS(8965), 1, - anon_sym_if, - ACTIONS(9216), 1, - anon_sym_COMMA, - STATE(5674), 1, - aux_sym_case_clause_repeat1, - STATE(6868), 1, - sym_if_clause, + anon_sym_not, + anon_sym_or, + [158740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139646] = 6, - ACTIONS(9218), 1, + ACTIONS(9459), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(9220), 1, - anon_sym_LBRACK, - ACTIONS(9222), 1, + anon_sym_PIPE, + [158752] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(9224), 1, + ACTIONS(8634), 1, + anon_sym_COLON, + ACTIONS(8636), 1, sym__newline, - STATE(5733), 1, - sym_template_params, + STATE(6847), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139666] = 2, + [158772] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9226), 5, + ACTIONS(9461), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [139678] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9228), 5, - anon_sym_COMMA, + [158784] = 6, + ACTIONS(8369), 1, anon_sym_as, + ACTIONS(8371), 1, anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9463), 1, anon_sym_COLON, - anon_sym_PIPE, - [139690] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6838), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [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, - [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, - [139742] = 6, - ACTIONS(9199), 1, + [158804] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(9238), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [139762] = 3, - ACTIONS(9240), 1, - anon_sym_LPAREN, + ACTIONS(9465), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [158824] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 3, - anon_sym_RPAREN, + ACTIONS(9467), 5, anon_sym_COMMA, - anon_sym_as, - [139792] = 6, - ACTIONS(8067), 1, - anon_sym_with, - ACTIONS(8069), 1, - anon_sym_nogil, - ACTIONS(8116), 1, - anon_sym_COLON, - ACTIONS(8118), 1, - sym__newline, - STATE(6508), 1, - sym_gil_spec, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [158836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139812] = 5, - ACTIONS(9244), 1, + ACTIONS(9161), 5, anon_sym_COMMA, - ACTIONS(9246), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - STATE(5990), 1, - aux_sym_dict_pattern_repeat1, + [158848] = 4, + ACTIONS(9469), 1, + anon_sym_PIPE, + STATE(5828), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8071), 2, - anon_sym_COLON, - anon_sym_PIPE, - [139830] = 6, - ACTIONS(8360), 1, + ACTIONS(9131), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8362), 1, - anon_sym_if, - ACTIONS(8364), 1, - anon_sym_and, - ACTIONS(8366), 1, - anon_sym_or, - ACTIONS(9248), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, + [158864] = 3, + STATE(5828), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139850] = 6, - ACTIONS(9199), 1, + ACTIONS(9153), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9250), 1, - anon_sym_else, + anon_sym_RBRACK, + anon_sym_PIPE, + [158878] = 4, + ACTIONS(9471), 1, + anon_sym_PIPE, + STATE(5602), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139870] = 6, - ACTIONS(9187), 1, + ACTIONS(9153), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [158894] = 6, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9193), 1, + ACTIONS(9476), 1, sym__newline, - ACTIONS(9195), 1, + ACTIONS(9478), 1, sym__indent, - STATE(1252), 1, + STATE(1448), 1, sym_struct_suite, - STATE(2003), 1, + STATE(2012), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139890] = 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(9252), 1, - anon_sym_COLON, + [158914] = 6, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(9482), 1, + sym__newline, + ACTIONS(9484), 1, + sym__indent, + STATE(1263), 1, + sym_pass_statement, + STATE(1309), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139910] = 2, + [158934] = 3, + ACTIONS(9486), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9254), 5, + ACTIONS(8367), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [139922] = 2, + [158948] = 4, + ACTIONS(9488), 1, + anon_sym_PIPE, + STATE(5695), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9039), 5, - anon_sym_DOT, + ACTIONS(9269), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [139934] = 2, + anon_sym_as, + [158964] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 5, + ACTIONS(9490), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [139946] = 5, - ACTIONS(8981), 1, - anon_sym_DOT, - ACTIONS(9258), 1, + [158976] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8674), 1, anon_sym_COLON, - ACTIONS(9260), 1, - anon_sym_PIPE, + ACTIONS(8676), 1, + sym__newline, + STATE(6768), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9256), 2, + [158996] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(9494), 1, + anon_sym_EQ, + STATE(6101), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9492), 2, sym__newline, - anon_sym_SEMI, - [139964] = 6, - ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(9177), 1, + [159014] = 6, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, anon_sym_LPAREN, - ACTIONS(9262), 1, + ACTIONS(9498), 1, anon_sym_EQ, - ACTIONS(9264), 1, + ACTIONS(9500), 1, anon_sym_RBRACK, - STATE(6059), 1, + STATE(6222), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [139984] = 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(9157), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140002] = 6, - ACTIONS(5967), 1, - anon_sym_else, - 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(3), 2, + [159034] = 6, + ACTIONS(9502), 1, + anon_sym_LBRACE, + ACTIONS(9504), 1, + anon_sym_RBRACE, + ACTIONS(9506), 1, + aux_sym_format_specifier_token1, + STATE(5627), 1, + aux_sym_format_specifier_repeat1, + STATE(6112), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [140022] = 5, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9266), 1, - anon_sym_as, + [159054] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(9508), 1, + anon_sym_COLON, + ACTIONS(9510), 1, + sym__newline, + STATE(6818), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5982), 2, - anon_sym_if, - anon_sym_else, - [140040] = 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(9269), 1, - anon_sym_else, + [159074] = 5, + ACTIONS(9512), 1, + sym_identifier, + ACTIONS(9514), 1, + anon_sym_COLON, + ACTIONS(9518), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140060] = 4, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, + ACTIONS(9516), 2, + anon_sym_class, + anon_sym_struct, + [159092] = 5, + ACTIONS(9520), 1, + sym_identifier, + ACTIONS(9522), 1, + anon_sym_COLON, + ACTIONS(9526), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 3, - anon_sym_as, - anon_sym_if, - anon_sym_else, - [140076] = 3, - ACTIONS(9205), 1, - anon_sym_and, + ACTIONS(9524), 2, + anon_sym_class, + anon_sym_struct, + [159110] = 6, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(9476), 1, + sym__newline, + ACTIONS(9478), 1, + sym__indent, + STATE(1510), 1, + sym_struct_suite, + STATE(2012), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5608), 4, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_or, - [140090] = 6, - ACTIONS(9271), 1, + [159130] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9273), 1, + ACTIONS(9530), 1, sym__newline, - ACTIONS(9275), 1, + ACTIONS(9532), 1, sym__indent, - STATE(1320), 1, + STATE(3680), 1, sym_pass_statement, - STATE(1323), 1, - sym_struct_suite, + STATE(3681), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140110] = 5, - ACTIONS(9279), 1, - anon_sym_COMMA, - ACTIONS(9281), 1, - anon_sym_as, - STATE(5598), 1, - aux_sym__import_list_repeat1, + [159150] = 6, + ACTIONS(9534), 1, + anon_sym_COLON, + ACTIONS(9536), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_nogil, + ACTIONS(9540), 1, + sym__newline, + STATE(6103), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9277), 2, - sym__newline, - anon_sym_SEMI, - [140128] = 6, - ACTIONS(9187), 1, - anon_sym_pass, - ACTIONS(9189), 1, + [159170] = 5, + ACTIONS(9542), 1, + sym_identifier, + ACTIONS(9544), 1, + anon_sym_COLON, + ACTIONS(9548), 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, - [140148] = 6, - ACTIONS(5927), 1, - anon_sym_else, - ACTIONS(9199), 1, + ACTIONS(9546), 2, + anon_sym_class, + anon_sym_struct, + [159188] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(8743), 1, anon_sym_or, + ACTIONS(9550), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140168] = 3, - ACTIONS(9283), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8071), 4, - anon_sym_COMMA, + [159208] = 6, + ACTIONS(9552), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [140182] = 4, - ACTIONS(9285), 1, - anon_sym_PIPE, - STATE(5483), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9556), 1, + anon_sym_else, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [140198] = 2, + [159228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7259), 5, + ACTIONS(7568), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, anon_sym_not, anon_sym_or, - [140210] = 2, + [159240] = 4, + STATE(2440), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 5, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159256] = 6, + ACTIONS(8745), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(9566), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [140222] = 5, - ACTIONS(9287), 1, - sym_identifier, - ACTIONS(9289), 1, - anon_sym_COLON, - ACTIONS(9293), 1, + ACTIONS(9568), 1, + anon_sym_RBRACK, + STATE(6204), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159276] = 6, + ACTIONS(9528), 1, + anon_sym_pass, + ACTIONS(9570), 1, sym__newline, + ACTIONS(9572), 1, + sym__indent, + STATE(3695), 1, + sym_pass_statement, + STATE(3696), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9291), 2, - anon_sym_class, - anon_sym_struct, - [140240] = 2, + [159296] = 5, + ACTIONS(9085), 1, + sym_identifier, + STATE(5887), 1, + sym_dotted_name, + STATE(6610), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9031), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [140252] = 6, - ACTIONS(8067), 1, + ACTIONS(9574), 2, + sym__newline, + anon_sym_SEMI, + [159314] = 6, + ACTIONS(8383), 1, anon_sym_with, - ACTIONS(8069), 1, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(9295), 1, + ACTIONS(8655), 1, anon_sym_COLON, - ACTIONS(9297), 1, + ACTIONS(8657), 1, sym__newline, - STATE(6349), 1, + STATE(6885), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140272] = 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(9299), 1, - anon_sym_else, - ACTIONS(3), 2, + [159334] = 6, + ACTIONS(9502), 1, + anon_sym_LBRACE, + ACTIONS(9576), 1, + anon_sym_RBRACE, + ACTIONS(9578), 1, + aux_sym_format_specifier_token1, + STATE(5767), 1, + aux_sym_format_specifier_repeat1, + STATE(6112), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [140292] = 6, - ACTIONS(5947), 1, - anon_sym_else, - ACTIONS(9199), 1, - anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, + [159354] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(9580), 1, + anon_sym_COLON, + ACTIONS(9582), 1, + sym__newline, + STATE(6712), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140312] = 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(9301), 1, + [159374] = 6, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(9584), 1, sym__newline, + ACTIONS(9586), 1, + sym__indent, + STATE(1409), 1, + sym_extern_suite, + STATE(1546), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [159394] = 5, + ACTIONS(9085), 1, + sym_identifier, + STATE(5887), 1, + sym_dotted_name, + STATE(6610), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140352] = 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(9305), 1, + ACTIONS(9574), 2, + sym__newline, + anon_sym_SEMI, + [159412] = 6, + ACTIONS(8379), 1, anon_sym_COLON, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8389), 1, + sym__newline, + STATE(6717), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140372] = 2, + [159432] = 5, + ACTIONS(9588), 1, + anon_sym_COMMA, + ACTIONS(9590), 1, + anon_sym_RBRACE, + STATE(6375), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9307), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(8367), 2, anon_sym_COLON, anon_sym_PIPE, - [140384] = 5, - ACTIONS(9309), 1, - sym_identifier, - ACTIONS(9311), 1, - anon_sym_COLON, - ACTIONS(9315), 1, - sym__newline, + [159450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(9169), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [159462] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(9592), 1, + anon_sym_COLON, + ACTIONS(9594), 1, + sym__newline, + STATE(6814), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140422] = 4, - ACTIONS(8206), 1, - anon_sym_and, - ACTIONS(8208), 1, - anon_sym_or, + [159482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [140438] = 5, - ACTIONS(9319), 1, - sym_identifier, - ACTIONS(9321), 1, + ACTIONS(4418), 5, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9325), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9323), 2, - anon_sym_class, - anon_sym_struct, - [140456] = 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [159494] = 4, + ACTIONS(9598), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7259), 5, + ACTIONS(9596), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(9600), 2, anon_sym_not, anon_sym_or, - [140468] = 2, + [159510] = 6, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9604), 1, + sym__newline, + ACTIONS(9606), 1, + sym__indent, + STATE(4058), 1, + sym_pass_statement, + STATE(4093), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9031), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [140480] = 6, - ACTIONS(9327), 1, - anon_sym_LBRACE, - ACTIONS(9329), 1, + [159530] = 5, + ACTIONS(9608), 1, + anon_sym_COMMA, + ACTIONS(9610), 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, + STATE(6398), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140500] = 2, + ACTIONS(8367), 2, + anon_sym_COLON, + anon_sym_PIPE, + [159548] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9333), 5, + ACTIONS(9467), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [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, + [159560] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9339), 2, + ACTIONS(7627), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [140550] = 2, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [159572] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 5, + ACTIONS(9161), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [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, + [159584] = 4, + ACTIONS(9614), 1, + anon_sym_DOT, + STATE(5681), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140582] = 2, + ACTIONS(9612), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [159600] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9341), 5, + ACTIONS(9616), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [140594] = 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(9343), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [140614] = 2, + [159612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7236), 5, + ACTIONS(9618), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - [140626] = 2, + anon_sym_PIPE, + [159624] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9085), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(8111), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [140638] = 2, + anon_sym_RBRACE, + sym_type_conversion, + [159636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9345), 5, + ACTIONS(7647), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [140650] = 6, - ACTIONS(9271), 1, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [159648] = 6, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9273), 1, + ACTIONS(9476), 1, sym__newline, - ACTIONS(9275), 1, + ACTIONS(9478), 1, sym__indent, - STATE(1199), 1, + STATE(1420), 1, sym_struct_suite, - STATE(1320), 1, + STATE(2012), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140670] = 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(9347), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [140690] = 2, + [159668] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9349), 5, + ACTIONS(9620), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [140702] = 2, + [159680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9351), 5, + ACTIONS(7878), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, 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, + [159692] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140734] = 6, - ACTIONS(9199), 1, + ACTIONS(9622), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9357), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [159704] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140754] = 2, + ACTIONS(9624), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [159716] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9359), 5, + ACTIONS(9626), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [140766] = 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(9361), 1, - anon_sym_else, + [159728] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140786] = 2, + ACTIONS(7647), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [159740] = 4, + ACTIONS(9628), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9363), 5, + ACTIONS(9596), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, 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(8208), 1, + ACTIONS(9630), 2, + anon_sym_not, anon_sym_or, - ACTIONS(9365), 1, + [159756] = 6, + ACTIONS(9632), 1, anon_sym_COLON, + ACTIONS(9634), 1, + anon_sym_EQ, + ACTIONS(9636), 1, + anon_sym_RBRACE, + ACTIONS(9638), 1, + sym_type_conversion, + STATE(7093), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140818] = 2, + [159776] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9367), 5, + ACTIONS(7180), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [159788] = 6, + ACTIONS(7882), 1, anon_sym_as, + ACTIONS(7884), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [140830] = 6, - ACTIONS(9171), 1, - anon_sym_pass, - ACTIONS(9173), 1, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(9640), 1, sym__newline, - 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, - [140850] = 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(9369), 1, - anon_sym_else, + [159808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140870] = 6, - ACTIONS(9199), 1, - anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(7574), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, anon_sym_or, - ACTIONS(9371), 1, - anon_sym_else, + [159820] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140890] = 6, - ACTIONS(8404), 1, + ACTIONS(7152), 5, anon_sym_COMMA, - ACTIONS(9177), 1, - anon_sym_LPAREN, - ACTIONS(9373), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(9375), 1, - anon_sym_RBRACK, - STATE(6295), 1, - aux_sym_type_index_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [159832] = 5, + ACTIONS(9085), 1, + sym_identifier, + STATE(5887), 1, + sym_dotted_name, + STATE(6610), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140910] = 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(9377), 1, - anon_sym_else, + ACTIONS(9642), 2, + sym__newline, + anon_sym_SEMI, + [159850] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140930] = 6, - ACTIONS(8360), 1, + ACTIONS(7613), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [159862] = 6, + ACTIONS(6026), 1, + anon_sym_else, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9379), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140950] = 6, - ACTIONS(9199), 1, - anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, + [159882] = 6, + ACTIONS(9085), 1, + sym_identifier, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(5810), 1, + sym_dotted_name, + STATE(5922), 1, + sym_aliased_import, + STATE(6874), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159902] = 5, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9381), 1, - anon_sym_else, + ACTIONS(9646), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [140970] = 6, - ACTIONS(9199), 1, - anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(6015), 2, anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9383), 1, anon_sym_else, + [159920] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + ACTIONS(7090), 5, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [159932] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141010] = 6, - ACTIONS(9199), 1, + ACTIONS(9649), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, anon_sym_if, - ACTIONS(9205), 1, + anon_sym_COLON, + anon_sym_PIPE, + [159944] = 4, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9385), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141030] = 6, - ACTIONS(9199), 1, + ACTIONS(6007), 3, anon_sym_as, - ACTIONS(9201), 1, anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9387), 1, anon_sym_else, + [159960] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141050] = 5, - ACTIONS(9389), 1, + ACTIONS(9651), 5, anon_sym_COMMA, - ACTIONS(9391), 1, - anon_sym_RBRACE, - STATE(5833), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8071), 2, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [141068] = 2, + [159972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9393), 5, + ACTIONS(9653), 5, anon_sym_COMMA, 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, + [159984] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9399), 2, - anon_sym_class, - anon_sym_struct, - [141098] = 6, - ACTIONS(9199), 1, + ACTIONS(9655), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9403), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [159996] = 6, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(9584), 1, + sym__newline, + ACTIONS(9586), 1, + sym__indent, + STATE(1546), 1, + sym_pass_statement, + STATE(1687), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141118] = 6, - ACTIONS(9199), 1, + [160016] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9405), 1, - anon_sym_else, + ACTIONS(9657), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141138] = 6, - ACTIONS(8067), 1, - anon_sym_with, - ACTIONS(8069), 1, - anon_sym_nogil, - ACTIONS(8154), 1, - anon_sym_COLON, - ACTIONS(8156), 1, + [160036] = 6, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9659), 1, sym__newline, - STATE(6535), 1, - sym_gil_spec, + ACTIONS(9661), 1, + sym__indent, + STATE(4071), 1, + sym_pass_statement, + STATE(4100), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141158] = 6, - ACTIONS(9199), 1, + [160056] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9407), 1, + ACTIONS(9663), 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, + [160076] = 5, + ACTIONS(9665), 1, + anon_sym_COMMA, + ACTIONS(9667), 1, + anon_sym_RBRACE, + STATE(6449), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8905), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [141194] = 2, + ACTIONS(8367), 2, + anon_sym_COLON, + anon_sym_PIPE, + [160094] = 3, + ACTIONS(9558), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9409), 5, - anon_sym_COMMA, + ACTIONS(5354), 4, anon_sym_as, anon_sym_if, + anon_sym_else, + anon_sym_or, + [160108] = 6, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(9669), 1, + anon_sym_EQ, + ACTIONS(9671), 1, + anon_sym_RBRACK, + STATE(6050), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160128] = 6, + ACTIONS(5077), 1, anon_sym_COLON, - anon_sym_PIPE, - [141206] = 5, - ACTIONS(8576), 1, - sym_identifier, - STATE(5699), 1, - sym_dotted_name, - STATE(6104), 1, - sym_aliased_import, + ACTIONS(9248), 1, + anon_sym_if, + ACTIONS(9673), 1, + anon_sym_COMMA, + STATE(5847), 1, + aux_sym_case_clause_repeat1, + STATE(7228), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9411), 2, - sym__newline, - anon_sym_SEMI, - [141224] = 6, - ACTIONS(9413), 1, + [160148] = 6, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9415), 1, + ACTIONS(9476), 1, sym__newline, - ACTIONS(9417), 1, + ACTIONS(9478), 1, sym__indent, - STATE(3466), 1, + STATE(1142), 1, + sym_struct_suite, + STATE(2012), 1, sym_pass_statement, - STATE(3513), 1, - sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141244] = 6, - ACTIONS(8202), 1, + [160168] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9419), 1, - anon_sym_COLON, + ACTIONS(9675), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141264] = 6, - ACTIONS(9187), 1, - anon_sym_pass, - ACTIONS(9189), 1, - sym__newline, - ACTIONS(9191), 1, - sym__indent, - STATE(1314), 1, - sym_extern_suite, - STATE(1965), 1, - sym_pass_statement, + [160188] = 4, + ACTIONS(9679), 1, + anon_sym_DOT, + STATE(5681), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141284] = 6, - ACTIONS(8202), 1, + ACTIONS(9677), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [160204] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9421), 1, - anon_sym_COLON, + ACTIONS(9682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141304] = 5, - ACTIONS(8576), 1, - sym_identifier, - STATE(5699), 1, - sym_dotted_name, - STATE(6104), 1, - sym_aliased_import, + [160224] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9684), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9411), 2, - sym__newline, - anon_sym_SEMI, - [141322] = 6, - ACTIONS(8202), 1, + [160244] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(9423), 1, + ACTIONS(9686), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141342] = 6, - ACTIONS(9413), 1, - anon_sym_pass, - ACTIONS(9425), 1, - sym__newline, - ACTIONS(9427), 1, - sym__indent, - STATE(3505), 1, - sym_pass_statement, - STATE(3572), 1, - sym_struct_suite, + [160264] = 6, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(9688), 1, + anon_sym_EQ, + ACTIONS(9690), 1, + anon_sym_RBRACK, + STATE(6096), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141362] = 2, + [160284] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4586), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [141374] = 6, - ACTIONS(8067), 1, - anon_sym_with, - ACTIONS(8069), 1, - anon_sym_nogil, - ACTIONS(8226), 1, - anon_sym_COLON, - ACTIONS(8228), 1, - sym__newline, - STATE(6422), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [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, + [160296] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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(9371), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [160308] = 4, + STATE(2346), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141434] = 2, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [160324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8977), 5, + ACTIONS(9287), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [141446] = 2, + [160336] = 4, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9429), 5, - anon_sym_COMMA, + ACTIONS(6007), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [141458] = 6, + [160352] = 5, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9195), 1, + anon_sym_COLON, ACTIONS(9199), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9692), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [160370] = 6, + ACTIONS(6038), 1, + anon_sym_else, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9431), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [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, + [160390] = 6, + ACTIONS(8737), 1, + anon_sym_as, + ACTIONS(8739), 1, + anon_sym_if, + ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8743), 1, + anon_sym_or, + ACTIONS(9694), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141518] = 6, - ACTIONS(9220), 1, - anon_sym_LBRACK, - ACTIONS(9445), 1, - anon_sym_COLON, - ACTIONS(9447), 1, - anon_sym_nogil, - ACTIONS(9449), 1, - sym__newline, - STATE(6248), 1, - sym_template_params, + [160410] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9696), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141538] = 2, + [160430] = 4, + ACTIONS(9488), 1, + anon_sym_PIPE, + STATE(5760), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 5, - anon_sym_DOT, + ACTIONS(9123), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [141550] = 6, - ACTIONS(8204), 1, + anon_sym_as, + [160446] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(9451), 1, - anon_sym_as, - ACTIONS(9453), 1, + ACTIONS(8829), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141570] = 2, + [160466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7300), 5, - anon_sym_COMMA, + ACTIONS(9352), 5, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, - anon_sym_not, - anon_sym_or, - [141582] = 3, - ACTIONS(9455), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8071), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [141596] = 4, - ACTIONS(9457), 1, anon_sym_PIPE, - STATE(5468), 1, - aux_sym_union_pattern_repeat1, + [160478] = 6, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(9584), 1, + sym__newline, + ACTIONS(9586), 1, + sym__indent, + STATE(1546), 1, + sym_pass_statement, + STATE(1549), 1, + sym_extern_suite, 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, + [160498] = 6, + ACTIONS(6049), 1, + anon_sym_else, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9459), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141632] = 6, - ACTIONS(8202), 1, + [160518] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9461), 1, - anon_sym_COLON, + ACTIONS(9698), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141652] = 6, - ACTIONS(8202), 1, + [160538] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9463), 1, - anon_sym_COLON, + ACTIONS(9700), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141672] = 2, + [160558] = 6, + ACTIONS(9528), 1, + anon_sym_pass, + ACTIONS(9530), 1, + sym__newline, + ACTIONS(9532), 1, + sym__indent, + STATE(3680), 1, + sym_pass_statement, + STATE(3715), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9465), 5, - anon_sym_COMMA, + [160578] = 6, + ACTIONS(9552), 1, anon_sym_as, + ACTIONS(9554), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [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(9066), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [141700] = 2, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9702), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7316), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - [141712] = 6, - ACTIONS(9171), 1, + [160598] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9335), 1, + ACTIONS(9570), 1, sym__newline, - ACTIONS(9337), 1, + ACTIONS(9572), 1, sym__indent, - STATE(3831), 1, - sym_extern_suite, - STATE(3931), 1, + STATE(3695), 1, sym_pass_statement, + STATE(3718), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141732] = 6, - ACTIONS(9187), 1, + [160618] = 6, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9193), 1, + ACTIONS(9604), 1, sym__newline, - ACTIONS(9195), 1, + ACTIONS(9606), 1, sym__indent, - STATE(1469), 1, - sym_struct_suite, - STATE(2003), 1, + STATE(4058), 1, sym_pass_statement, + STATE(4103), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141752] = 6, - ACTIONS(9271), 1, + [160638] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9441), 1, + ACTIONS(9570), 1, sym__newline, - ACTIONS(9443), 1, + ACTIONS(9572), 1, sym__indent, - STATE(1413), 1, - sym_extern_suite, - STATE(1612), 1, + STATE(3695), 1, sym_pass_statement, + STATE(3725), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141772] = 2, + [160658] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9704), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7294), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - [141784] = 2, + [160678] = 3, + ACTIONS(9706), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8840), 5, - anon_sym_DOT, + ACTIONS(8367), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, 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, + [160692] = 4, + ACTIONS(9708), 1, anon_sym_PIPE, - [141814] = 2, + STATE(5728), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9471), 5, + ACTIONS(9269), 3, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACE, + [160708] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, anon_sym_if, - 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(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9710), 1, + anon_sym_else, 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, + [160728] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9477), 2, - anon_sym_class, - anon_sym_struct, - [141864] = 4, - ACTIONS(9481), 1, + ACTIONS(9283), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(5444), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [160740] = 5, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9195), 1, + anon_sym_COLON, + ACTIONS(9199), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [141880] = 2, + ACTIONS(9311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [160758] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 5, + ACTIONS(9377), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - 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_RBRACK, + anon_sym_PIPE, + [160770] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9273), 1, + ACTIONS(9530), 1, sym__newline, - ACTIONS(9275), 1, + ACTIONS(9532), 1, sym__indent, - STATE(1320), 1, + STATE(3680), 1, sym_pass_statement, - STATE(1953), 1, - sym_struct_suite, + STATE(3744), 1, + sym_extern_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, + [160790] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9712), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141952] = 4, - ACTIONS(9490), 1, - anon_sym_COMMA, - STATE(5444), 1, - aux_sym_assert_statement_repeat1, + [160810] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2628), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [141968] = 6, - ACTIONS(9271), 1, + [160830] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9441), 1, + ACTIONS(9570), 1, sym__newline, - ACTIONS(9443), 1, + ACTIONS(9572), 1, sym__indent, - STATE(1268), 1, - sym_extern_suite, - STATE(1612), 1, + STATE(3695), 1, sym_pass_statement, + STATE(3752), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [141988] = 6, - ACTIONS(8360), 1, + [160850] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9492), 1, - anon_sym_RPAREN, + ACTIONS(9716), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142008] = 2, + [160870] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9718), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8952), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [142020] = 6, - ACTIONS(9413), 1, - anon_sym_pass, - ACTIONS(9425), 1, + [160890] = 6, + ACTIONS(7882), 1, + anon_sym_as, + ACTIONS(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(9720), 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, - [142040] = 2, + [160910] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7236), 5, - anon_sym_RPAREN, + ACTIONS(9467), 5, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_not, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [160922] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, 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(9722), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142072] = 6, - ACTIONS(9171), 1, + [160942] = 6, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9335), 1, + ACTIONS(9584), 1, sym__newline, - ACTIONS(9337), 1, + ACTIONS(9586), 1, sym__indent, - STATE(3862), 1, - sym_extern_suite, - STATE(3931), 1, + STATE(1546), 1, sym_pass_statement, + STATE(1547), 1, + sym_extern_suite, 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, + [160962] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9724), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142112] = 6, - ACTIONS(8360), 1, + [160982] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9500), 1, - anon_sym_RPAREN, + ACTIONS(9726), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142132] = 4, - ACTIONS(9504), 1, - anon_sym_EQ, + [161002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9502), 2, + ACTIONS(9651), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - ACTIONS(9506), 2, - anon_sym_not, + anon_sym_PIPE, + anon_sym_RBRACE, + [161014] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, anon_sym_or, - [142148] = 5, - ACTIONS(9508), 1, - sym_identifier, - ACTIONS(9510), 1, - anon_sym_COLON, - ACTIONS(9514), 1, - sym__newline, + ACTIONS(9728), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9512), 2, - anon_sym_class, - anon_sym_struct, - [142166] = 6, - ACTIONS(9199), 1, + [161034] = 4, + ACTIONS(9708), 1, + anon_sym_PIPE, + STATE(5753), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9123), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, + anon_sym_RBRACE, + [161050] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9730), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161070] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9516), 1, + ACTIONS(9732), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142186] = 2, + [161090] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9351), 5, + ACTIONS(9169), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [142198] = 6, - ACTIONS(8360), 1, + [161102] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(8362), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9518), 1, - anon_sym_RPAREN, + ACTIONS(9734), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142218] = 2, + [161122] = 6, + ACTIONS(9528), 1, + anon_sym_pass, + ACTIONS(9530), 1, + sym__newline, + ACTIONS(9532), 1, + sym__indent, + STATE(3680), 1, + sym_pass_statement, + STATE(3776), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161142] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 5, + ACTIONS(9736), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [142230] = 6, - ACTIONS(9199), 1, + [161154] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9522), 1, + ACTIONS(9738), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142250] = 6, - ACTIONS(8404), 1, - anon_sym_COMMA, - 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, + [161174] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9740), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142270] = 5, - ACTIONS(9528), 1, - sym_identifier, - ACTIONS(9530), 1, - anon_sym_COLON, - ACTIONS(9534), 1, - sym__newline, + [161194] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9742), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9532), 2, - anon_sym_class, - anon_sym_struct, - [142288] = 4, - ACTIONS(9457), 1, + [161214] = 4, + ACTIONS(9488), 1, anon_sym_PIPE, - STATE(5508), 1, + STATE(5695), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8905), 3, + ACTIONS(9131), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [142304] = 5, - ACTIONS(8576), 1, - sym_identifier, - STATE(5699), 1, - sym_dotted_name, - STATE(6104), 1, - sym_aliased_import, + [161230] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9744), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9536), 2, + [161250] = 6, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(9482), 1, sym__newline, - anon_sym_SEMI, - [142322] = 2, + ACTIONS(9484), 1, + sym__indent, + STATE(1263), 1, + sym_pass_statement, + STATE(1281), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9333), 5, - anon_sym_COMMA, + [161270] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [142334] = 6, - ACTIONS(9220), 1, - anon_sym_LBRACK, - ACTIONS(9538), 1, - anon_sym_COLON, - ACTIONS(9540), 1, - anon_sym_nogil, - ACTIONS(9542), 1, - sym__newline, - STATE(5849), 1, - sym_template_params, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9746), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142354] = 2, + [161290] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9748), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8849), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [142366] = 6, - ACTIONS(9171), 1, + [161310] = 6, + ACTIONS(9480), 1, anon_sym_pass, - ACTIONS(9335), 1, + ACTIONS(9750), 1, sym__newline, - ACTIONS(9337), 1, + ACTIONS(9752), 1, sym__indent, - STATE(3805), 1, - sym_extern_suite, - STATE(3931), 1, + STATE(1273), 1, sym_pass_statement, + STATE(1284), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161330] = 5, + ACTIONS(9205), 1, + anon_sym_DOT, + ACTIONS(9756), 1, + anon_sym_COLON, + ACTIONS(9758), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9754), 2, + sym__newline, + anon_sym_SEMI, + [161348] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9760), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161368] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9762), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142386] = 4, - ACTIONS(9544), 1, - anon_sym_EQ, + [161388] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9764), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(9546), 2, - anon_sym_not, - anon_sym_or, - [142402] = 6, - ACTIONS(9413), 1, + [161408] = 6, + ACTIONS(9480), 1, anon_sym_pass, - ACTIONS(9415), 1, + ACTIONS(9750), 1, sym__newline, - ACTIONS(9417), 1, + ACTIONS(9752), 1, sym__indent, - STATE(3466), 1, + STATE(1273), 1, sym_pass_statement, - STATE(3469), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [142422] = 6, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(9177), 1, - anon_sym_LPAREN, - ACTIONS(9548), 1, - anon_sym_EQ, - ACTIONS(9550), 1, - anon_sym_RBRACK, - STATE(6290), 1, - aux_sym_type_index_repeat1, + STATE(1291), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142442] = 4, - ACTIONS(9242), 1, - anon_sym_PIPE, - STATE(5404), 1, - aux_sym_union_pattern_repeat1, + [161428] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9766), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9066), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [142458] = 6, - ACTIONS(7695), 1, + [161448] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(7697), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(7699), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(7701), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9552), 1, - sym__newline, + ACTIONS(9768), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142478] = 3, - STATE(5404), 1, + [161468] = 4, + ACTIONS(9708), 1, + anon_sym_PIPE, + STATE(5728), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 4, - anon_sym_RPAREN, + ACTIONS(9131), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [161484] = 3, + STATE(5728), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9153), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [142492] = 4, - ACTIONS(9554), 1, + anon_sym_RBRACE, + [161498] = 4, + ACTIONS(9770), 1, anon_sym_PIPE, - STATE(5480), 1, + STATE(5753), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 3, - anon_sym_RPAREN, + ACTIONS(9153), 3, 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, + anon_sym_RBRACE, + [161514] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9773), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142528] = 6, - ACTIONS(8202), 1, + [161534] = 6, + ACTIONS(8369), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(9557), 1, + ACTIONS(9775), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142548] = 4, - ACTIONS(9285), 1, - anon_sym_PIPE, - STATE(5310), 1, + [161554] = 3, + STATE(5695), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8905), 3, + ACTIONS(9153), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [142564] = 2, + anon_sym_PIPE, + [161568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9085), 5, - anon_sym_DOT, + ACTIONS(7574), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [142576] = 6, - ACTIONS(8067), 1, - anon_sym_with, - ACTIONS(8069), 1, - anon_sym_nogil, - ACTIONS(8319), 1, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [161580] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9777), 1, anon_sym_COLON, - ACTIONS(8321), 1, - sym__newline, - STATE(6586), 1, - sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142596] = 6, - ACTIONS(9271), 1, + [161600] = 6, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9273), 1, + ACTIONS(9530), 1, sym__newline, - ACTIONS(9275), 1, + ACTIONS(9532), 1, sym__indent, - STATE(1306), 1, - sym_struct_suite, - STATE(1320), 1, + STATE(3680), 1, sym_pass_statement, + STATE(3808), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161620] = 4, + ACTIONS(9779), 1, + anon_sym_PIPE, + STATE(5760), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142616] = 6, - ACTIONS(8360), 1, + ACTIONS(9153), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8362), 1, + [161636] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(8364), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(8366), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9559), 1, - anon_sym_RPAREN, + ACTIONS(9782), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142636] = 6, - ACTIONS(9187), 1, - anon_sym_pass, - ACTIONS(9189), 1, - sym__newline, - ACTIONS(9191), 1, - sym__indent, - STATE(1519), 1, - sym_extern_suite, - STATE(1965), 1, - sym_pass_statement, + [161656] = 4, + STATE(2478), 1, + sym_for_from_relation, 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(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161672] = 6, + ACTIONS(9536), 1, + anon_sym_LBRACK, + ACTIONS(9784), 1, + anon_sym_COLON, + ACTIONS(9786), 1, + anon_sym_nogil, + ACTIONS(9788), 1, + sym__newline, + STATE(6181), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142676] = 2, + [161692] = 5, + ACTIONS(9790), 1, + sym_identifier, + ACTIONS(9792), 1, + anon_sym_COLON, + ACTIONS(9796), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9185), 5, - anon_sym_COMMA, + ACTIONS(9794), 2, + anon_sym_class, + anon_sym_struct, + [161710] = 6, + ACTIONS(8371), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [142688] = 2, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9798), 1, + anon_sym_as, + ACTIONS(9800), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7786), 5, - anon_sym_COMMA, + [161730] = 5, + ACTIONS(9802), 1, + sym_identifier, + ACTIONS(9804), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [142700] = 2, + ACTIONS(9808), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7300), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_not, + ACTIONS(9806), 2, + anon_sym_class, + anon_sym_struct, + [161748] = 6, + ACTIONS(9810), 1, + anon_sym_LBRACE, + ACTIONS(9813), 1, + anon_sym_RBRACE, + ACTIONS(9815), 1, + aux_sym_format_specifier_token1, + STATE(5767), 1, + aux_sym_format_specifier_repeat1, + STATE(6112), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [161768] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, anon_sym_or, - [142712] = 5, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(9565), 1, - anon_sym_EQ, - STATE(6053), 1, - sym_string, + ACTIONS(9818), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9563), 2, - sym__newline, - anon_sym_COMMA, - [142730] = 2, + [161788] = 4, + STATE(2265), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9567), 5, - anon_sym_COMMA, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161804] = 6, + ACTIONS(8369), 1, anon_sym_as, + ACTIONS(8371), 1, anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9820), 1, anon_sym_COLON, - anon_sym_PIPE, - [142742] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9569), 5, - anon_sym_COMMA, + [161824] = 6, + ACTIONS(8369), 1, anon_sym_as, + ACTIONS(8371), 1, anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9822), 1, anon_sym_COLON, - anon_sym_PIPE, - [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, - [142774] = 2, + [161844] = 3, + ACTIONS(9824), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7316), 5, - anon_sym_RPAREN, + ACTIONS(8367), 4, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - [142786] = 6, - ACTIONS(8204), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [161858] = 6, + ACTIONS(8371), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8373), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8375), 1, anon_sym_or, - ACTIONS(9451), 1, + ACTIONS(9798), 1, anon_sym_as, - ACTIONS(9571), 1, + ACTIONS(9826), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142806] = 6, - ACTIONS(9171), 1, + [161878] = 4, + ACTIONS(9828), 1, + anon_sym_COMMA, + STATE(5774), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8309), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [161894] = 6, + ACTIONS(9480), 1, anon_sym_pass, - ACTIONS(9173), 1, + ACTIONS(9482), 1, sym__newline, - ACTIONS(9175), 1, + ACTIONS(9484), 1, sym__indent, - STATE(3809), 1, - sym_struct_suite, - STATE(3899), 1, + STATE(1263), 1, sym_pass_statement, + STATE(1264), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142826] = 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(9573), 1, - anon_sym_RPAREN, + [161914] = 4, + ACTIONS(9469), 1, + anon_sym_PIPE, + STATE(5828), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142846] = 6, - ACTIONS(9199), 1, + ACTIONS(9269), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9575), 1, - anon_sym_else, + anon_sym_RBRACK, + [161930] = 6, + ACTIONS(9536), 1, + anon_sym_LBRACK, + ACTIONS(9831), 1, + anon_sym_COLON, + ACTIONS(9833), 1, + anon_sym_nogil, + ACTIONS(9835), 1, + sym__newline, + STATE(6457), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142866] = 2, + [161950] = 6, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(9837), 1, + anon_sym_EQ, + ACTIONS(9839), 1, + anon_sym_RBRACE, + ACTIONS(9841), 1, + sym_type_conversion, + STATE(7139), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [161970] = 5, + ACTIONS(9843), 1, + sym_identifier, + ACTIONS(9845), 1, + anon_sym_COLON, + ACTIONS(9849), 1, + sym__newline, 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, + ACTIONS(9847), 2, + anon_sym_class, + anon_sym_struct, + [161988] = 6, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9189), 1, + ACTIONS(9584), 1, sym__newline, - ACTIONS(9191), 1, + ACTIONS(9586), 1, sym__indent, - STATE(1839), 1, + STATE(1497), 1, sym_extern_suite, - STATE(1965), 1, + STATE(1546), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142914] = 6, - ACTIONS(9199), 1, + [162008] = 6, + ACTIONS(9552), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(9554), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(9558), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(9560), 1, anon_sym_or, - ACTIONS(9577), 1, + ACTIONS(9851), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142934] = 6, - ACTIONS(9199), 1, + [162028] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(9201), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(9205), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(9207), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9579), 1, - anon_sym_else, + ACTIONS(9853), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [142954] = 3, - STATE(5468), 1, - aux_sym_union_pattern_repeat1, + [162048] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9855), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 4, - anon_sym_COMMA, + [162068] = 6, + ACTIONS(9552), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [142968] = 4, - ACTIONS(9581), 1, - anon_sym_PIPE, - STATE(5508), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9857), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 3, + [162088] = 4, + ACTIONS(9859), 1, anon_sym_COMMA, - anon_sym_as, - 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, + STATE(5774), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143004] = 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(9584), 1, + ACTIONS(2581), 3, sym__newline, + anon_sym_SEMI, + anon_sym_from, + [162104] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143024] = 6, - ACTIONS(9413), 1, + ACTIONS(9287), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [162116] = 6, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9415), 1, + ACTIONS(9604), 1, sym__newline, - ACTIONS(9417), 1, + ACTIONS(9606), 1, sym__indent, - STATE(3466), 1, + STATE(4058), 1, sym_pass_statement, - STATE(3627), 1, + STATE(4083), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143044] = 2, + [162136] = 4, + STATE(2317), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9185), 5, - anon_sym_RPAREN, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162152] = 4, + STATE(2321), 1, + sym_for_from_relation, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162168] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7613), 5, 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, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + [162180] = 6, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(9861), 1, + anon_sym_EQ, + ACTIONS(9863), 1, + anon_sym_RBRACK, + STATE(6497), 1, + aux_sym_type_index_repeat1, 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, + [162200] = 6, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9604), 1, sym__newline, - STATE(6486), 1, - sym_gil_spec, + ACTIONS(9606), 1, + sym__indent, + STATE(4058), 1, + sym_pass_statement, + STATE(4110), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143096] = 5, - ACTIONS(9590), 1, - sym_identifier, - ACTIONS(9592), 1, - anon_sym_COLON, - ACTIONS(9596), 1, + [162220] = 6, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(9750), 1, sym__newline, + ACTIONS(9752), 1, + sym__indent, + STATE(1273), 1, + sym_pass_statement, + STATE(1274), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9594), 2, - anon_sym_class, - anon_sym_struct, - [143114] = 2, + [162240] = 4, + STATE(2347), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9333), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [143126] = 2, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162256] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9598), 5, + ACTIONS(9865), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [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, + [162268] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8509), 1, + anon_sym_COLON, + ACTIONS(8511), 1, + sym__newline, + STATE(6827), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162288] = 4, + STATE(2359), 1, + sym_for_from_relation, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143158] = 2, + ACTIONS(9562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(9564), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [162304] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9604), 5, + ACTIONS(9867), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [143170] = 4, - ACTIONS(9608), 1, - anon_sym_DOT, - STATE(5520), 1, - aux_sym_import_prefix_repeat1, + [162316] = 6, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9604), 1, + sym__newline, + ACTIONS(9606), 1, + sym__indent, + STATE(4058), 1, + sym_pass_statement, + STATE(4059), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [162336] = 6, + ACTIONS(9536), 1, + anon_sym_LBRACK, + ACTIONS(9869), 1, anon_sym_COLON, - ACTIONS(8352), 1, + ACTIONS(9871), 1, + anon_sym_nogil, + ACTIONS(9873), 1, sym__newline, - STATE(6336), 1, - sym_gil_spec, + STATE(6368), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143206] = 6, - ACTIONS(9199), 1, - anon_sym_as, - ACTIONS(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, + [162356] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7568), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_not, anon_sym_or, - ACTIONS(9611), 1, - anon_sym_else, + [162368] = 6, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(9482), 1, + sym__newline, + ACTIONS(9484), 1, + sym__indent, + STATE(1263), 1, + sym_pass_statement, + STATE(1293), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143226] = 2, + [162388] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9613), 5, + ACTIONS(9875), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [143238] = 5, - ACTIONS(8981), 1, - anon_sym_DOT, - ACTIONS(9258), 1, + [162400] = 5, + ACTIONS(9877), 1, + sym_identifier, + ACTIONS(9879), 1, anon_sym_COLON, - ACTIONS(9260), 1, - anon_sym_PIPE, + ACTIONS(9883), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9157), 2, - sym__newline, - anon_sym_SEMI, - [143256] = 6, - ACTIONS(8202), 1, + ACTIONS(9881), 2, + anon_sym_class, + anon_sym_struct, + [162418] = 6, + ACTIONS(8737), 1, anon_sym_as, - ACTIONS(8204), 1, + ACTIONS(8739), 1, anon_sym_if, - ACTIONS(8206), 1, + ACTIONS(8741), 1, anon_sym_and, - ACTIONS(8208), 1, + ACTIONS(8743), 1, anon_sym_or, - ACTIONS(9615), 1, - anon_sym_COLON, + ACTIONS(9885), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [162438] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9887), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143296] = 6, - ACTIONS(8067), 1, + [162458] = 6, + ACTIONS(8383), 1, anon_sym_with, - ACTIONS(8069), 1, + ACTIONS(8385), 1, anon_sym_nogil, - ACTIONS(9621), 1, + ACTIONS(8545), 1, anon_sym_COLON, - ACTIONS(9623), 1, + ACTIONS(8547), 1, sym__newline, - STATE(6429), 1, + STATE(6875), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143316] = 6, - ACTIONS(9413), 1, + [162478] = 6, + ACTIONS(9480), 1, anon_sym_pass, - ACTIONS(9415), 1, + ACTIONS(9750), 1, sym__newline, - ACTIONS(9417), 1, + ACTIONS(9752), 1, sym__indent, - STATE(3466), 1, + STATE(1273), 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(9201), 1, - anon_sym_if, - ACTIONS(9205), 1, - anon_sym_and, - ACTIONS(9207), 1, - anon_sym_or, - ACTIONS(9625), 1, - anon_sym_else, + STATE(1301), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143356] = 2, + [162498] = 6, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9659), 1, + sym__newline, + ACTIONS(9661), 1, + sym__indent, + STATE(4071), 1, + sym_pass_statement, + STATE(4086), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9627), 5, + [162518] = 5, + ACTIONS(9891), 1, anon_sym_COMMA, + ACTIONS(9893), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [143368] = 4, - ACTIONS(9631), 1, - anon_sym_COMMA, - STATE(5578), 1, - aux_sym__patterns_repeat1, + STATE(5868), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9629), 2, - anon_sym_from, - anon_sym_in, - [143383] = 5, - ACTIONS(9633), 1, - anon_sym_RPAREN, - ACTIONS(9635), 1, - anon_sym_COMMA, - ACTIONS(9637), 1, - anon_sym_as, - STATE(5977), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9889), 2, + sym__newline, + anon_sym_SEMI, + [162536] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8681), 1, + anon_sym_COLON, + ACTIONS(8683), 1, + sym__newline, + STATE(6809), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143400] = 2, + [162556] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9359), 4, + ACTIONS(9490), 5, + anon_sym_RPAREN, anon_sym_COMMA, - 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, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [162568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143428] = 5, - ACTIONS(9641), 1, + ACTIONS(9895), 5, anon_sym_COMMA, - ACTIONS(9643), 1, anon_sym_as, - ACTIONS(9645), 1, - anon_sym_RBRACK, - STATE(5980), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [143445] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [162580] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 4, + ACTIONS(9897), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [143456] = 2, + [162592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9613), 4, - anon_sym_RPAREN, + ACTIONS(9899), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143467] = 2, + [162604] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9604), 4, + ACTIONS(9901), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143478] = 2, + [162616] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9613), 4, + ACTIONS(9903), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143489] = 2, + [162628] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9228), 4, + ACTIONS(9905), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143500] = 4, - ACTIONS(9647), 1, - anon_sym_COMMA, - STATE(5541), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6749), 2, - anon_sym_from, - anon_sym_in, - [143515] = 2, + [162640] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9254), 4, + ACTIONS(9907), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143526] = 4, - ACTIONS(9652), 1, - anon_sym_COMMA, - STATE(5680), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9650), 2, - sym__newline, - anon_sym_SEMI, - [143541] = 2, + [162652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9228), 4, - anon_sym_RPAREN, + ACTIONS(9909), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [143552] = 2, + [162664] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(8513), 1, + anon_sym_COLON, + ACTIONS(8515), 1, + sym__newline, + STATE(6692), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9567), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [143563] = 4, - ACTIONS(9654), 1, - anon_sym_COMMA, - STATE(5658), 1, - aux_sym_assert_statement_repeat1, + [162684] = 5, + ACTIONS(9911), 1, + sym_identifier, + ACTIONS(9913), 1, + anon_sym_COLON, + ACTIONS(9917), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2628), 2, + ACTIONS(9915), 2, + anon_sym_class, + anon_sym_struct, + [162702] = 6, + ACTIONS(8383), 1, + anon_sym_with, + ACTIONS(8385), 1, + anon_sym_nogil, + ACTIONS(9919), 1, + anon_sym_COLON, + ACTIONS(9921), 1, sym__newline, - anon_sym_SEMI, - [143578] = 4, - ACTIONS(9658), 1, - anon_sym_EQ, - STATE(6561), 1, - sym_template_default, + STATE(6904), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9656), 2, + [162722] = 6, + ACTIONS(8745), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [143593] = 5, - ACTIONS(9660), 1, + ACTIONS(9496), 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, - [143610] = 2, + ACTIONS(9923), 1, + anon_sym_EQ, + ACTIONS(9925), 1, + anon_sym_RBRACK, + STATE(6139), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9226), 4, - anon_sym_COMMA, + [162742] = 6, + ACTIONS(8369), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [143621] = 4, - ACTIONS(8128), 1, - anon_sym_COMMA, - STATE(5658), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9927), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9666), 2, - sym__newline, - anon_sym_SEMI, - [143636] = 2, + [162762] = 6, + ACTIONS(9552), 1, + anon_sym_as, + ACTIONS(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9929), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9569), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [143647] = 5, - ACTIONS(9637), 1, + [162782] = 6, + ACTIONS(9552), 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(9554), 1, + anon_sym_if, + ACTIONS(9558), 1, + anon_sym_and, + ACTIONS(9560), 1, + anon_sym_or, + ACTIONS(9931), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143664] = 2, + [162802] = 4, + ACTIONS(9469), 1, + anon_sym_PIPE, + STATE(5602), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9254), 4, - anon_sym_RPAREN, + ACTIONS(9123), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [143675] = 5, - ACTIONS(9643), 1, - anon_sym_as, - ACTIONS(9672), 1, - anon_sym_COMMA, - ACTIONS(9674), 1, anon_sym_RBRACK, - STATE(5788), 1, - aux_sym_case_clause_repeat1, + [162818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143692] = 5, - ACTIONS(9177), 1, - anon_sym_LPAREN, - ACTIONS(9676), 1, + ACTIONS(9352), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(9678), 1, + anon_sym_COLON, anon_sym_RBRACK, - STATE(6001), 1, - aux_sym_external_definition_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [143709] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9393), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, 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, - ACTIONS(9680), 2, - sym__newline, - anon_sym_SEMI, - [143735] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9409), 4, - anon_sym_RPAREN, + [162830] = 5, + ACTIONS(9933), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [143746] = 2, + ACTIONS(9935), 1, + anon_sym_RBRACE, + STATE(6412), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9165), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(8367), 2, + anon_sym_COLON, 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, - [143774] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9613), 4, - anon_sym_COMMA, + [162848] = 6, + ACTIONS(7882), 1, anon_sym_as, - 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(7884), 1, + anon_sym_if, + ACTIONS(7886), 1, + anon_sym_and, + ACTIONS(7888), 1, + anon_sym_or, + ACTIONS(9937), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143802] = 4, - ACTIONS(9187), 1, + [162868] = 6, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9692), 1, + ACTIONS(9659), 1, + sym__newline, + ACTIONS(9661), 1, sym__indent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2179), 2, + STATE(4071), 1, sym_pass_statement, - sym__cppclass_suite, - [143817] = 2, + STATE(4091), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [143828] = 4, - ACTIONS(9271), 1, + [162888] = 6, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9694), 1, + ACTIONS(9659), 1, + sym__newline, + ACTIONS(9661), 1, sym__indent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2152), 2, + STATE(4071), 1, sym_pass_statement, - sym__cppclass_suite, - [143843] = 5, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_COMMA, - ACTIONS(9696), 1, - anon_sym_RPAREN, - STATE(6297), 1, - aux_sym_function_pointer_type_repeat1, + STATE(4073), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143860] = 5, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(9698), 1, - anon_sym_COLON, - ACTIONS(9700), 1, + [162908] = 6, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(9482), 1, sym__newline, - STATE(6460), 1, - sym_string, + ACTIONS(9484), 1, + sym__indent, + STATE(1263), 1, + sym_pass_statement, + STATE(1303), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143877] = 2, + [162928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9627), 4, - anon_sym_RPAREN, + ACTIONS(9490), 5, anon_sym_COMMA, - anon_sym_as, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [162940] = 5, + ACTIONS(9205), 1, + anon_sym_DOT, + ACTIONS(9756), 1, + anon_sym_COLON, + ACTIONS(9758), 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, + ACTIONS(9311), 2, sym__newline, anon_sym_SEMI, - [143903] = 4, - ACTIONS(9704), 1, - anon_sym_COMMA, - STATE(5570), 1, - aux_sym_print_statement_repeat1, + [162958] = 6, + ACTIONS(8369), 1, + anon_sym_as, + ACTIONS(8371), 1, + anon_sym_if, + ACTIONS(8373), 1, + anon_sym_and, + ACTIONS(8375), 1, + anon_sym_or, + ACTIONS(9939), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9702), 2, - sym__newline, - anon_sym_SEMI, - [143918] = 2, + [162978] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9567), 4, - anon_sym_RPAREN, + ACTIONS(9161), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [143929] = 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [162990] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9363), 4, + ACTIONS(9618), 4, + anon_sym_RPAREN, 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, - [143957] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4595), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [143968] = 2, + [163001] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(8234), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [163012] = 5, + ACTIONS(9941), 1, + anon_sym_RPAREN, + ACTIONS(9943), 1, anon_sym_COMMA, - ACTIONS(9713), 1, - anon_sym_RBRACK, - STATE(5729), 1, - aux_sym_external_definition_repeat1, + ACTIONS(9945), 1, + anon_sym_as, + STATE(6555), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [143996] = 4, - ACTIONS(9271), 1, - anon_sym_pass, - ACTIONS(9694), 1, - sym__indent, + [163029] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(9947), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [163040] = 3, + ACTIONS(9246), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, - anon_sym_from, - anon_sym_in, - [144026] = 4, - ACTIONS(9717), 1, + ACTIONS(9949), 3, anon_sym_COMMA, - STATE(5666), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2628), 2, + anon_sym_if, 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, - ACTIONS(9719), 2, - anon_sym_from, - anon_sym_in, - [144056] = 2, + [163053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9471), 4, + ACTIONS(9616), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [144067] = 2, + [163064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9598), 4, - anon_sym_RPAREN, + ACTIONS(9951), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [144078] = 5, - ACTIONS(9637), 1, - anon_sym_as, - 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, - [144095] = 5, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(9725), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(9727), 1, - sym__newline, - STATE(6510), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [144112] = 2, + [163075] = 4, + ACTIONS(9602), 1, + anon_sym_pass, + ACTIONS(9953), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9598), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [144123] = 5, - ACTIONS(9177), 1, - anon_sym_LPAREN, - ACTIONS(9676), 1, + STATE(4129), 2, + sym_pass_statement, + sym__cppclass_suite, + [163090] = 4, + ACTIONS(9955), 1, anon_sym_COMMA, - ACTIONS(9729), 1, - anon_sym_RBRACK, - STATE(5882), 1, - aux_sym_external_definition_repeat1, + STATE(5847), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144140] = 2, + ACTIONS(9949), 2, + anon_sym_if, + anon_sym_COLON, + [163105] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9367), 4, + ACTIONS(9624), 4, anon_sym_COMMA, anon_sym_as, 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, - [144168] = 5, - ACTIONS(9688), 1, + [163116] = 5, + ACTIONS(9958), 1, anon_sym_case, - ACTIONS(9735), 1, + ACTIONS(9960), 1, sym__dedent, - STATE(5562), 1, + STATE(5972), 1, aux_sym__match_block_repeat1, - STATE(6454), 1, + STATE(6646), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144185] = 2, + [163133] = 4, + ACTIONS(9964), 1, + anon_sym_COMMA, + STATE(5850), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9962), 2, + sym__newline, + anon_sym_SEMI, + [163148] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9569), 4, + ACTIONS(9620), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [144196] = 4, - ACTIONS(9271), 1, - anon_sym_pass, - ACTIONS(9694), 1, - sym__indent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2087), 2, - sym_pass_statement, - sym__cppclass_suite, - [144211] = 2, + [163159] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9393), 4, + ACTIONS(9865), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [144222] = 5, - ACTIONS(4549), 1, + [163170] = 4, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(9737), 1, - anon_sym_LPAREN, - STATE(6516), 1, - sym_parameters, - STATE(6518), 1, - sym_type_parameter, + STATE(4826), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144239] = 3, + ACTIONS(7470), 2, + anon_sym_DOT, + sym_identifier, + [163185] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8376), 2, + ACTIONS(9622), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8652), 2, - anon_sym_not, - anon_sym_or, - [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, - [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, - anon_sym_SEMI, - [144284] = 4, - ACTIONS(9413), 1, - anon_sym_pass, - ACTIONS(9747), 1, - sym__indent, + anon_sym_as, + anon_sym_PIPE, + [163196] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3733), 2, - sym_pass_statement, - sym__cppclass_suite, - [144299] = 4, - ACTIONS(9749), 1, + ACTIONS(9899), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5709), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9743), 2, - sym__newline, - anon_sym_SEMI, - [144314] = 2, + anon_sym_as, + anon_sym_PIPE, + [163207] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9228), 4, + ACTIONS(9624), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [144325] = 4, - ACTIONS(6175), 1, - anon_sym_LBRACK, - STATE(4411), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7133), 2, - anon_sym_DOT, - sym_identifier, - [144340] = 2, + [163218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9307), 4, + ACTIONS(9626), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [144351] = 5, - ACTIONS(4538), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [163229] = 5, + ACTIONS(4530), 1, sym_string_start, - ACTIONS(9751), 1, + ACTIONS(9967), 1, anon_sym_COLON, - ACTIONS(9753), 1, + ACTIONS(9969), 1, sym__newline, - STATE(6537), 1, + STATE(6724), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144368] = 2, + [163246] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 4, + ACTIONS(9626), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [144379] = 2, + [163257] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9429), 4, + ACTIONS(9867), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [144390] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8840), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [144401] = 2, + [163268] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9165), 4, + ACTIONS(9901), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [144412] = 4, - ACTIONS(9631), 1, - anon_sym_COMMA, - STATE(5578), 1, - aux_sym__patterns_repeat1, + [163279] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9755), 2, - anon_sym_from, - anon_sym_in, - [144427] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9465), 4, + ACTIONS(9903), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [144438] = 5, - ACTIONS(9637), 1, - anon_sym_as, - ACTIONS(9757), 1, - anon_sym_RPAREN, - ACTIONS(9759), 1, - anon_sym_COMMA, - STATE(5817), 1, - aux_sym_case_clause_repeat1, + [163290] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144455] = 5, - ACTIONS(9157), 1, - anon_sym_EQ, - ACTIONS(9761), 1, + ACTIONS(9283), 4, anon_sym_DOT, - ACTIONS(9763), 1, anon_sym_COLON, - ACTIONS(9765), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [144472] = 5, - ACTIONS(9433), 1, + [163301] = 5, + ACTIONS(9311), 1, + anon_sym_EQ, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(9973), 1, anon_sym_COLON, - ACTIONS(9767), 1, - anon_sym_RBRACE, - ACTIONS(9769), 1, - sym_type_conversion, - STATE(6883), 1, - sym_format_specifier, + ACTIONS(9975), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144489] = 2, + [163318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9307), 4, + ACTIONS(9875), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [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, + [163329] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144517] = 4, - ACTIONS(9171), 1, - anon_sym_pass, - ACTIONS(9773), 1, - sym__indent, + ACTIONS(8134), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [163340] = 4, + ACTIONS(9979), 1, + anon_sym_COMMA, + STATE(5902), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3937), 2, - sym_pass_statement, - sym__cppclass_suite, - [144532] = 2, + ACTIONS(9977), 2, + sym__newline, + anon_sym_SEMI, + [163355] = 4, + ACTIONS(9981), 1, + anon_sym_COMMA, + STATE(5902), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9351), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [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(9977), 2, + sym__newline, + anon_sym_SEMI, + [163370] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144560] = 2, + ACTIONS(9377), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [163381] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9409), 4, + ACTIONS(9459), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [144571] = 2, + [163392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9429), 4, + ACTIONS(9905), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [144582] = 4, - ACTIONS(9413), 1, - anon_sym_pass, - ACTIONS(9747), 1, - sym__indent, + [163403] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3735), 2, - sym_pass_statement, - sym__cppclass_suite, - [144597] = 4, - ACTIONS(9782), 1, - anon_sym_COMMA, - STATE(5570), 1, - aux_sym_print_statement_repeat1, + ACTIONS(9947), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [163414] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9780), 2, - sym__newline, - anon_sym_SEMI, - [144612] = 2, + ACTIONS(9616), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163425] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9393), 4, + ACTIONS(9618), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [144623] = 2, + anon_sym_RBRACE, + [163436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9409), 4, + ACTIONS(9461), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [144634] = 2, + [163447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9465), 4, + ACTIONS(9620), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [144645] = 4, - ACTIONS(9786), 1, - anon_sym_COLON, - ACTIONS(9788), 1, - anon_sym_EQ, + anon_sym_RBRACE, + [163458] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9784), 2, - anon_sym_RPAREN, + ACTIONS(9622), 4, anon_sym_COMMA, - [144660] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163469] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9341), 4, - anon_sym_RPAREN, + ACTIONS(9624), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [144671] = 2, + anon_sym_RBRACE, + [163480] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9345), 4, + ACTIONS(8234), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [163491] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(9983), 1, anon_sym_RPAREN, + ACTIONS(9985), 1, + anon_sym_COMMA, + STATE(6382), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163508] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9626), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [144682] = 5, - ACTIONS(9639), 1, - sym_identifier, - STATE(5560), 1, - sym_dotted_name, - STATE(5991), 1, - sym_aliased_import, - STATE(6690), 1, - sym__import_list, + anon_sym_RBRACE, + [163519] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144699] = 5, - ACTIONS(4549), 1, + ACTIONS(9987), 4, + sym_string_start, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(9737), 1, + sym_identifier, + [163530] = 4, + ACTIONS(9989), 1, anon_sym_LPAREN, - STATE(6497), 1, - sym_type_parameter, - STATE(6545), 1, - sym_parameters, + ACTIONS(9991), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144716] = 2, + ACTIONS(4325), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [163545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9359), 4, - anon_sym_RPAREN, + ACTIONS(8134), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [163556] = 5, + ACTIONS(9993), 1, anon_sym_COMMA, + ACTIONS(9995), 1, anon_sym_as, - anon_sym_PIPE, - [144727] = 2, + ACTIONS(9997), 1, + anon_sym_RBRACK, + STATE(6387), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9363), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [144738] = 2, + [163573] = 4, + ACTIONS(5881), 1, + sym_identifier, + STATE(6810), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9604), 4, - anon_sym_COMMA, + ACTIONS(9999), 2, + anon_sym_import, + anon_sym_cimport, + [163588] = 3, + ACTIONS(9893), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [144749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9367), 4, - anon_sym_RPAREN, + ACTIONS(10001), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [144760] = 5, - ACTIONS(9660), 1, + [163601] = 5, + ACTIONS(9496), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(9790), 1, + ACTIONS(10005), 1, + anon_sym_RBRACK, + STATE(6612), 1, + aux_sym_external_definition_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163618] = 5, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(10007), 1, anon_sym_RPAREN, - STATE(6294), 1, + ACTIONS(10009), 1, + anon_sym_COMMA, + STATE(6210), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144777] = 4, - ACTIONS(9794), 1, + [163635] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9907), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5570), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [163646] = 4, + ACTIONS(9528), 1, + anon_sym_pass, + ACTIONS(10011), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9792), 2, - sym__newline, - anon_sym_SEMI, - [144792] = 4, - ACTIONS(9652), 1, + STATE(3961), 2, + sym_pass_statement, + sym__cppclass_suite, + [163661] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(10013), 1, + anon_sym_RPAREN, + ACTIONS(10015), 1, anon_sym_COMMA, - STATE(5543), 1, - aux_sym_global_statement_repeat1, + STATE(6417), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9796), 2, - sym__newline, - anon_sym_SEMI, - [144807] = 4, - ACTIONS(9187), 1, + [163678] = 4, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9692), 1, + ACTIONS(9953), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2188), 2, + STATE(4126), 2, sym_pass_statement, sym__cppclass_suite, - [144822] = 2, + [163693] = 5, + ACTIONS(9958), 1, + anon_sym_case, + ACTIONS(10017), 1, + sym__dedent, + STATE(5849), 1, + aux_sym__match_block_repeat1, + STATE(6646), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9226), 4, - anon_sym_RPAREN, + [163710] = 5, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(10003), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [144833] = 5, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(9763), 1, + ACTIONS(10019), 1, + anon_sym_RBRACK, + STATE(6053), 1, + aux_sym_external_definition_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163727] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10021), 1, anon_sym_COLON, - ACTIONS(9765), 1, - anon_sym_PIPE, - ACTIONS(9798), 1, - anon_sym_EQ, + ACTIONS(10023), 1, + sym__newline, + STATE(6858), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163744] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8134), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [163755] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10025), 1, + anon_sym_COLON, + ACTIONS(10027), 1, + sym__newline, + STATE(6888), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144850] = 4, - ACTIONS(9171), 1, + [163772] = 4, + ACTIONS(9602), 1, anon_sym_pass, - ACTIONS(9773), 1, + ACTIONS(9953), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3933), 2, + STATE(4124), 2, sym_pass_statement, 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, + [163787] = 5, + ACTIONS(9085), 1, + sym_identifier, + STATE(5810), 1, + sym_dotted_name, + STATE(5922), 1, + sym_aliased_import, + STATE(6669), 1, + sym__import_list, 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, + [163804] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144899] = 4, - ACTIONS(9177), 1, - anon_sym_LPAREN, - ACTIONS(9804), 1, - anon_sym_EQ, + ACTIONS(9947), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [163815] = 4, + ACTIONS(10031), 1, + anon_sym_COMMA, + STATE(5902), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9802), 2, + ACTIONS(10029), 2, + sym__newline, + anon_sym_SEMI, + [163830] = 4, + ACTIONS(10036), 1, 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, + STATE(5985), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144931] = 2, + ACTIONS(10034), 2, + sym__newline, + anon_sym_SEMI, + [163845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8977), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(9909), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [144942] = 2, + [163856] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9627), 4, + ACTIONS(9895), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [144953] = 4, - ACTIONS(9652), 1, + anon_sym_RBRACE, + [163867] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9897), 4, anon_sym_COMMA, - STATE(5680), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9806), 2, - sym__newline, - anon_sym_SEMI, - [144968] = 2, + ACTIONS(9899), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9471), 4, + ACTIONS(9901), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [144979] = 5, - ACTIONS(9637), 1, + anon_sym_RBRACE, + [163900] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9903), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(9808), 1, - anon_sym_RPAREN, - ACTIONS(9810), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [163911] = 5, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(10003), 1, anon_sym_COMMA, - STATE(6062), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10038), 1, + anon_sym_RBRACK, + STATE(6285), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [144996] = 5, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(9812), 1, - anon_sym_COLON, - ACTIONS(9814), 1, - sym__newline, - STATE(6588), 1, - sym_string, + [163928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145013] = 2, + ACTIONS(9905), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(9907), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [145024] = 5, - ACTIONS(9411), 1, + anon_sym_RBRACE, + [163950] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9909), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [163961] = 5, + ACTIONS(9642), 1, anon_sym_RPAREN, - ACTIONS(9639), 1, + ACTIONS(10040), 1, sym_identifier, - STATE(6124), 1, + STATE(6499), 1, sym_dotted_name, - STATE(6390), 1, + STATE(6812), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145041] = 2, + [163978] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 4, + ACTIONS(9895), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [145052] = 4, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(9816), 1, - anon_sym_EQ, + [163989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 2, - anon_sym_RPAREN, + ACTIONS(9736), 4, anon_sym_COMMA, - [145067] = 5, - ACTIONS(9637), 1, anon_sym_as, - ACTIONS(9818), 1, - anon_sym_RPAREN, - ACTIONS(9820), 1, - anon_sym_COMMA, - STATE(6068), 1, - aux_sym_case_clause_repeat1, + anon_sym_RBRACK, + anon_sym_PIPE, + [164000] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10042), 1, + anon_sym_COLON, + ACTIONS(10044), 1, + sym__newline, + STATE(6776), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145084] = 4, - ACTIONS(9413), 1, + [164017] = 5, + ACTIONS(10040), 1, + sym_identifier, + STATE(5931), 1, + sym_dotted_name, + STATE(6098), 1, + sym_aliased_import, + STATE(7028), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164034] = 4, + ACTIONS(9528), 1, anon_sym_pass, - ACTIONS(9747), 1, + ACTIONS(10011), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3773), 2, + STATE(3965), 2, sym_pass_statement, sym__cppclass_suite, - [145099] = 5, - ACTIONS(9536), 1, - anon_sym_RPAREN, - ACTIONS(9639), 1, + [164049] = 5, + ACTIONS(10040), 1, sym_identifier, - STATE(6124), 1, + STATE(5931), 1, sym_dotted_name, - STATE(6390), 1, + STATE(6098), 1, sym_aliased_import, + STATE(7023), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [164066] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145133] = 4, - ACTIONS(9822), 1, + ACTIONS(9736), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5658), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [164077] = 4, + ACTIONS(9891), 1, + anon_sym_COMMA, + STATE(5867), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 2, + ACTIONS(9889), 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, + [164092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145165] = 5, - ACTIONS(9637), 1, - anon_sym_as, - ACTIONS(9827), 1, - anon_sym_RPAREN, - ACTIONS(9829), 1, + ACTIONS(9897), 4, anon_sym_COMMA, - STATE(6307), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [164103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145182] = 5, - ACTIONS(9662), 1, + ACTIONS(9649), 4, 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(9833), 1, - anon_sym_RBRACE, - ACTIONS(9835), 1, - sym_type_conversion, - STATE(6631), 1, - sym_format_specifier, + anon_sym_as, + anon_sym_PIPE, + [164114] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145216] = 3, - ACTIONS(8963), 1, + ACTIONS(9651), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + [164125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9837), 3, + ACTIONS(9653), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [145229] = 2, + anon_sym_as, + anon_sym_PIPE, + [164136] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9165), 4, + ACTIONS(9655), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [145240] = 2, + [164147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9839), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(9371), 4, + anon_sym_DOT, anon_sym_COLON, - [145251] = 4, - ACTIONS(9841), 1, + anon_sym_EQ, + anon_sym_PIPE, + [164158] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(10046), 1, + anon_sym_RPAREN, + ACTIONS(10048), 1, anon_sym_COMMA, - STATE(5666), 1, - aux_sym_assert_statement_repeat1, + STATE(6346), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7953), 2, - anon_sym_COLON, - anon_sym_by, - [145266] = 2, + [164175] = 5, + ACTIONS(9995), 1, + anon_sym_as, + ACTIONS(10050), 1, + anon_sym_COMMA, + ACTIONS(10052), 1, + anon_sym_RBRACK, + STATE(6355), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9341), 4, + [164192] = 5, + ACTIONS(9889), 1, + anon_sym_RPAREN, + ACTIONS(10054), 1, anon_sym_COMMA, + ACTIONS(10056), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [145277] = 2, + STATE(6215), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164209] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9345), 4, + ACTIONS(9865), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [145288] = 2, + [164220] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9349), 4, + ACTIONS(9867), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [145299] = 2, + [164231] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9359), 4, + ACTIONS(9875), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [145310] = 2, + [164242] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9254), 4, + ACTIONS(9459), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [145321] = 2, + [164253] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9363), 4, + ACTIONS(9461), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [145332] = 2, + [164264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9598), 4, + ACTIONS(9899), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [145343] = 4, - ACTIONS(9844), 1, - anon_sym_COMMA, - STATE(5674), 1, - aux_sym_case_clause_repeat1, + [164275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9837), 2, + ACTIONS(8234), 4, anon_sym_if, - 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, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164286] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145375] = 5, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(9847), 1, - anon_sym_COLON, - ACTIONS(9849), 1, - sym__newline, - STATE(6471), 1, - sym_string, + ACTIONS(9895), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [164297] = 5, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6649), 1, + sym_parameters, + STATE(6652), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145392] = 2, + [164314] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9604), 4, - anon_sym_RPAREN, + ACTIONS(9901), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [145403] = 4, - ACTIONS(9652), 1, + [164325] = 5, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(10009), 1, anon_sym_COMMA, - STATE(5646), 1, - aux_sym_global_statement_repeat1, + ACTIONS(10060), 1, + anon_sym_RPAREN, + STATE(6502), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9851), 2, - sym__newline, - anon_sym_SEMI, - [145418] = 2, + [164342] = 4, + ACTIONS(9528), 1, + anon_sym_pass, + ACTIONS(10011), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3970), 2, + sym_pass_statement, + sym__cppclass_suite, + [164357] = 4, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(10062), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2188), 2, + sym_pass_statement, + sym__cppclass_suite, + [164372] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9367), 4, + ACTIONS(9903), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [145429] = 4, - ACTIONS(9855), 1, - anon_sym_COMMA, - STATE(5680), 1, - aux_sym_global_statement_repeat1, + [164383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9853), 2, - sym__newline, - anon_sym_SEMI, - [145444] = 4, - ACTIONS(8128), 1, + ACTIONS(8841), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(8847), 2, + anon_sym_not, + anon_sym_or, + [164396] = 4, + ACTIONS(10064), 1, anon_sym_COMMA, - STATE(5658), 1, + STATE(5959), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9858), 2, + ACTIONS(2789), 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, - [145476] = 5, - ACTIONS(9637), 1, - anon_sym_as, - ACTIONS(9862), 1, - anon_sym_RPAREN, - ACTIONS(9864), 1, - anon_sym_COMMA, - STATE(5782), 1, - aux_sym_case_clause_repeat1, + [164411] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10066), 1, + anon_sym_COLON, + ACTIONS(10068), 1, + sym__newline, + STATE(6828), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145493] = 4, - ACTIONS(9187), 1, + [164428] = 4, + ACTIONS(9474), 1, anon_sym_pass, - ACTIONS(9692), 1, + ACTIONS(10070), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2183), 2, + STATE(2066), 2, sym_pass_statement, sym__cppclass_suite, - [145508] = 2, + [164443] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9341), 4, + ACTIONS(9736), 4, anon_sym_COMMA, anon_sym_as, - 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, - [145536] = 2, + anon_sym_RBRACE, + [164454] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9569), 4, + ACTIONS(9905), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [145547] = 2, + [164465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9307), 4, - anon_sym_RPAREN, + ACTIONS(9907), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [145558] = 2, + [164476] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10072), 1, + anon_sym_COLON, + ACTIONS(10074), 1, + sym__newline, + STATE(6897), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164493] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9345), 4, + ACTIONS(9909), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [145569] = 2, + [164504] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(10076), 1, + anon_sym_RPAREN, + ACTIONS(10078), 1, + anon_sym_COMMA, + STATE(6388), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9351), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [164521] = 5, + ACTIONS(9995), 1, anon_sym_as, - anon_sym_PIPE, - [145580] = 3, + ACTIONS(10080), 1, + anon_sym_COMMA, + ACTIONS(10082), 1, + anon_sym_RBRACK, + STATE(6390), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8071), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(9870), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [145593] = 2, + [164538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9429), 4, + ACTIONS(8841), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [145604] = 4, - ACTIONS(9631), 1, + ACTIONS(8859), 2, + anon_sym_not, + anon_sym_or, + [164551] = 5, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(10003), 1, anon_sym_COMMA, - STATE(5578), 1, - aux_sym__patterns_repeat1, + ACTIONS(10084), 1, + anon_sym_RBRACK, + STATE(6560), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9872), 2, - anon_sym_from, - anon_sym_in, - [145619] = 3, + [164568] = 4, + ACTIONS(10086), 1, + anon_sym_COMMA, + STATE(5959), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8376), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(8382), 2, - anon_sym_not, - anon_sym_or, - [145632] = 2, + ACTIONS(8309), 2, + sym__newline, + anon_sym_SEMI, + [164583] = 5, + ACTIONS(9574), 1, + anon_sym_RPAREN, + ACTIONS(10040), 1, + sym_identifier, + STATE(6499), 1, + sym_dotted_name, + STATE(6812), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9567), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [145643] = 2, + [164600] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9465), 4, + ACTIONS(9897), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [145654] = 4, - ACTIONS(9171), 1, + [164611] = 4, + ACTIONS(9480), 1, anon_sym_pass, - ACTIONS(9773), 1, + ACTIONS(10062), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3932), 2, + STATE(2199), 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, + [164626] = 4, + ACTIONS(10091), 1, + anon_sym_EQ, + STATE(6777), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145686] = 3, - ACTIONS(9281), 1, - anon_sym_as, + ACTIONS(10089), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [164641] = 5, + ACTIONS(9958), 1, + anon_sym_case, + ACTIONS(10093), 1, + sym__dedent, + STATE(5972), 1, + aux_sym__match_block_repeat1, + STATE(6646), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 3, - sym__newline, - anon_sym_SEMI, + [164658] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9616), 4, anon_sym_COMMA, - [145699] = 5, - ACTIONS(9660), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [164669] = 5, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(10009), 1, anon_sym_COMMA, - ACTIONS(9880), 1, + ACTIONS(10095), 1, anon_sym_RPAREN, - STATE(5784), 1, + STATE(6461), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145716] = 2, + [164686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9226), 4, + ACTIONS(9269), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [145727] = 2, + anon_sym_if, + anon_sym_COLON, + [164697] = 5, + ACTIONS(9574), 1, + anon_sym_RPAREN, + ACTIONS(10040), 1, + sym_identifier, + STATE(6499), 1, + sym_dotted_name, + STATE(6812), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164714] = 5, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(10097), 1, + anon_sym_RBRACE, + ACTIONS(10099), 1, + sym_type_conversion, + STATE(6967), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9882), 4, + ACTIONS(10101), 4, sym__newline, anon_sym_COLON, anon_sym_with, anon_sym_nogil, - [145738] = 2, + [164742] = 5, + ACTIONS(9958), 1, + anon_sym_case, + ACTIONS(10103), 1, + sym__dedent, + STATE(5964), 1, + aux_sym__match_block_repeat1, + STATE(6646), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164759] = 5, + ACTIONS(10105), 1, + anon_sym_case, + ACTIONS(10108), 1, + sym__dedent, + STATE(5972), 1, + aux_sym__match_block_repeat1, + STATE(6646), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164776] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10110), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164787] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10112), 1, + anon_sym_COLON, + ACTIONS(10114), 1, + sym__newline, + STATE(6893), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164804] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9349), 4, + ACTIONS(9618), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [145749] = 2, + [164815] = 4, + ACTIONS(8539), 1, + anon_sym_COMMA, + STATE(5959), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9627), 4, - anon_sym_COMMA, + ACTIONS(10116), 2, + sym__newline, + anon_sym_SEMI, + [164830] = 5, + ACTIONS(9945), 1, anon_sym_as, - anon_sym_PIPE, + ACTIONS(10118), 1, + anon_sym_RPAREN, + ACTIONS(10120), 1, + anon_sym_COMMA, + STATE(6557), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164847] = 5, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(10122), 1, anon_sym_RBRACE, - [145760] = 2, + ACTIONS(10124), 1, + sym_type_conversion, + STATE(7065), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9039), 4, - anon_sym_DOT, + [164864] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8367), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [145771] = 2, + ACTIONS(10126), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164877] = 5, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10128), 1, + anon_sym_COLON, + ACTIONS(10130), 1, + sym__newline, + STATE(6764), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9884), 4, - sym_string_start, + [164894] = 4, + ACTIONS(9496), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [145782] = 2, + ACTIONS(10134), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9471), 4, + ACTIONS(10132), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [145793] = 4, - ACTIONS(5784), 1, - sym_identifier, - STATE(6326), 1, - sym_dotted_name, + anon_sym_RBRACK, + [164909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9886), 2, - anon_sym_import, - anon_sym_cimport, - [145808] = 4, - ACTIONS(9890), 1, + ACTIONS(10110), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [164920] = 4, + ACTIONS(10036), 1, anon_sym_COMMA, - STATE(5709), 1, - aux_sym__import_list_repeat1, + STATE(5850), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9888), 2, + ACTIONS(10136), 2, sym__newline, anon_sym_SEMI, - [145823] = 4, - ACTIONS(9893), 1, + [164935] = 5, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6687), 1, + sym_parameters, + STATE(6853), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164952] = 4, + ACTIONS(10036), 1, anon_sym_COMMA, - STATE(5658), 1, - aux_sym_assert_statement_repeat1, + STATE(5850), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2781), 2, + ACTIONS(10138), 2, sym__newline, anon_sym_SEMI, - [145838] = 2, + [164967] = 5, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6698), 1, + sym_parameters, + STATE(6857), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9349), 4, + [164984] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(10140), 1, anon_sym_RPAREN, + ACTIONS(10142), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [145849] = 3, - ACTIONS(9897), 1, - anon_sym_EQ, + STATE(6462), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9895), 2, - sym__newline, + [165001] = 5, + ACTIONS(10009), 1, anon_sym_COMMA, - [145861] = 4, - ACTIONS(9899), 1, + ACTIONS(10095), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, anon_sym_LPAREN, - ACTIONS(9901), 1, - anon_sym_COLON, - ACTIONS(9903), 1, - sym__newline, + STATE(6461), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145875] = 4, - ACTIONS(6347), 1, - anon_sym_COLON, - ACTIONS(9905), 1, - anon_sym_COMMA, - STATE(6049), 1, - aux_sym__parameters_repeat1, + [165018] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145889] = 4, - ACTIONS(7469), 1, + ACTIONS(9649), 4, anon_sym_COMMA, - ACTIONS(9907), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165029] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145903] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(9909), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10110), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [165040] = 5, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(9973), 1, + anon_sym_COLON, + ACTIONS(9975), 1, + anon_sym_PIPE, + ACTIONS(10146), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145917] = 4, - ACTIONS(9181), 1, - anon_sym_RBRACK, - ACTIONS(9911), 1, - anon_sym_COMMA, - STATE(5779), 1, - aux_sym_type_index_repeat2, + [165057] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145931] = 4, - ACTIONS(7469), 1, + ACTIONS(9651), 4, anon_sym_COMMA, - ACTIONS(9913), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165068] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145945] = 4, - ACTIONS(7469), 1, + ACTIONS(9653), 4, anon_sym_COMMA, - ACTIONS(9915), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145959] = 4, - ACTIONS(7330), 1, - anon_sym_COMMA, - ACTIONS(7342), 1, - anon_sym_RBRACE, - STATE(5902), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10148), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [165090] = 4, + ACTIONS(9480), 1, + anon_sym_pass, + ACTIONS(10062), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145973] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - anon_sym_COLON, - ACTIONS(9921), 1, - sym__newline, + STATE(2061), 2, + sym_pass_statement, + sym__cppclass_suite, + [165105] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [145987] = 4, - ACTIONS(7469), 1, + ACTIONS(9655), 4, anon_sym_COMMA, - ACTIONS(9923), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165116] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146001] = 4, - ACTIONS(7469), 1, + ACTIONS(9620), 4, anon_sym_COMMA, - ACTIONS(9925), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146015] = 4, - ACTIONS(2628), 1, - anon_sym_COLON, - ACTIONS(9927), 1, + ACTIONS(9865), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(6091), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [165138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146029] = 4, - ACTIONS(9929), 1, - anon_sym_COLON, - ACTIONS(9931), 1, + ACTIONS(9867), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(6255), 1, - aux_sym_union_pattern_repeat1, + [165149] = 4, + ACTIONS(10152), 1, + anon_sym_COMMA, + STATE(6009), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146043] = 4, - ACTIONS(9933), 1, + ACTIONS(10150), 2, + sym__newline, + anon_sym_SEMI, + [165164] = 5, + ACTIONS(9496), 1, + anon_sym_LPAREN, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(9935), 1, - anon_sym_RBRACE, - STATE(6076), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10154), 1, + anon_sym_RBRACK, + STATE(6146), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146057] = 4, - ACTIONS(9937), 1, - anon_sym_COMMA, - ACTIONS(9939), 1, + [165181] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4586), 4, + anon_sym_DOT, anon_sym_COLON, - STATE(5765), 1, - aux_sym_with_clause_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [165192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146071] = 3, - ACTIONS(9660), 1, + ACTIONS(9875), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [165203] = 5, + ACTIONS(9989), 1, anon_sym_LPAREN, + ACTIONS(10009), 1, + anon_sym_COMMA, + ACTIONS(10156), 1, + anon_sym_RPAREN, + STATE(6226), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9941), 2, + [165220] = 5, + ACTIONS(9945), 1, + anon_sym_as, + ACTIONS(10158), 1, anon_sym_RPAREN, + ACTIONS(10160), 1, anon_sym_COMMA, - [146083] = 4, - ACTIONS(9676), 1, + STATE(6322), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165237] = 5, + ACTIONS(9995), 1, + anon_sym_as, + ACTIONS(10162), 1, anon_sym_COMMA, - ACTIONS(9943), 1, + ACTIONS(10164), 1, anon_sym_RBRACK, - STATE(5847), 1, - aux_sym_external_definition_repeat1, + STATE(6330), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146097] = 4, - ACTIONS(9945), 1, - anon_sym_LPAREN, - ACTIONS(9947), 1, - anon_sym_COLON, - ACTIONS(9949), 1, - sym__newline, + [165254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146111] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(9951), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7878), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [165265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146125] = 4, - ACTIONS(9953), 1, + ACTIONS(9459), 4, anon_sym_RPAREN, - ACTIONS(9955), 1, anon_sym_COMMA, - STATE(5732), 1, - aux_sym__parameters_repeat1, + anon_sym_as, + anon_sym_PIPE, + [165276] = 4, + ACTIONS(10168), 1, + anon_sym_COMMA, + STATE(6012), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146139] = 4, - ACTIONS(9958), 1, - anon_sym_COLON, - ACTIONS(9960), 1, - anon_sym_nogil, - ACTIONS(9962), 1, + ACTIONS(10166), 2, sym__newline, + anon_sym_SEMI, + [165291] = 4, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(10070), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146153] = 4, - ACTIONS(7469), 1, + STATE(2095), 2, + sym_pass_statement, + sym__cppclass_suite, + [165306] = 4, + ACTIONS(10172), 1, anon_sym_COMMA, - ACTIONS(9964), 1, + STATE(6012), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10170), 2, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [165321] = 4, + ACTIONS(10176), 1, + anon_sym_COMMA, + STATE(6012), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146167] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9966), 1, - anon_sym_COLON, - ACTIONS(9968), 1, + ACTIONS(10174), 2, sym__newline, + anon_sym_SEMI, + [165336] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146181] = 4, - ACTIONS(7469), 1, + ACTIONS(9649), 4, anon_sym_COMMA, - ACTIONS(9970), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [165347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146195] = 4, - ACTIONS(7469), 1, + ACTIONS(9622), 4, anon_sym_COMMA, - ACTIONS(9972), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165358] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9653), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [165369] = 5, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6813), 1, + sym_parameters, + STATE(6830), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146209] = 4, - ACTIONS(7469), 1, + [165386] = 4, + ACTIONS(8539), 1, anon_sym_COMMA, - ACTIONS(9974), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(5959), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146223] = 4, - ACTIONS(9949), 1, + ACTIONS(10179), 2, sym__newline, - ACTIONS(9976), 1, - sym_identifier, - ACTIONS(9978), 1, - anon_sym_COLON, + anon_sym_SEMI, + [165401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146237] = 4, - ACTIONS(7882), 1, - sym__newline, - ACTIONS(8390), 1, + ACTIONS(9461), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + anon_sym_as, + anon_sym_PIPE, + [165412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146251] = 4, - ACTIONS(2628), 1, - anon_sym_RBRACK, - ACTIONS(9980), 1, + ACTIONS(9655), 4, anon_sym_COMMA, - STATE(6052), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [165423] = 4, + ACTIONS(10036), 1, + anon_sym_COMMA, + STATE(5983), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146265] = 4, - ACTIONS(7940), 1, + ACTIONS(10181), 2, sym__newline, - ACTIONS(9982), 1, - anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + anon_sym_SEMI, + [165438] = 4, + ACTIONS(10185), 1, + anon_sym_COLON, + ACTIONS(10187), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146279] = 4, - ACTIONS(7469), 1, + ACTIONS(10183), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9984), 1, + [165453] = 4, + ACTIONS(10189), 1, + anon_sym_COMMA, + STATE(5959), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2581), 2, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [165468] = 4, + ACTIONS(9474), 1, + anon_sym_pass, + ACTIONS(10070), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146293] = 4, - ACTIONS(7469), 1, + STATE(2063), 2, + sym_pass_statement, + sym__cppclass_suite, + [165483] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(9986), 1, + ACTIONS(10191), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146307] = 4, - ACTIONS(7469), 1, + [165497] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(9988), 1, + ACTIONS(10193), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146321] = 4, - ACTIONS(7469), 1, + [165511] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(9990), 1, + ACTIONS(10195), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146335] = 4, - ACTIONS(7469), 1, + [165525] = 4, + ACTIONS(2593), 1, + anon_sym_RBRACE, + ACTIONS(10197), 1, anon_sym_COMMA, - ACTIONS(9992), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146349] = 4, - ACTIONS(7469), 1, + [165539] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(9994), 1, + ACTIONS(10199), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146363] = 4, - ACTIONS(7469), 1, + [165553] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(9996), 1, + ACTIONS(10201), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146377] = 4, - ACTIONS(9998), 1, - anon_sym_COMMA, - ACTIONS(10001), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + [165567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146391] = 4, - ACTIONS(7469), 1, + ACTIONS(5183), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [165577] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10003), 1, + ACTIONS(10203), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146405] = 4, - ACTIONS(9062), 1, + [165591] = 4, + ACTIONS(7825), 1, anon_sym_RPAREN, - ACTIONS(10005), 1, + ACTIONS(7827), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6154), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146419] = 4, - ACTIONS(7469), 1, + [165605] = 4, + ACTIONS(7807), 1, + anon_sym_RPAREN, + ACTIONS(7809), 1, anon_sym_COMMA, - ACTIONS(10008), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6043), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146433] = 4, - ACTIONS(2399), 1, + [165619] = 4, + ACTIONS(10205), 1, anon_sym_RPAREN, - ACTIONS(10010), 1, + ACTIONS(10207), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6045), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146447] = 4, - ACTIONS(7469), 1, + [165633] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10012), 1, + ACTIONS(10209), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146461] = 4, - ACTIONS(2401), 1, + [165647] = 4, + ACTIONS(10211), 1, anon_sym_RPAREN, - ACTIONS(10014), 1, + ACTIONS(10213), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6157), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146475] = 4, - ACTIONS(10016), 1, - anon_sym_COMMA, - ACTIONS(10018), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [146489] = 4, - ACTIONS(10020), 1, + [165661] = 4, + ACTIONS(8704), 1, anon_sym_COMMA, - ACTIONS(10022), 1, + ACTIONS(8706), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6048), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146503] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10024), 1, - anon_sym_COLON, - ACTIONS(10026), 1, + [165675] = 4, + ACTIONS(8273), 1, sym__newline, + ACTIONS(10215), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146517] = 3, - ACTIONS(2668), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2670), 2, - anon_sym_except_STAR, - anon_sym_finally, - [146529] = 4, - ACTIONS(10028), 1, + [165689] = 4, + ACTIONS(7601), 1, + anon_sym_RPAREN, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10030), 1, - anon_sym_RBRACE, - STATE(5791), 1, - aux_sym_dict_pattern_repeat1, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146543] = 4, - ACTIONS(2411), 1, - anon_sym_RPAREN, - ACTIONS(10032), 1, - anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + [165703] = 4, + ACTIONS(10217), 1, + anon_sym_COLON, + ACTIONS(10219), 1, + anon_sym_LBRACK, + STATE(7090), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146557] = 4, - ACTIONS(2185), 1, + [165717] = 4, + ACTIONS(9671), 1, anon_sym_RBRACK, - ACTIONS(10034), 1, + ACTIONS(10221), 1, anon_sym_COMMA, - STATE(5921), 1, - aux_sym_type_parameter_repeat1, + STATE(6051), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146571] = 4, - ACTIONS(8404), 1, + [165731] = 4, + ACTIONS(8616), 1, anon_sym_COMMA, - ACTIONS(10036), 1, + ACTIONS(8618), 1, anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + STATE(6170), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146585] = 4, - ACTIONS(2847), 1, - anon_sym_COLON, - ACTIONS(10038), 1, + [165745] = 4, + ACTIONS(2403), 1, + anon_sym_RPAREN, + ACTIONS(10223), 1, anon_sym_COMMA, - STATE(5852), 1, - aux_sym_with_clause_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146599] = 4, - ACTIONS(10040), 1, + [165759] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10227), 1, anon_sym_COLON, - ACTIONS(10042), 1, - anon_sym_LBRACK, - STATE(6898), 1, - sym_external_definition, + ACTIONS(10229), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146613] = 4, - ACTIONS(2413), 1, + [165773] = 4, + ACTIONS(2323), 1, anon_sym_RPAREN, - ACTIONS(10044), 1, + ACTIONS(10231), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146627] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10046), 1, - anon_sym_COLON, - STATE(6978), 1, - sym_external_definition, + [165787] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10233), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146641] = 4, - ACTIONS(9743), 1, - anon_sym_RPAREN, - ACTIONS(10048), 1, + [165801] = 4, + ACTIONS(10235), 1, anon_sym_COMMA, - STATE(6126), 1, - aux_sym__import_list_repeat1, + ACTIONS(10237), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146655] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10050), 1, - anon_sym_COLON, - ACTIONS(10052), 1, - sym__newline, + [165815] = 4, + ACTIONS(10239), 1, + anon_sym_COMMA, + ACTIONS(10241), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146669] = 4, - ACTIONS(7469), 1, + [165829] = 4, + ACTIONS(10243), 1, anon_sym_COMMA, - ACTIONS(10054), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10245), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146683] = 4, - ACTIONS(9743), 1, - anon_sym_RPAREN, - ACTIONS(10056), 1, + [165843] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - STATE(6126), 1, - aux_sym__import_list_repeat1, + ACTIONS(10247), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146697] = 4, - ACTIONS(7469), 1, + [165857] = 4, + ACTIONS(10221), 1, anon_sym_COMMA, - ACTIONS(10058), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10247), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146711] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10060), 1, - anon_sym_COLON, - ACTIONS(10062), 1, - sym__newline, - ACTIONS(3), 2, + [165871] = 3, + ACTIONS(9291), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [146725] = 4, - ACTIONS(7469), 1, + ACTIONS(9293), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165883] = 4, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(10064), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10249), 1, + anon_sym_RBRACK, + STATE(6203), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146739] = 4, - ACTIONS(8404), 1, + [165897] = 3, + ACTIONS(9395), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9397), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165909] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(10066), 1, + ACTIONS(10251), 1, anon_sym_RBRACK, - STATE(6087), 1, + STATE(6232), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146753] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10068), 1, + [165923] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10253), 1, + anon_sym_COLON, + ACTIONS(10255), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146767] = 4, - ACTIONS(7469), 1, + [165937] = 4, + ACTIONS(10257), 1, + anon_sym_RPAREN, + ACTIONS(10259), 1, anon_sym_COMMA, - ACTIONS(10070), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146781] = 4, - ACTIONS(9911), 1, - anon_sym_COMMA, - ACTIONS(10066), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, - ACTIONS(3), 2, + [165951] = 3, + ACTIONS(9139), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [146795] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10072), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9141), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165963] = 4, + ACTIONS(10040), 1, + sym_identifier, + STATE(6499), 1, + sym_dotted_name, + STATE(6812), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146809] = 4, - ACTIONS(7469), 1, + [165977] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10074), 1, + ACTIONS(10261), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146823] = 4, - ACTIONS(5594), 1, + [165991] = 4, + ACTIONS(2293), 1, anon_sym_RPAREN, - ACTIONS(10076), 1, + ACTIONS(10263), 1, anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146837] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10078), 1, + [166005] = 4, + ACTIONS(10265), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10267), 1, + sym__indent, + STATE(2126), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146851] = 4, - ACTIONS(9664), 1, + [166019] = 4, + ACTIONS(2149), 1, + anon_sym_RBRACK, + ACTIONS(10269), 1, anon_sym_COMMA, - 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, - ACTIONS(10086), 1, - sym__newline, + STATE(6106), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146879] = 4, - ACTIONS(7469), 1, + [166033] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10088), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10271), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146893] = 4, - ACTIONS(5501), 1, - anon_sym_RPAREN, - ACTIONS(10090), 1, - anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + [166047] = 4, + ACTIONS(10273), 1, + anon_sym_SEMI, + ACTIONS(10275), 1, + sym__newline, + STATE(6074), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146907] = 4, - ACTIONS(5503), 1, - anon_sym_RBRACK, - ACTIONS(10092), 1, + [166061] = 4, + ACTIONS(10277), 1, anon_sym_COMMA, - STATE(6275), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10280), 1, + anon_sym_COLON, + STATE(6066), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146921] = 4, - ACTIONS(10094), 1, + [166075] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10282), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146935] = 4, - ACTIONS(10098), 1, + [166089] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(7845), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146949] = 4, - ACTIONS(10102), 1, + [166103] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10104), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10284), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146963] = 4, - ACTIONS(10106), 1, + [166117] = 4, + ACTIONS(8333), 1, anon_sym_COMMA, - ACTIONS(10108), 1, + ACTIONS(8335), 1, anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + STATE(6075), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146977] = 4, - ACTIONS(2447), 1, - anon_sym_RBRACK, - ACTIONS(10110), 1, + [166131] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - STATE(6134), 1, + ACTIONS(7802), 1, + anon_sym_RPAREN, + STATE(6520), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [146991] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10112), 1, - anon_sym_COLON, - ACTIONS(10114), 1, - anon_sym_PIPE, + [166145] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10286), 1, + anon_sym_GT, + ACTIONS(10288), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147005] = 2, + [166159] = 4, + ACTIONS(2437), 1, + anon_sym_RBRACE, + ACTIONS(10290), 1, + anon_sym_COMMA, + STATE(6207), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6828), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [147015] = 4, - ACTIONS(7794), 1, + [166173] = 4, + ACTIONS(1511), 1, sym__newline, - ACTIONS(7944), 1, - anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10292), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147029] = 3, - ACTIONS(2660), 1, - anon_sym_except, + [166187] = 4, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(10294), 1, + anon_sym_COMMA, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2662), 2, - anon_sym_except_STAR, - anon_sym_finally, - [147041] = 4, - ACTIONS(10042), 1, + [166201] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10116), 1, + ACTIONS(10296), 1, anon_sym_COLON, - STATE(6675), 1, + STATE(7160), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147055] = 3, - ACTIONS(10120), 1, - anon_sym_in, + [166215] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10298), 1, + anon_sym_COLON, + ACTIONS(10300), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10118), 2, - sym__newline, - anon_sym_SEMI, - [147067] = 4, - ACTIONS(9917), 1, + [166229] = 4, + ACTIONS(10225), 1, anon_sym_LPAREN, - ACTIONS(10122), 1, + ACTIONS(10302), 1, anon_sym_COLON, - ACTIONS(10124), 1, + ACTIONS(10304), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147081] = 4, - ACTIONS(9917), 1, + [166243] = 4, + ACTIONS(10225), 1, anon_sym_LPAREN, - ACTIONS(10126), 1, + ACTIONS(10306), 1, anon_sym_COLON, - ACTIONS(10128), 1, + ACTIONS(10308), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147095] = 4, - ACTIONS(4313), 1, - anon_sym_RBRACK, - ACTIONS(10130), 1, + [166257] = 4, + ACTIONS(7868), 1, + anon_sym_RPAREN, + ACTIONS(7870), 1, anon_sym_COMMA, - STATE(6088), 1, - aux_sym__patterns_repeat1, + STATE(6090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147109] = 4, - ACTIONS(5621), 1, - anon_sym_RBRACK, - ACTIONS(10132), 1, + [166271] = 4, + ACTIONS(10310), 1, + anon_sym_RPAREN, + ACTIONS(10312), 1, anon_sym_COMMA, - STATE(6275), 1, - aux_sym_case_clause_repeat1, + STATE(6092), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147123] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10134), 1, + [166285] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10314), 1, + anon_sym_COLON, + ACTIONS(10316), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147137] = 4, - ACTIONS(7469), 1, + [166299] = 4, + ACTIONS(8349), 1, anon_sym_COMMA, - ACTIONS(10136), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8353), 1, + anon_sym_RBRACK, + STATE(6095), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147151] = 4, - ACTIONS(7469), 1, + [166313] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10138), 1, + ACTIONS(10318), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147165] = 4, - ACTIONS(7469), 1, + [166327] = 4, + ACTIONS(2581), 1, + anon_sym_RPAREN, + ACTIONS(10320), 1, anon_sym_COMMA, - ACTIONS(10140), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6622), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147179] = 4, - ACTIONS(7884), 1, - sym__newline, - ACTIONS(8518), 1, + [166341] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4603), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + anon_sym_EQ, + [166351] = 4, + ACTIONS(9568), 1, + anon_sym_RBRACK, + ACTIONS(10221), 1, + anon_sym_COMMA, + STATE(6209), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147193] = 4, - ACTIONS(7469), 1, + [166365] = 4, + ACTIONS(9690), 1, + anon_sym_RBRACK, + ACTIONS(10221), 1, anon_sym_COMMA, - ACTIONS(10142), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6097), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147207] = 4, - ACTIONS(7469), 1, + [166379] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10144), 1, + ACTIONS(10322), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147221] = 4, - ACTIONS(7469), 1, + [166393] = 4, + ACTIONS(2335), 1, + anon_sym_RPAREN, + ACTIONS(10324), 1, anon_sym_COMMA, - ACTIONS(10146), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147235] = 4, - ACTIONS(7469), 1, + [166407] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10148), 1, + ACTIONS(10326), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147249] = 4, - ACTIONS(10150), 1, + [166421] = 4, + ACTIONS(2337), 1, + anon_sym_RPAREN, + ACTIONS(10328), 1, anon_sym_COMMA, - ACTIONS(10152), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147263] = 3, - ACTIONS(10156), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [166435] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10330), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10154), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147275] = 3, - ACTIONS(8935), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [166449] = 4, + ACTIONS(10332), 1, + anon_sym_COMMA, + ACTIONS(10334), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8937), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147287] = 3, - ACTIONS(8941), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [166463] = 4, + ACTIONS(10336), 1, + anon_sym_COMMA, + ACTIONS(10338), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8943), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147299] = 4, - ACTIONS(5509), 1, - anon_sym_RPAREN, - ACTIONS(10158), 1, + [166477] = 4, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(10340), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166491] = 4, + ACTIONS(10221), 1, anon_sym_COMMA, + ACTIONS(10340), 1, + anon_sym_RBRACK, STATE(6234), 1, - aux_sym_case_clause_repeat1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147313] = 3, - ACTIONS(8945), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [166505] = 4, + ACTIONS(9889), 1, + anon_sym_RPAREN, + ACTIONS(10054), 1, + anon_sym_COMMA, + STATE(6197), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [166519] = 4, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(10342), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147339] = 4, - ACTIONS(10128), 1, - sym__newline, - ACTIONS(10160), 1, + [166533] = 4, + ACTIONS(10344), 1, anon_sym_LPAREN, - ACTIONS(10162), 1, + ACTIONS(10346), 1, anon_sym_COLON, + ACTIONS(10348), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147353] = 4, - ACTIONS(7953), 1, - anon_sym_RPAREN, - ACTIONS(10164), 1, + [166547] = 3, + ACTIONS(10352), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10350), 2, + sym__newline, anon_sym_COMMA, - STATE(5821), 1, - aux_sym_assert_statement_repeat1, + [166559] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10354), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147367] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10167), 1, + [166573] = 4, + ACTIONS(10356), 1, anon_sym_COLON, - ACTIONS(10169), 1, + ACTIONS(10358), 1, + anon_sym_nogil, + ACTIONS(10360), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147381] = 4, - ACTIONS(9433), 1, - anon_sym_COLON, - ACTIONS(10171), 1, + [166587] = 3, + ACTIONS(9238), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9240), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(6844), 1, - sym_format_specifier, + [166599] = 4, + ACTIONS(10362), 1, + anon_sym_STAR, + ACTIONS(10364), 1, + sym_string_start, + STATE(3632), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147395] = 4, - ACTIONS(7469), 1, + [166613] = 4, + ACTIONS(9692), 1, + anon_sym_RBRACK, + ACTIONS(10366), 1, anon_sym_COMMA, - ACTIONS(10173), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6106), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147409] = 4, - ACTIONS(7469), 1, + [166627] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10175), 1, + ACTIONS(10369), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147423] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10177), 1, + [166641] = 4, + ACTIONS(10371), 1, + anon_sym_SEMI, + ACTIONS(10374), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147437] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10179), 1, + [166655] = 4, + ACTIONS(10376), 1, + anon_sym_SEMI, + ACTIONS(10378), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6117), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147451] = 4, - ACTIONS(7469), 1, + [166669] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10181), 1, + ACTIONS(10380), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147465] = 4, - ACTIONS(7469), 1, + [166683] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10183), 1, + ACTIONS(7713), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166697] = 3, + ACTIONS(10384), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10382), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [166709] = 4, + ACTIONS(10386), 1, + anon_sym_LPAREN, + ACTIONS(10388), 1, + anon_sym_COLON, + ACTIONS(10390), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147479] = 4, - ACTIONS(7469), 1, + [166723] = 4, + ACTIONS(8399), 1, anon_sym_COMMA, - ACTIONS(10185), 1, + ACTIONS(8401), 1, + anon_sym_RBRACE, + STATE(6120), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166737] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10392), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147493] = 4, - ACTIONS(7469), 1, + [166751] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10394), 1, + anon_sym_GT, + ACTIONS(10396), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166765] = 4, + ACTIONS(1515), 1, + sym__newline, + ACTIONS(10398), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166779] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10187), 1, + ACTIONS(10400), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147507] = 4, - ACTIONS(7469), 1, + [166793] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10189), 1, + ACTIONS(10402), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147521] = 4, - ACTIONS(10191), 1, - anon_sym_COMMA, - ACTIONS(10193), 1, + [166807] = 4, + ACTIONS(2583), 1, anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10404), 1, + anon_sym_COMMA, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147535] = 4, - ACTIONS(10195), 1, + [166821] = 4, + ACTIONS(10243), 1, + anon_sym_COMMA, + ACTIONS(10406), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166835] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10408), 1, sym__newline, - ACTIONS(10197), 1, - sym__indent, - STATE(2091), 1, - sym__match_block, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147549] = 4, - ACTIONS(7469), 1, + [166849] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10199), 1, + ACTIONS(10410), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147563] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10201), 1, + [166863] = 4, + ACTIONS(10348), 1, + sym__newline, + ACTIONS(10412), 1, + sym_identifier, + ACTIONS(10414), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147577] = 4, - ACTIONS(8576), 1, - sym_identifier, - STATE(5699), 1, - sym_dotted_name, - STATE(6104), 1, - sym_aliased_import, + [166877] = 4, + ACTIONS(7798), 1, + anon_sym_RPAREN, + ACTIONS(7800), 1, + anon_sym_COMMA, + STATE(6133), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147591] = 4, - ACTIONS(10203), 1, + [166891] = 4, + ACTIONS(10416), 1, + anon_sym_RPAREN, + ACTIONS(10418), 1, anon_sym_COMMA, - ACTIONS(10206), 1, - anon_sym_RBRACE, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + STATE(6135), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147605] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10208), 1, - anon_sym_COLON, - ACTIONS(10210), 1, + [166905] = 4, + ACTIONS(10420), 1, sym__newline, + ACTIONS(10422), 1, + sym__indent, + STATE(2169), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147619] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10212), 1, + [166919] = 4, + ACTIONS(8307), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8943), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147633] = 4, - ACTIONS(7469), 1, + [166933] = 4, + ACTIONS(8405), 1, anon_sym_COMMA, - ACTIONS(10214), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8407), 1, + anon_sym_RBRACK, + STATE(6138), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147647] = 4, - ACTIONS(7469), 1, + [166947] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10216), 1, + ACTIONS(10424), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147661] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10218), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [166961] = 4, + ACTIONS(4530), 1, + sym_string_start, + ACTIONS(10426), 1, + anon_sym_LT, + STATE(6844), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147675] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10220), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [166975] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(10428), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147689] = 4, - ACTIONS(10222), 1, + [166989] = 4, + ACTIONS(2345), 1, + anon_sym_RPAREN, + ACTIONS(10430), 1, anon_sym_COMMA, - ACTIONS(10224), 1, - anon_sym_in, - STATE(6217), 1, - aux_sym__patterns_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147703] = 4, - ACTIONS(7469), 1, + [167003] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10226), 1, + ACTIONS(10432), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147717] = 4, - ACTIONS(10228), 1, + [167017] = 4, + ACTIONS(2347), 1, + anon_sym_RPAREN, + ACTIONS(10434), 1, anon_sym_COMMA, - ACTIONS(10231), 1, - anon_sym_RBRACK, - STATE(5847), 1, - aux_sym_external_definition_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147731] = 4, - ACTIONS(8520), 1, + [167031] = 4, + ACTIONS(2295), 1, + anon_sym_RPAREN, + ACTIONS(10436), 1, anon_sym_COMMA, - ACTIONS(8522), 1, - anon_sym_RBRACE, - STATE(5858), 1, - aux_sym_dictionary_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147745] = 4, - ACTIONS(10233), 1, - anon_sym_COLON, - ACTIONS(10235), 1, - anon_sym_nogil, - ACTIONS(10237), 1, - sym__newline, + [167045] = 4, + ACTIONS(10438), 1, + anon_sym_COMMA, + ACTIONS(10440), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147759] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10239), 1, - anon_sym_COLON, - STATE(6964), 1, - sym_external_definition, + [167059] = 4, + ACTIONS(10442), 1, + anon_sym_COMMA, + ACTIONS(10444), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147773] = 4, - ACTIONS(7469), 1, + [167073] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(10241), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10446), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147787] = 4, - ACTIONS(10243), 1, + [167087] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10246), 1, - anon_sym_COLON, - STATE(5852), 1, - aux_sym_with_clause_repeat1, + ACTIONS(10448), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147801] = 4, - ACTIONS(9676), 1, - anon_sym_COMMA, - ACTIONS(10248), 1, - anon_sym_RBRACK, - STATE(5847), 1, - aux_sym_external_definition_repeat1, + [167101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147815] = 4, - ACTIONS(7469), 1, + ACTIONS(10450), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [167111] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10250), 1, + ACTIONS(10452), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147829] = 4, - ACTIONS(9264), 1, + [167125] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10454), 1, + anon_sym_COLON, + STATE(7066), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167139] = 4, + ACTIONS(7601), 1, anon_sym_RBRACK, - ACTIONS(9911), 1, + ACTIONS(7676), 1, anon_sym_COMMA, - STATE(6065), 1, - aux_sym_type_index_repeat2, + STATE(6283), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147843] = 4, - ACTIONS(10252), 1, + [167153] = 4, + ACTIONS(10456), 1, anon_sym_SEMI, - ACTIONS(10254), 1, + ACTIONS(10458), 1, sym__newline, - STATE(5863), 1, + STATE(6153), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147857] = 4, - ACTIONS(8404), 1, + [167167] = 4, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(10256), 1, + ACTIONS(10460), 1, anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + STATE(6203), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147871] = 4, - ACTIONS(2555), 1, - anon_sym_RBRACE, - ACTIONS(10258), 1, + [167181] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [147885] = 4, - ACTIONS(10260), 1, + ACTIONS(10462), 1, sym__newline, - ACTIONS(10262), 1, - sym__indent, - STATE(2039), 1, - sym__match_block, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147899] = 4, - ACTIONS(7500), 1, + [167195] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(7589), 1, + ACTIONS(7840), 1, anon_sym_RPAREN, - STATE(5976), 1, + STATE(6520), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147913] = 4, - ACTIONS(8539), 1, + [167209] = 4, + ACTIONS(8315), 1, + sym__newline, + ACTIONS(10464), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167223] = 4, + ACTIONS(8424), 1, anon_sym_COMMA, - ACTIONS(8541), 1, + ACTIONS(8426), 1, anon_sym_RBRACE, - STATE(5865), 1, + STATE(6155), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147927] = 4, - ACTIONS(9107), 1, + [167237] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10264), 1, + ACTIONS(10466), 1, anon_sym_GT, - ACTIONS(10266), 1, + ACTIONS(10468), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147941] = 4, - ACTIONS(1555), 1, + [167251] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10470), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167265] = 4, + ACTIONS(1519), 1, sym__newline, - ACTIONS(10268), 1, + ACTIONS(10472), 1, anon_sym_SEMI, - STATE(5885), 1, + STATE(6108), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147955] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10270), 1, - anon_sym_COLON, - ACTIONS(10272), 1, - sym__newline, + [167279] = 4, + ACTIONS(2287), 1, + anon_sym_RPAREN, + ACTIONS(10474), 1, + anon_sym_COMMA, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147969] = 4, - ACTIONS(2639), 1, + [167293] = 4, + ACTIONS(2517), 1, anon_sym_RBRACE, - ACTIONS(10274), 1, + ACTIONS(10476), 1, anon_sym_COMMA, - STATE(5838), 1, + STATE(6551), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147983] = 4, - ACTIONS(7469), 1, + [167307] = 4, + ACTIONS(10221), 1, anon_sym_COMMA, - ACTIONS(10276), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10446), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [147997] = 4, - ACTIONS(7634), 1, + [167321] = 4, + ACTIONS(2289), 1, anon_sym_RPAREN, - ACTIONS(7636), 1, + ACTIONS(10478), 1, anon_sym_COMMA, - STATE(5874), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148011] = 4, - ACTIONS(10278), 1, - anon_sym_RPAREN, - ACTIONS(10280), 1, + [167335] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5875), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10480), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148025] = 4, - ACTIONS(10282), 1, + [167349] = 4, + ACTIONS(10482), 1, anon_sym_COMMA, - ACTIONS(10284), 1, - anon_sym_RBRACE, - STATE(5813), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10484), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148039] = 4, - ACTIONS(8170), 1, + [167363] = 4, + ACTIONS(8897), 1, + anon_sym_RPAREN, + ACTIONS(8899), 1, anon_sym_COMMA, - ACTIONS(8172), 1, - anon_sym_RBRACK, - STATE(5877), 1, - aux_sym_subscript_repeat1, + STATE(6166), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148053] = 4, - ACTIONS(7469), 1, + [167377] = 4, + ACTIONS(10486), 1, + anon_sym_RPAREN, + ACTIONS(10488), 1, anon_sym_COMMA, - ACTIONS(10286), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6167), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148067] = 4, - ACTIONS(10288), 1, + [167391] = 4, + ACTIONS(9319), 1, anon_sym_RPAREN, - ACTIONS(10290), 1, + ACTIONS(10490), 1, anon_sym_COMMA, - STATE(6250), 1, - aux_sym__typedargslist_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148081] = 4, - ACTIONS(9526), 1, + [167405] = 4, + ACTIONS(8438), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, anon_sym_RBRACK, - ACTIONS(9911), 1, + STATE(6169), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167419] = 4, + ACTIONS(6518), 1, + anon_sym_RPAREN, + ACTIONS(10493), 1, anon_sym_COMMA, - STATE(5880), 1, - aux_sym_type_index_repeat2, + STATE(6318), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167433] = 3, + ACTIONS(2601), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148095] = 4, - ACTIONS(2307), 1, + ACTIONS(2599), 2, + anon_sym_except_STAR, + anon_sym_finally, + [167445] = 4, + ACTIONS(2355), 1, anon_sym_RPAREN, - ACTIONS(10292), 1, + ACTIONS(10495), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148109] = 4, - ACTIONS(2309), 1, + [167459] = 4, + ACTIONS(2357), 1, anon_sym_RPAREN, - ACTIONS(10294), 1, + ACTIONS(10497), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148123] = 4, - ACTIONS(10296), 1, + [167473] = 4, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(10298), 1, + ACTIONS(10501), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148137] = 4, - ACTIONS(10300), 1, + [167487] = 4, + ACTIONS(10503), 1, anon_sym_COMMA, - ACTIONS(10302), 1, + ACTIONS(10505), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148151] = 4, - ACTIONS(9676), 1, + [167501] = 4, + ACTIONS(10507), 1, anon_sym_COMMA, - ACTIONS(10304), 1, + ACTIONS(10509), 1, anon_sym_RBRACK, - STATE(5847), 1, - aux_sym_external_definition_repeat1, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148165] = 4, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(10306), 1, + [167515] = 4, + ACTIONS(7090), 1, anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + ACTIONS(10511), 1, + anon_sym_COMMA, + STATE(6171), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148179] = 4, - ACTIONS(9911), 1, + [167529] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10306), 1, + ACTIONS(10514), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167543] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10516), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167557] = 4, + ACTIONS(10257), 1, anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, + ACTIONS(10518), 1, + anon_sym_COMMA, + STATE(6292), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167571] = 4, + ACTIONS(7470), 1, + sym_identifier, + ACTIONS(10520), 1, + anon_sym_DOT, + STATE(6175), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148193] = 4, - ACTIONS(7894), 1, + [167585] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10523), 1, sym__newline, - ACTIONS(10308), 1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167599] = 4, + ACTIONS(2805), 1, + anon_sym_COLON, + ACTIONS(10525), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + STATE(6220), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167613] = 4, + ACTIONS(10527), 1, + anon_sym_SEMI, + ACTIONS(10529), 1, + sym__newline, + STATE(6180), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167627] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10531), 1, + anon_sym_GT, + ACTIONS(10533), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167641] = 4, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(10535), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167655] = 4, + ACTIONS(10537), 1, + anon_sym_COLON, + ACTIONS(10539), 1, + anon_sym_nogil, + ACTIONS(10541), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148207] = 4, - ACTIONS(9676), 1, + [167669] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10310), 1, - anon_sym_RBRACK, - STATE(5847), 1, - aux_sym_external_definition_repeat1, + ACTIONS(10543), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167683] = 4, + ACTIONS(7872), 1, + anon_sym_RPAREN, + ACTIONS(7874), 1, + anon_sym_COMMA, + STATE(6190), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148221] = 4, - ACTIONS(7469), 1, + [167697] = 4, + ACTIONS(10545), 1, + anon_sym_RPAREN, + ACTIONS(10547), 1, anon_sym_COMMA, - ACTIONS(10312), 1, + STATE(6191), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167711] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10549), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148235] = 4, - ACTIONS(8404), 1, + [167725] = 4, + ACTIONS(8458), 1, anon_sym_COMMA, - ACTIONS(10314), 1, + ACTIONS(8460), 1, anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + STATE(6194), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148249] = 4, - ACTIONS(10316), 1, - anon_sym_SEMI, - ACTIONS(10319), 1, + [167739] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10551), 1, sym__newline, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167753] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10553), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167767] = 4, + ACTIONS(9085), 1, + sym_identifier, + STATE(5887), 1, + sym_dotted_name, + STATE(6610), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167781] = 4, + ACTIONS(2363), 1, + anon_sym_RPAREN, + ACTIONS(10555), 1, + anon_sym_COMMA, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148263] = 4, - ACTIONS(7469), 1, + [167795] = 4, + ACTIONS(2365), 1, + anon_sym_RPAREN, + ACTIONS(10557), 1, anon_sym_COMMA, - ACTIONS(10321), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148277] = 4, - ACTIONS(7469), 1, + [167809] = 4, + ACTIONS(10559), 1, anon_sym_COMMA, - ACTIONS(10323), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10562), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148291] = 4, - ACTIONS(7469), 1, + [167823] = 4, + ACTIONS(10564), 1, anon_sym_COMMA, - ACTIONS(10325), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10566), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148305] = 4, - ACTIONS(10327), 1, - anon_sym_SEMI, - ACTIONS(10329), 1, - sym__newline, - STATE(5897), 1, - aux_sym__simple_statements_repeat1, + [167837] = 4, + ACTIONS(10568), 1, + anon_sym_COMMA, + ACTIONS(10570), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148319] = 4, - ACTIONS(7469), 1, + [167851] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10331), 1, + ACTIONS(10572), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148333] = 4, - ACTIONS(7498), 1, + [167865] = 4, + ACTIONS(2735), 1, anon_sym_RPAREN, - ACTIONS(7500), 1, + ACTIONS(10574), 1, anon_sym_COMMA, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + STATE(6239), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148347] = 4, - ACTIONS(7469), 1, + [167879] = 4, + ACTIONS(9977), 1, + anon_sym_RPAREN, + ACTIONS(10576), 1, anon_sym_COMMA, - ACTIONS(10333), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6507), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148361] = 4, - ACTIONS(7469), 1, + [167893] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10335), 1, + ACTIONS(10578), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148375] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10337), 1, - anon_sym_COLON, - ACTIONS(10339), 1, - sym__newline, + [167907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148389] = 4, - ACTIONS(8572), 1, + ACTIONS(9269), 3, anon_sym_COMMA, - ACTIONS(8574), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(5898), 1, - aux_sym_dictionary_repeat1, + [167917] = 4, + ACTIONS(10580), 1, + anon_sym_SEMI, + ACTIONS(10582), 1, + sym__newline, + STATE(6202), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148403] = 4, - ACTIONS(9107), 1, + [167931] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10341), 1, + ACTIONS(10584), 1, anon_sym_GT, - ACTIONS(10343), 1, + ACTIONS(10586), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148417] = 4, - ACTIONS(1559), 1, + [167945] = 4, + ACTIONS(1529), 1, sym__newline, - ACTIONS(10345), 1, + ACTIONS(10588), 1, anon_sym_SEMI, - STATE(5885), 1, + STATE(6108), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148431] = 4, - ACTIONS(2613), 1, - anon_sym_RBRACE, - ACTIONS(10347), 1, + [167959] = 4, + ACTIONS(10590), 1, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10593), 1, + anon_sym_RBRACK, + STATE(6203), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148445] = 4, - ACTIONS(10349), 1, - anon_sym_RPAREN, - ACTIONS(10351), 1, + [167973] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - STATE(5899), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(10595), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148459] = 4, - ACTIONS(7522), 1, + [167987] = 4, + ACTIONS(9073), 1, anon_sym_RPAREN, - ACTIONS(7524), 1, + ACTIONS(9075), 1, anon_sym_COMMA, - STATE(5907), 1, + STATE(6211), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148473] = 4, - ACTIONS(10354), 1, + [168001] = 4, + ACTIONS(10597), 1, anon_sym_RPAREN, - ACTIONS(10356), 1, + ACTIONS(10599), 1, anon_sym_COMMA, - STATE(5909), 1, + STATE(6212), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148487] = 4, - ACTIONS(2447), 1, + [168015] = 4, + ACTIONS(9281), 1, anon_sym_RBRACE, - ACTIONS(10358), 1, + ACTIONS(10601), 1, anon_sym_COMMA, - STATE(6193), 1, + STATE(6207), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148501] = 4, - ACTIONS(8178), 1, + [168029] = 4, + ACTIONS(8476), 1, anon_sym_COMMA, - ACTIONS(8180), 1, + ACTIONS(8478), 1, anon_sym_RBRACK, - STATE(5912), 1, + STATE(6214), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148515] = 4, - ACTIONS(10360), 1, + [168043] = 4, + ACTIONS(10221), 1, anon_sym_COMMA, - ACTIONS(10362), 1, - anon_sym_RBRACE, - STATE(5987), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148529] = 4, - ACTIONS(9602), 1, + ACTIONS(10595), 1, anon_sym_RBRACK, - ACTIONS(9911), 1, - anon_sym_COMMA, - STATE(5914), 1, + STATE(6234), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148543] = 3, - ACTIONS(10366), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(10364), 2, - sym__newline, + [168057] = 4, + ACTIONS(10009), 1, anon_sym_COMMA, - [148555] = 4, - ACTIONS(2327), 1, + ACTIONS(10604), 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, - [148569] = 4, - ACTIONS(10370), 1, - anon_sym_COMMA, - ACTIONS(10373), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6243), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148583] = 4, - ACTIONS(2329), 1, + [168071] = 4, + ACTIONS(2371), 1, anon_sym_RPAREN, - ACTIONS(10375), 1, + ACTIONS(10606), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148597] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(10377), 1, + [168085] = 4, + ACTIONS(2373), 1, anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148611] = 4, - ACTIONS(10379), 1, + ACTIONS(10608), 1, anon_sym_COMMA, - ACTIONS(10381), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148625] = 4, - ACTIONS(10383), 1, + [168099] = 4, + ACTIONS(10610), 1, anon_sym_COMMA, - ACTIONS(10385), 1, + ACTIONS(10612), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148639] = 4, - ACTIONS(8404), 1, + [168113] = 4, + ACTIONS(10614), 1, anon_sym_COMMA, - ACTIONS(10387), 1, + ACTIONS(10616), 1, anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148653] = 4, - ACTIONS(9911), 1, + [168127] = 4, + ACTIONS(9977), 1, + anon_sym_RPAREN, + ACTIONS(10618), 1, anon_sym_COMMA, - ACTIONS(10387), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, + STATE(6507), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148667] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(10389), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + [168141] = 4, + ACTIONS(10265), 1, + sym__newline, + ACTIONS(10267), 1, + sym__indent, + STATE(2081), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148681] = 3, - ACTIONS(2666), 1, - anon_sym_except, + [168155] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2664), 2, - anon_sym_except_STAR, - anon_sym_finally, - [148693] = 4, - ACTIONS(8404), 1, + ACTIONS(9269), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(10391), 1, - anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + anon_sym_as, + [168165] = 4, + ACTIONS(10620), 1, + anon_sym_COMMA, + ACTIONS(10622), 1, + anon_sym_COLON, + STATE(6528), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148707] = 2, + [168179] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10624), 1, + anon_sym_COLON, + STATE(6996), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10393), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [148717] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10395), 1, + [168193] = 4, + ACTIONS(10626), 1, + anon_sym_COMMA, + ACTIONS(10629), 1, anon_sym_COLON, - ACTIONS(10397), 1, - sym__newline, + STATE(6220), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148731] = 4, - ACTIONS(10399), 1, + [168207] = 4, + ACTIONS(10631), 1, anon_sym_SEMI, - ACTIONS(10401), 1, + ACTIONS(10633), 1, sym__newline, - STATE(5928), 1, + STATE(6224), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148745] = 4, - ACTIONS(9339), 1, - anon_sym_RBRACK, - ACTIONS(10403), 1, - anon_sym_COMMA, - STATE(5921), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148759] = 4, - ACTIONS(8404), 1, + [168221] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(10406), 1, + ACTIONS(10635), 1, anon_sym_RBRACK, - STATE(6087), 1, + STATE(6232), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148773] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7587), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148787] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4606), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [148811] = 4, - ACTIONS(10408), 1, - anon_sym_COMMA, - ACTIONS(10411), 1, - anon_sym_RBRACK, - STATE(5926), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148825] = 4, - ACTIONS(9107), 1, + [168235] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10413), 1, + ACTIONS(10637), 1, anon_sym_GT, - ACTIONS(10415), 1, + ACTIONS(10639), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148839] = 4, - ACTIONS(1563), 1, + [168249] = 4, + ACTIONS(1533), 1, sym__newline, - ACTIONS(10417), 1, + ACTIONS(10641), 1, anon_sym_SEMI, - STATE(5885), 1, + STATE(6108), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148853] = 4, - ACTIONS(2596), 1, + [168263] = 4, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(10643), 1, anon_sym_RBRACE, - ACTIONS(10419), 1, - anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148867] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10421), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(7199), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148881] = 4, - ACTIONS(7469), 1, + [168277] = 4, + ACTIONS(10009), 1, anon_sym_COMMA, - ACTIONS(10423), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10645), 1, + anon_sym_RPAREN, + STATE(6243), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148895] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10425), 1, + [168291] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10647), 1, + anon_sym_COLON, + ACTIONS(10649), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148909] = 4, - ACTIONS(7597), 1, + [168305] = 4, + ACTIONS(9053), 1, anon_sym_RPAREN, - ACTIONS(7599), 1, + ACTIONS(9055), 1, anon_sym_COMMA, - STATE(5939), 1, + STATE(6233), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148923] = 4, - ACTIONS(10427), 1, + [168319] = 4, + ACTIONS(10651), 1, anon_sym_RPAREN, - ACTIONS(10429), 1, + ACTIONS(10653), 1, anon_sym_COMMA, - STATE(5941), 1, + STATE(6235), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148937] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10431), 1, - anon_sym_COLON, - ACTIONS(10433), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [148951] = 4, - ACTIONS(8185), 1, + [168333] = 4, + ACTIONS(8495), 1, anon_sym_COMMA, - ACTIONS(8187), 1, + ACTIONS(8497), 1, anon_sym_RBRACK, - STATE(5944), 1, + STATE(6237), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148965] = 4, - ACTIONS(7469), 1, + [168347] = 4, + ACTIONS(6891), 1, anon_sym_COMMA, - ACTIONS(10435), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10655), 1, + anon_sym_COLON, + STATE(6290), 1, + aux_sym_for_in_loop_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [148979] = 3, - ACTIONS(8909), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [168361] = 4, + ACTIONS(10132), 1, + anon_sym_RBRACK, + ACTIONS(10657), 1, + anon_sym_COMMA, + STATE(6232), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8911), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148991] = 4, - ACTIONS(2347), 1, + [168375] = 4, + ACTIONS(2379), 1, anon_sym_RPAREN, - ACTIONS(10437), 1, + ACTIONS(10660), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149005] = 3, - ACTIONS(8913), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [168389] = 4, + ACTIONS(10662), 1, + anon_sym_COMMA, + ACTIONS(10665), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8915), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149017] = 4, - ACTIONS(2349), 1, + [168403] = 4, + ACTIONS(2249), 1, anon_sym_RPAREN, - ACTIONS(10439), 1, + ACTIONS(10667), 1, anon_sym_COMMA, - STATE(5752), 1, + STATE(6162), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [168417] = 4, + ACTIONS(10669), 1, anon_sym_COMMA, - ACTIONS(10443), 1, + ACTIONS(10671), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149057] = 4, - ACTIONS(10445), 1, + [168431] = 4, + ACTIONS(10673), 1, anon_sym_COMMA, - ACTIONS(10447), 1, + ACTIONS(10675), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149071] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10449), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149085] = 4, - ACTIONS(7469), 1, + [168445] = 4, + ACTIONS(10221), 1, anon_sym_COMMA, - ACTIONS(10451), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10635), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149099] = 4, - ACTIONS(7469), 1, + [168459] = 4, + ACTIONS(10629), 1, + anon_sym_RPAREN, + ACTIONS(10677), 1, anon_sym_COMMA, - ACTIONS(10453), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6239), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149113] = 4, - ACTIONS(2628), 1, + [168473] = 4, + ACTIONS(10680), 1, anon_sym_RPAREN, - ACTIONS(10455), 1, + ACTIONS(10682), 1, anon_sym_COMMA, - STATE(5821), 1, - aux_sym_assert_statement_repeat1, + STATE(6240), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149127] = 4, - ACTIONS(2143), 1, - anon_sym_RBRACK, - ACTIONS(10457), 1, - anon_sym_COMMA, - STATE(5921), 1, - aux_sym_type_parameter_repeat1, + [168487] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149141] = 4, - ACTIONS(7469), 1, + ACTIONS(10685), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(10459), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [168499] = 3, + ACTIONS(2656), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149155] = 4, - ACTIONS(7469), 1, + ACTIONS(2654), 2, + anon_sym_except_STAR, + anon_sym_finally, + [168511] = 4, + ACTIONS(10685), 1, + anon_sym_RPAREN, + ACTIONS(10687), 1, anon_sym_COMMA, - ACTIONS(10461), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6243), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149169] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10463), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [168525] = 3, + ACTIONS(7304), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149183] = 4, - ACTIONS(7469), 1, + ACTIONS(7221), 2, anon_sym_COMMA, - ACTIONS(10465), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [168537] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10690), 1, + anon_sym_GT, + ACTIONS(10692), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149197] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10467), 1, + [168551] = 4, + ACTIONS(8226), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149211] = 4, - ACTIONS(7469), 1, + ACTIONS(9029), 1, anon_sym_COMMA, - ACTIONS(10469), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149225] = 4, - ACTIONS(10471), 1, - anon_sym_SEMI, - ACTIONS(10473), 1, - sym__newline, - STATE(5965), 1, - aux_sym__simple_statements_repeat1, + [168565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149239] = 4, - ACTIONS(7469), 1, + ACTIONS(4603), 3, anon_sym_COMMA, - ACTIONS(10475), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149253] = 2, + anon_sym_COLON, + anon_sym_EQ, + [168575] = 3, + ACTIONS(7225), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 3, + ACTIONS(7221), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [149263] = 4, - ACTIONS(7500), 1, + [168587] = 4, + ACTIONS(8525), 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, - [149277] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10477), 1, - anon_sym_COLON, + ACTIONS(8527), 1, + anon_sym_RBRACK, + STATE(6251), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149291] = 4, - ACTIONS(8612), 1, + [168601] = 4, + ACTIONS(10694), 1, anon_sym_COMMA, - ACTIONS(8614), 1, - anon_sym_RBRACE, - STATE(5968), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10696), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149305] = 4, - ACTIONS(7469), 1, + [168615] = 4, + ACTIONS(10698), 1, anon_sym_COMMA, - ACTIONS(10479), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149319] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10481), 1, - anon_sym_GT, - ACTIONS(10483), 1, - anon_sym_QMARK, + ACTIONS(10700), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149333] = 4, - ACTIONS(10485), 1, + [168629] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(10487), 1, + ACTIONS(10702), 1, anon_sym_RBRACK, - STATE(6289), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149347] = 4, - ACTIONS(1567), 1, - sym__newline, - ACTIONS(10489), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149361] = 4, - ACTIONS(7469), 1, + [168643] = 4, + ACTIONS(8301), 1, anon_sym_COMMA, - ACTIONS(10491), 1, + ACTIONS(8305), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149375] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10493), 1, + [168657] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10704), 1, anon_sym_COLON, + ACTIONS(10706), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149389] = 4, - ACTIONS(2567), 1, - anon_sym_RBRACE, - ACTIONS(10495), 1, + [168671] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + ACTIONS(10708), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149403] = 4, - ACTIONS(10497), 1, + [168685] = 4, + ACTIONS(10649), 1, + sym__newline, + ACTIONS(10710), 1, anon_sym_LPAREN, - ACTIONS(10499), 1, + ACTIONS(10712), 1, anon_sym_COLON, - ACTIONS(10501), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149417] = 4, - ACTIONS(8814), 1, - anon_sym_RPAREN, - ACTIONS(8816), 1, - anon_sym_COMMA, - STATE(5978), 1, - aux_sym_argument_list_repeat1, + [168699] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10714), 1, + anon_sym_GT, + ACTIONS(10716), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149431] = 4, - ACTIONS(10503), 1, - anon_sym_RPAREN, - ACTIONS(10505), 1, - anon_sym_COMMA, - STATE(5979), 1, - aux_sym_argument_list_repeat1, + [168713] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149445] = 4, - ACTIONS(7469), 1, + ACTIONS(5116), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [168723] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10507), 1, + ACTIONS(10718), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149459] = 4, - ACTIONS(8198), 1, + [168737] = 4, + ACTIONS(10720), 1, anon_sym_COMMA, - ACTIONS(8200), 1, - anon_sym_RBRACK, - STATE(5982), 1, - aux_sym_subscript_repeat1, + ACTIONS(10722), 1, + anon_sym_RBRACE, + STATE(6367), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149473] = 4, - ACTIONS(7469), 1, + [168751] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10509), 1, + ACTIONS(10724), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149487] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10511), 1, - anon_sym_COLON, - STATE(6927), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149501] = 4, - ACTIONS(2447), 1, - anon_sym_RPAREN, - ACTIONS(10513), 1, + [168765] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6130), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(10726), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149515] = 4, - ACTIONS(5422), 1, - anon_sym_RPAREN, - ACTIONS(10515), 1, - anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + [168779] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10728), 1, + anon_sym_GT, + ACTIONS(10730), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149529] = 4, - ACTIONS(2361), 1, - anon_sym_RPAREN, - ACTIONS(10517), 1, - anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + [168793] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149543] = 4, - ACTIONS(2363), 1, - anon_sym_RPAREN, - ACTIONS(10519), 1, + ACTIONS(9962), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [149557] = 4, - ACTIONS(5424), 1, - anon_sym_RBRACK, - ACTIONS(10521), 1, + [168803] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6275), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10732), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149571] = 4, - ACTIONS(10523), 1, + [168817] = 4, + ACTIONS(7090), 1, + anon_sym_RPAREN, + ACTIONS(10734), 1, anon_sym_COMMA, - ACTIONS(10525), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6266), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149585] = 4, - ACTIONS(10527), 1, + [168831] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10529), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10737), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149599] = 4, - ACTIONS(7469), 1, + [168845] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10531), 1, + ACTIONS(10739), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149613] = 2, + [168859] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_GT, + ACTIONS(10743), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8969), 3, + [168873] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [149623] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10533), 1, + ACTIONS(10745), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149637] = 4, - ACTIONS(7659), 1, - anon_sym_RPAREN, - ACTIONS(7661), 1, + [168887] = 4, + ACTIONS(8277), 1, + sym__newline, + ACTIONS(8965), 1, anon_sym_COMMA, - STATE(5762), 1, - aux_sym_argument_list_repeat1, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149651] = 4, - ACTIONS(10535), 1, + [168901] = 4, + ACTIONS(7715), 1, + anon_sym_RPAREN, + ACTIONS(7717), 1, anon_sym_COMMA, - ACTIONS(10537), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + STATE(6611), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149665] = 4, - ACTIONS(7469), 1, + [168915] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10539), 1, + ACTIONS(10747), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149679] = 4, - ACTIONS(10541), 1, + [168929] = 4, + ACTIONS(10749), 1, anon_sym_RPAREN, - ACTIONS(10543), 1, + ACTIONS(10751), 1, anon_sym_COMMA, - STATE(5767), 1, + STATE(6615), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149693] = 4, - ACTIONS(10545), 1, + [168943] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10547), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(10753), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149707] = 4, - ACTIONS(9277), 1, - anon_sym_RPAREN, - ACTIONS(9684), 1, - anon_sym_COMMA, - STATE(5769), 1, - aux_sym__import_list_repeat1, + [168957] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10755), 1, + anon_sym_GT, + ACTIONS(10757), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149721] = 4, - ACTIONS(7469), 1, + [168971] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10549), 1, + ACTIONS(10759), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149735] = 4, - ACTIONS(10551), 1, - anon_sym_SEMI, - ACTIONS(10553), 1, - sym__newline, - STATE(5996), 1, - aux_sym__simple_statements_repeat1, + [168985] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149749] = 4, - ACTIONS(7469), 1, + ACTIONS(10761), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(10555), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [168997] = 4, + ACTIONS(10763), 1, + anon_sym_COMMA, + ACTIONS(10765), 1, + anon_sym_RBRACK, + STATE(6410), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149763] = 4, - ACTIONS(9107), 1, + [169011] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10557), 1, + ACTIONS(10767), 1, anon_sym_GT, - ACTIONS(10559), 1, + ACTIONS(10769), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, - [149791] = 4, - ACTIONS(6347), 1, + [169025] = 4, + ACTIONS(10771), 1, anon_sym_RPAREN, - ACTIONS(10563), 1, + ACTIONS(10773), 1, anon_sym_COMMA, - STATE(5732), 1, - aux_sym__parameters_repeat1, + STATE(6396), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149805] = 3, - ACTIONS(6959), 1, - anon_sym_EQ, + [169039] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10775), 1, + anon_sym_COLON, + STATE(7115), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [149817] = 4, - ACTIONS(7625), 1, - anon_sym_RPAREN, - ACTIONS(7627), 1, + [169053] = 4, + ACTIONS(2437), 1, + anon_sym_RBRACK, + ACTIONS(10777), 1, anon_sym_COMMA, - STATE(6006), 1, - aux_sym_argument_list_repeat1, + STATE(6561), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149831] = 4, - ACTIONS(10565), 1, - anon_sym_RPAREN, - ACTIONS(10567), 1, + [169067] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6008), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10779), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149845] = 4, - ACTIONS(9676), 1, + [169081] = 4, + ACTIONS(10003), 1, anon_sym_COMMA, - ACTIONS(10569), 1, + ACTIONS(10781), 1, anon_sym_RBRACK, - STATE(5847), 1, + STATE(6203), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149859] = 4, - ACTIONS(8219), 1, - anon_sym_COMMA, - ACTIONS(8221), 1, - anon_sym_RBRACK, - STATE(6011), 1, - aux_sym_subscript_repeat1, + [169095] = 4, + ACTIONS(10783), 1, + anon_sym_SEMI, + ACTIONS(10785), 1, + sym__newline, + STATE(6380), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149873] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10571), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [169109] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10787), 1, + anon_sym_GT, + ACTIONS(10789), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149887] = 4, - ACTIONS(10573), 1, - anon_sym_COMMA, - ACTIONS(10576), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + [169123] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149901] = 4, - ACTIONS(7342), 1, + ACTIONS(7180), 3, anon_sym_RPAREN, - ACTIONS(7500), 1, anon_sym_COMMA, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + anon_sym_EQ, + [169133] = 4, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(10791), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149915] = 4, - ACTIONS(2375), 1, - anon_sym_RPAREN, - ACTIONS(10578), 1, + [169147] = 4, + ACTIONS(6950), 1, + anon_sym_COLON, + ACTIONS(10793), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + STATE(6290), 1, + aux_sym_for_in_loop_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149929] = 4, - ACTIONS(7342), 1, + [169161] = 4, + ACTIONS(2157), 1, anon_sym_RBRACK, - ACTIONS(7537), 1, + ACTIONS(10796), 1, anon_sym_COMMA, - STATE(5793), 1, - aux_sym__collection_elements_repeat1, + STATE(6106), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149943] = 4, - ACTIONS(2377), 1, - anon_sym_RPAREN, - ACTIONS(10580), 1, + [169175] = 4, + ACTIONS(4295), 1, + anon_sym_RBRACK, + ACTIONS(10798), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + STATE(6171), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149957] = 4, - ACTIONS(10582), 1, - anon_sym_COMMA, - ACTIONS(10584), 1, - anon_sym_RBRACK, - STATE(5802), 1, - aux_sym__patterns_repeat1, + [169189] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10800), 1, + anon_sym_GT, + ACTIONS(10802), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149971] = 4, - ACTIONS(10586), 1, - anon_sym_COMMA, - ACTIONS(10588), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + [169203] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10804), 1, + anon_sym_COLON, + ACTIONS(10806), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149985] = 4, - ACTIONS(10590), 1, + [169217] = 4, + ACTIONS(9522), 1, + anon_sym_COLON, + ACTIONS(9526), 1, + sym__newline, + ACTIONS(10808), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169231] = 4, + ACTIONS(10810), 1, anon_sym_COMMA, - ACTIONS(10592), 1, + ACTIONS(10812), 1, anon_sym_RBRACK, - STATE(5908), 1, + STATE(6192), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [149999] = 4, - ACTIONS(9917), 1, + [169245] = 4, + ACTIONS(10225), 1, anon_sym_LPAREN, - ACTIONS(10594), 1, + ACTIONS(10814), 1, anon_sym_COLON, - ACTIONS(10596), 1, + ACTIONS(10816), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150013] = 4, - ACTIONS(10598), 1, - anon_sym_STAR, - ACTIONS(10600), 1, - sym_string_start, - STATE(3437), 1, - sym_string, + [169259] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(10818), 1, + anon_sym_GT, + ACTIONS(10820), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150027] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10602), 1, + [169273] = 4, + ACTIONS(10316), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10822), 1, + anon_sym_LPAREN, + ACTIONS(10824), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150041] = 4, - ACTIONS(7469), 1, + [169287] = 4, + ACTIONS(10826), 1, anon_sym_COMMA, - ACTIONS(10604), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10828), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150055] = 4, - ACTIONS(7469), 1, + [169301] = 4, + ACTIONS(7692), 1, + anon_sym_RPAREN, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(10606), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150069] = 4, - ACTIONS(10608), 1, - anon_sym_SEMI, - ACTIONS(10610), 1, + [169315] = 4, + ACTIONS(8209), 1, sym__newline, - STATE(6021), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(10830), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150083] = 4, - ACTIONS(7469), 1, + [169329] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10612), 1, + ACTIONS(10832), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150097] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10614), 1, - anon_sym_GT, - ACTIONS(10616), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [150111] = 3, - ACTIONS(9107), 1, - anon_sym_LPAREN, + [169343] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10834), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9941), 2, + [169357] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_COLON, - [150123] = 4, - ACTIONS(1575), 1, + ACTIONS(10836), 1, sym__newline, - ACTIONS(10618), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150137] = 4, - ACTIONS(7469), 1, + [169371] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10620), 1, + ACTIONS(10838), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150151] = 4, - ACTIONS(8598), 1, - anon_sym_RPAREN, - ACTIONS(8600), 1, - anon_sym_COMMA, - STATE(6027), 1, - aux_sym_argument_list_repeat1, + [169385] = 3, + ACTIONS(9945), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150165] = 4, - ACTIONS(10622), 1, + ACTIONS(9949), 2, anon_sym_RPAREN, - ACTIONS(10624), 1, anon_sym_COMMA, - STATE(6029), 1, - aux_sym_argument_list_repeat1, + [169397] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10840), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150179] = 4, - ACTIONS(8230), 1, + [169411] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8232), 1, - anon_sym_RBRACK, - STATE(6031), 1, - aux_sym_subscript_repeat1, + ACTIONS(10842), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150193] = 4, - ACTIONS(7469), 1, + [169425] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10626), 1, + ACTIONS(10844), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150207] = 4, - ACTIONS(2383), 1, - anon_sym_RPAREN, - ACTIONS(10628), 1, + [169439] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10846), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150221] = 4, - ACTIONS(4313), 1, - anon_sym_RPAREN, - ACTIONS(10630), 1, + [169453] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(10848), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169467] = 4, + ACTIONS(8670), 1, anon_sym_COMMA, - STATE(6072), 1, - aux_sym__patterns_repeat1, + ACTIONS(8672), 1, + anon_sym_RBRACE, + STATE(6511), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150235] = 4, - ACTIONS(2385), 1, - anon_sym_RPAREN, - ACTIONS(10632), 1, + [169481] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10850), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150249] = 4, - ACTIONS(10634), 1, + [169495] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10636), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10852), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150263] = 4, - ACTIONS(10638), 1, + [169509] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10640), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10854), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150277] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10642), 1, - anon_sym_COLON, - STATE(6885), 1, - sym_external_definition, + [169523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150291] = 4, - ACTIONS(10584), 1, + ACTIONS(9951), 3, anon_sym_RPAREN, - ACTIONS(10644), 1, anon_sym_COMMA, - STATE(6028), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + [169533] = 4, + ACTIONS(10856), 1, + anon_sym_RPAREN, + ACTIONS(10858), 1, + anon_sym_COMMA, + STATE(6318), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150305] = 4, - ACTIONS(7469), 1, + [169547] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10646), 1, + ACTIONS(10861), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150319] = 4, - ACTIONS(7469), 1, + [169561] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10648), 1, + ACTIONS(10863), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150333] = 4, - ACTIONS(10650), 1, - anon_sym_SEMI, - ACTIONS(10652), 1, + [169575] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10865), 1, sym__newline, - STATE(6039), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150347] = 4, - ACTIONS(8234), 1, + [169589] = 4, + ACTIONS(5508), 1, + anon_sym_RPAREN, + ACTIONS(10867), 1, anon_sym_COMMA, - ACTIONS(8236), 1, - anon_sym_RBRACK, - STATE(5790), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [150361] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10654), 1, - anon_sym_GT, - ACTIONS(10656), 1, - anon_sym_QMARK, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150375] = 4, - ACTIONS(1579), 1, + [169603] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10869), 1, sym__newline, - ACTIONS(10658), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150389] = 4, - ACTIONS(10660), 1, - anon_sym_SEMI, - ACTIONS(10662), 1, + [169617] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(10871), 1, sym__newline, - STATE(6214), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150403] = 4, - ACTIONS(8680), 1, - anon_sym_RPAREN, - ACTIONS(8682), 1, + [169631] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6046), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10873), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150417] = 4, - ACTIONS(10664), 1, - anon_sym_RPAREN, - ACTIONS(10666), 1, + [169645] = 4, + ACTIONS(10875), 1, anon_sym_COMMA, - STATE(6048), 1, - aux_sym_argument_list_repeat1, + ACTIONS(10877), 1, + anon_sym_RBRACE, + STATE(6394), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150431] = 4, - ACTIONS(8238), 1, - anon_sym_COMMA, - ACTIONS(8240), 1, - anon_sym_RBRACK, - STATE(6051), 1, - aux_sym_subscript_repeat1, + [169659] = 4, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(10879), 1, + anon_sym_RBRACE, + STATE(7240), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150445] = 4, - ACTIONS(7900), 1, - sym__newline, - ACTIONS(10668), 1, + [169673] = 4, + ACTIONS(10763), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(10881), 1, + anon_sym_RBRACK, + STATE(6279), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150459] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10670), 1, - anon_sym_GT, - ACTIONS(10672), 1, - anon_sym_QMARK, + [169687] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150473] = 4, - ACTIONS(2391), 1, - anon_sym_RPAREN, - ACTIONS(10674), 1, + ACTIONS(9951), 3, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [169697] = 4, + ACTIONS(5510), 1, + anon_sym_RBRACK, + ACTIONS(10883), 1, + anon_sym_COMMA, + STATE(6550), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150487] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7601), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + [169711] = 4, + ACTIONS(10885), 1, + sym_identifier, + ACTIONS(10887), 1, + anon_sym_COLON, + ACTIONS(10889), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150501] = 4, - ACTIONS(2393), 1, + [169725] = 4, + ACTIONS(9949), 1, anon_sym_RPAREN, - ACTIONS(10676), 1, + ACTIONS(10891), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150515] = 4, - ACTIONS(9953), 1, + [169739] = 4, + ACTIONS(10706), 1, + sym__newline, + ACTIONS(10894), 1, + anon_sym_LPAREN, + ACTIONS(10896), 1, anon_sym_COLON, - ACTIONS(10678), 1, - anon_sym_COMMA, - STATE(6049), 1, - aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150529] = 4, - ACTIONS(10681), 1, - anon_sym_COMMA, - ACTIONS(10683), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + [169753] = 4, + ACTIONS(10898), 1, + anon_sym_SEMI, + ACTIONS(10900), 1, + sym__newline, + STATE(6365), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150543] = 4, - ACTIONS(10685), 1, + [169767] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10687), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10902), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150557] = 4, - ACTIONS(7953), 1, - anon_sym_RBRACK, - ACTIONS(10689), 1, + [169781] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - STATE(6052), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [150571] = 3, - ACTIONS(10694), 1, - anon_sym_EQ, + ACTIONS(10904), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10692), 2, - sym__newline, - anon_sym_COMMA, - [150583] = 4, - ACTIONS(7469), 1, + [169795] = 4, + ACTIONS(9281), 1, + anon_sym_RPAREN, + ACTIONS(10906), 1, anon_sym_COMMA, - ACTIONS(10696), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6337), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150597] = 4, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(10698), 1, + [169809] = 4, + ACTIONS(8567), 1, anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8569), 1, + anon_sym_RBRACE, + STATE(6448), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150611] = 2, + [169823] = 4, + ACTIONS(8236), 1, + sym__newline, + ACTIONS(8901), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9853), 3, - sym__newline, - anon_sym_SEMI, + [169837] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - [150621] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10700), 1, + ACTIONS(10909), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150635] = 3, - ACTIONS(2656), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2658), 2, - anon_sym_except_STAR, - anon_sym_finally, - [150647] = 4, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(10702), 1, - anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + [169851] = 4, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7794), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150661] = 4, - ACTIONS(9107), 1, + [169865] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10704), 1, + ACTIONS(10911), 1, anon_sym_GT, - ACTIONS(10706), 1, + ACTIONS(10913), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150675] = 4, - ACTIONS(7804), 1, + [169879] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_COLON, + ACTIONS(10917), 1, sym__newline, - ACTIONS(10708), 1, - anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150689] = 4, - ACTIONS(5643), 1, + [169893] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10919), 1, + anon_sym_COLON, + STATE(7081), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169907] = 4, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(10921), 1, + anon_sym_DOT, + STATE(6592), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169921] = 4, + ACTIONS(5666), 1, anon_sym_RPAREN, - ACTIONS(10710), 1, + ACTIONS(10923), 1, anon_sym_COMMA, - STATE(6234), 1, + STATE(6332), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150703] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10712), 1, - anon_sym_COLON, - ACTIONS(10714), 1, - sym__newline, + [169935] = 4, + ACTIONS(10364), 1, + sym_string_start, + ACTIONS(10925), 1, + anon_sym_STAR, + STATE(3615), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150717] = 4, - ACTIONS(8242), 1, + [169949] = 4, + ACTIONS(8355), 1, anon_sym_COMMA, - ACTIONS(8244), 1, - anon_sym_RBRACK, - STATE(6067), 1, - aux_sym_subscript_repeat1, + ACTIONS(8357), 1, + anon_sym_RBRACE, + STATE(6391), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150731] = 4, - ACTIONS(9911), 1, - anon_sym_COMMA, - ACTIONS(10702), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, + [169963] = 4, + ACTIONS(9526), 1, + sym__newline, + ACTIONS(10927), 1, + anon_sym_LPAREN, + ACTIONS(10929), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150745] = 4, - ACTIONS(10716), 1, + [169977] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10718), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10931), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150759] = 4, - ACTIONS(10720), 1, + [169991] = 4, + ACTIONS(10243), 1, anon_sym_COMMA, - ACTIONS(10722), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + ACTIONS(10933), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150773] = 4, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(10724), 1, + [170005] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + ACTIONS(10935), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150787] = 2, + [170019] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10937), 1, + anon_sym_COLON, + STATE(7121), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5251), 3, + [170033] = 4, + ACTIONS(9303), 1, anon_sym_LPAREN, - 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(10939), 1, + anon_sym_GT, + ACTIONS(10941), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150811] = 4, - ACTIONS(5606), 1, + [170047] = 4, + ACTIONS(5668), 1, anon_sym_RBRACK, - ACTIONS(10729), 1, + ACTIONS(10943), 1, anon_sym_COMMA, - STATE(6275), 1, + STATE(6550), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150825] = 4, - ACTIONS(6749), 1, - anon_sym_RPAREN, - ACTIONS(10731), 1, - anon_sym_COMMA, - STATE(6072), 1, - aux_sym__patterns_repeat1, + [170061] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_COLON, + STATE(7308), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150839] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10734), 1, - anon_sym_GT, - ACTIONS(10736), 1, - anon_sym_QMARK, + [170075] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10947), 1, + anon_sym_COLON, + STATE(7146), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150853] = 4, - ACTIONS(7469), 1, + [170089] = 4, + ACTIONS(10243), 1, anon_sym_COMMA, - ACTIONS(10738), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(10949), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150867] = 4, - ACTIONS(7469), 1, + [170103] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10740), 1, + ACTIONS(10951), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150881] = 4, - ACTIONS(10742), 1, - anon_sym_COMMA, - ACTIONS(10744), 1, - anon_sym_RBRACE, - STATE(5750), 1, - aux_sym_dict_pattern_repeat1, + [170117] = 3, + ACTIONS(10955), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150895] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10746), 1, + ACTIONS(10953), 2, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [170129] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(10957), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150909] = 4, - ACTIONS(7469), 1, + [170143] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10748), 1, + ACTIONS(10959), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150923] = 4, - ACTIONS(7469), 1, + [170157] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10750), 1, + ACTIONS(10961), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150937] = 4, - ACTIONS(7469), 1, + [170171] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10752), 1, + ACTIONS(10963), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150951] = 2, + [170185] = 4, + ACTIONS(1507), 1, + sym__newline, + ACTIONS(10965), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10754), 3, - sym__newline, + [170199] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10967), 1, anon_sym_COLON, - anon_sym_nogil, - [150961] = 2, + STATE(7177), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5174), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [150971] = 4, - ACTIONS(10756), 1, + [170213] = 4, + ACTIONS(10969), 1, anon_sym_COMMA, - ACTIONS(10758), 1, + ACTIONS(10971), 1, anon_sym_RBRACE, - STATE(5750), 1, + STATE(6547), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150985] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10760), 1, + [170227] = 4, + ACTIONS(10973), 1, + anon_sym_COLON, + ACTIONS(10975), 1, + anon_sym_nogil, + ACTIONS(10977), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [150999] = 4, - ACTIONS(7469), 1, + [170241] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10762), 1, + ACTIONS(10979), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151013] = 4, - ACTIONS(7469), 1, + [170255] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(10981), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170269] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(10983), 1, + anon_sym_COLON, + STATE(7185), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170283] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10764), 1, + ACTIONS(10985), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151027] = 4, - ACTIONS(9802), 1, - anon_sym_RBRACK, - ACTIONS(10766), 1, + [170297] = 4, + ACTIONS(10987), 1, anon_sym_COMMA, - STATE(6087), 1, - aux_sym_type_index_repeat1, + ACTIONS(10989), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151041] = 4, - ACTIONS(6749), 1, - anon_sym_RBRACK, - ACTIONS(10769), 1, - anon_sym_COMMA, - STATE(6088), 1, - aux_sym__patterns_repeat1, + [170311] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(10991), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151055] = 4, - ACTIONS(8404), 1, + [170325] = 4, + ACTIONS(10993), 1, anon_sym_COMMA, - ACTIONS(10772), 1, - anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + ACTIONS(10995), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151069] = 4, - ACTIONS(10042), 1, + [170339] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10774), 1, + ACTIONS(10997), 1, anon_sym_COLON, - STATE(6910), 1, + STATE(7205), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151083] = 4, - ACTIONS(7953), 1, - anon_sym_COLON, - ACTIONS(10776), 1, + [170353] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - STATE(6091), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(10999), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151097] = 4, - ACTIONS(9433), 1, - anon_sym_COLON, - ACTIONS(10779), 1, - anon_sym_RBRACE, - STATE(6652), 1, - sym_format_specifier, + [170367] = 4, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(11001), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151111] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10781), 1, + [170381] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11003), 1, anon_sym_COLON, - ACTIONS(10783), 1, - sym__newline, + STATE(7226), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151125] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(10785), 1, + [170395] = 4, + ACTIONS(1503), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11005), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151139] = 4, - ACTIONS(7469), 1, + [170409] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10787), 1, + ACTIONS(11007), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151153] = 4, - ACTIONS(7469), 1, + [170423] = 4, + ACTIONS(5658), 1, + anon_sym_RPAREN, + ACTIONS(11009), 1, anon_sym_COMMA, - ACTIONS(10789), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151167] = 4, - ACTIONS(9664), 1, - anon_sym_COMMA, - ACTIONS(10791), 1, - anon_sym_RPAREN, - STATE(6116), 1, - aux_sym_function_pointer_type_repeat1, + [170437] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11011), 1, + anon_sym_COLON, + STATE(7231), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151181] = 4, - ACTIONS(7469), 1, + [170451] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10793), 1, + ACTIONS(11013), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151195] = 3, - ACTIONS(8871), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8873), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151207] = 4, - ACTIONS(9917), 1, + [170465] = 3, + ACTIONS(9303), 1, anon_sym_LPAREN, - ACTIONS(10795), 1, - anon_sym_COLON, - ACTIONS(10797), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151221] = 4, - ACTIONS(10799), 1, + ACTIONS(10761), 2, anon_sym_COMMA, - ACTIONS(10802), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [151235] = 4, - ACTIONS(10086), 1, - sym__newline, - ACTIONS(10804), 1, - sym_identifier, - ACTIONS(10806), 1, anon_sym_COLON, - ACTIONS(3), 2, + [170477] = 3, + ACTIONS(9367), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [151249] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10808), 1, - anon_sym_COLON, - ACTIONS(10810), 1, - sym__newline, + ACTIONS(9369), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170489] = 4, + ACTIONS(5660), 1, + anon_sym_RBRACK, + ACTIONS(11015), 1, + anon_sym_COMMA, + STATE(6550), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151263] = 2, + [170503] = 4, + ACTIONS(5571), 1, + anon_sym_RPAREN, + ACTIONS(11017), 1, + anon_sym_COMMA, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [151273] = 4, - ACTIONS(7469), 1, + [170517] = 4, + ACTIONS(7589), 1, anon_sym_COMMA, - ACTIONS(10812), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7601), 1, + anon_sym_RBRACE, + STATE(6073), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151287] = 4, - ACTIONS(7469), 1, + [170531] = 4, + ACTIONS(5573), 1, + anon_sym_RBRACK, + ACTIONS(11019), 1, anon_sym_COMMA, - ACTIONS(10814), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6550), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151301] = 4, - ACTIONS(2827), 1, - anon_sym_RPAREN, - ACTIONS(10816), 1, + [170545] = 4, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(11021), 1, anon_sym_COMMA, - STATE(6198), 1, - aux_sym_with_clause_repeat1, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151315] = 4, - ACTIONS(7469), 1, + [170559] = 4, + ACTIONS(2229), 1, + anon_sym_in, + ACTIONS(11023), 1, anon_sym_COMMA, - ACTIONS(10818), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6510), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151329] = 4, - ACTIONS(7904), 1, - sym__newline, - ACTIONS(8608), 1, + [170573] = 4, + ACTIONS(10243), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11025), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151343] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, + [170587] = 4, + ACTIONS(11027), 1, + anon_sym_COMMA, + ACTIONS(11029), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10820), 2, + [170601] = 4, + ACTIONS(10622), 1, anon_sym_RPAREN, + ACTIONS(11031), 1, anon_sym_COMMA, - [151355] = 4, - ACTIONS(10822), 1, + STATE(6164), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170615] = 4, + ACTIONS(6764), 1, anon_sym_RPAREN, - ACTIONS(10824), 1, + ACTIONS(11033), 1, anon_sym_COMMA, - STATE(5997), 1, - aux_sym__parameters_repeat1, + STATE(6240), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151369] = 4, - ACTIONS(7469), 1, + [170629] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10826), 1, + ACTIONS(11035), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151383] = 3, - ACTIONS(6957), 1, - anon_sym_COLON, + [170643] = 4, + ACTIONS(11037), 1, + anon_sym_COMMA, + ACTIONS(11039), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, - anon_sym_RPAREN, + [170657] = 4, + ACTIONS(9500), 1, + anon_sym_RBRACK, + ACTIONS(10221), 1, anon_sym_COMMA, - [151395] = 4, - ACTIONS(10828), 1, - anon_sym_SEMI, - ACTIONS(10830), 1, - sym__newline, - STATE(6215), 1, - aux_sym__simple_statements_repeat1, + STATE(6238), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151409] = 2, + [170671] = 4, + ACTIONS(9845), 1, + anon_sym_COLON, + ACTIONS(9849), 1, + sym__newline, + ACTIONS(11041), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10832), 3, + [170685] = 4, + ACTIONS(9849), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [151419] = 4, - ACTIONS(10820), 1, - anon_sym_RPAREN, - ACTIONS(10834), 1, - anon_sym_COMMA, - STATE(6116), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(11043), 1, + anon_sym_LPAREN, + ACTIONS(11045), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151433] = 4, - ACTIONS(7469), 1, + [170699] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10837), 1, + ACTIONS(11047), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151447] = 4, - ACTIONS(7469), 1, + [170713] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10839), 1, + ACTIONS(11049), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151461] = 3, - ACTIONS(9068), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [170727] = 4, + ACTIONS(8260), 1, + sym__newline, + ACTIONS(8283), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9070), 2, - anon_sym_LBRACE, + [170741] = 4, + ACTIONS(11051), 1, + anon_sym_COMMA, + ACTIONS(11053), 1, anon_sym_RBRACE, - [151473] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10841), 1, - anon_sym_COLON, - STATE(6829), 1, - sym_external_definition, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151487] = 4, - ACTIONS(7175), 1, - sym_identifier, - ACTIONS(10843), 1, - anon_sym_DOT, - STATE(6229), 1, - aux_sym_type_qualifier_repeat1, + [170755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151501] = 4, - ACTIONS(10600), 1, - sym_string_start, - ACTIONS(10845), 1, - anon_sym_STAR, - STATE(3440), 1, - sym_string, + ACTIONS(9269), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [170765] = 4, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(11055), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151515] = 4, - ACTIONS(7500), 1, + [170779] = 4, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(7638), 1, + ACTIONS(11057), 1, anon_sym_RPAREN, - STATE(5976), 1, + STATE(6520), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151529] = 3, - ACTIONS(9686), 1, - anon_sym_as, + [170793] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(11059), 1, + anon_sym_GT, + ACTIONS(11061), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [151541] = 4, - ACTIONS(10222), 1, + [170807] = 4, + ACTIONS(11063), 1, anon_sym_COMMA, - ACTIONS(10847), 1, - anon_sym_in, - STATE(6217), 1, - aux_sym__patterns_repeat1, + ACTIONS(11066), 1, + anon_sym_RBRACK, + STATE(6410), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151555] = 4, - ACTIONS(9888), 1, - anon_sym_RPAREN, - ACTIONS(10849), 1, - anon_sym_COMMA, - STATE(6126), 1, - aux_sym__import_list_repeat1, + [170821] = 4, + ACTIONS(10420), 1, + sym__newline, + ACTIONS(10422), 1, + sym__indent, + STATE(2151), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151569] = 4, - ACTIONS(7469), 1, + [170835] = 4, + ACTIONS(11068), 1, anon_sym_COMMA, - ACTIONS(10852), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11070), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151583] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10854), 1, + [170849] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11072), 1, anon_sym_COLON, - STATE(6877), 1, - sym_external_definition, + ACTIONS(11074), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151597] = 3, - ACTIONS(9177), 1, - anon_sym_LPAREN, + [170863] = 4, + ACTIONS(11076), 1, + anon_sym_COMMA, + ACTIONS(11078), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10856), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [151609] = 4, - ACTIONS(8838), 1, + [170877] = 4, + ACTIONS(7813), 1, anon_sym_RPAREN, - ACTIONS(10858), 1, + ACTIONS(7815), 1, anon_sym_COMMA, - STATE(6130), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [151623] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10861), 1, - anon_sym_COLON, - STATE(6897), 1, - sym_external_definition, + STATE(6480), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151637] = 4, - ACTIONS(10222), 1, + [170891] = 4, + ACTIONS(11080), 1, + anon_sym_RPAREN, + ACTIONS(11082), 1, anon_sym_COMMA, - ACTIONS(10863), 1, - anon_sym_in, - STATE(6217), 1, - aux_sym__patterns_repeat1, + STATE(6483), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151651] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10865), 1, - anon_sym_COLON, + [170905] = 4, + ACTIONS(5520), 1, + anon_sym_RPAREN, + ACTIONS(11084), 1, + anon_sym_COMMA, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151665] = 4, - ACTIONS(8838), 1, - anon_sym_RBRACK, - ACTIONS(10867), 1, + [170919] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6134), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(11086), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151679] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10870), 1, - anon_sym_COLON, - STATE(6934), 1, - sym_external_definition, + [170933] = 4, + ACTIONS(8428), 1, + anon_sym_COMMA, + ACTIONS(8430), 1, + anon_sym_RBRACK, + STATE(6486), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151693] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10872), 1, - anon_sym_COLON, + [170947] = 4, + ACTIONS(10420), 1, + sym__newline, + ACTIONS(10422), 1, + sym__indent, + STATE(2141), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151707] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(10874), 1, + [170961] = 4, + ACTIONS(11088), 1, + anon_sym_COMMA, + ACTIONS(11090), 1, anon_sym_COLON, + STATE(6066), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151721] = 4, - ACTIONS(10042), 1, + [170975] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10876), 1, + ACTIONS(11092), 1, anon_sym_COLON, STATE(6955), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151735] = 4, - ACTIONS(10878), 1, - anon_sym_SEMI, - ACTIONS(10880), 1, + [170989] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11094), 1, sym__newline, - STATE(6167), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151749] = 2, + [171003] = 4, + ACTIONS(10364), 1, + sym_string_start, + ACTIONS(11096), 1, + anon_sym_STAR, + STATE(3618), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [171017] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, anon_sym_COLON, + ACTIONS(11100), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151773] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10884), 1, - anon_sym_COLON, - STATE(6973), 1, - sym_external_definition, + [171031] = 4, + ACTIONS(10243), 1, + anon_sym_COMMA, + ACTIONS(11102), 1, + anon_sym_in, + STATE(6392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151787] = 4, - ACTIONS(10886), 1, - anon_sym_SEMI, - ACTIONS(10888), 1, + [171045] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11104), 1, sym__newline, - STATE(6184), 1, - aux_sym__simple_statements_repeat1, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151801] = 4, - ACTIONS(10042), 1, + [171059] = 3, + ACTIONS(11108), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11106), 2, + sym__newline, + anon_sym_COMMA, + [171071] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10890), 1, + ACTIONS(11110), 1, anon_sym_COLON, - STATE(6982), 1, + STATE(6966), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151815] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7595), 1, + [171085] = 3, + ACTIONS(7223), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7221), 2, anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COMMA, + [171097] = 4, + ACTIONS(11112), 1, + anon_sym_SEMI, + ACTIONS(11114), 1, + sym__newline, + STATE(6541), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151829] = 4, - ACTIONS(10042), 1, + [171111] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10892), 1, + ACTIONS(11116), 1, anon_sym_COLON, - STATE(6986), 1, + STATE(6973), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151843] = 4, - ACTIONS(10222), 1, + [171125] = 4, + ACTIONS(10243), 1, anon_sym_COMMA, - ACTIONS(10894), 1, + ACTIONS(11118), 1, anon_sym_in, - STATE(6217), 1, + STATE(6392), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151857] = 4, - ACTIONS(8728), 1, + [171139] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8730), 1, - anon_sym_RBRACE, - STATE(6186), 1, - aux_sym_dictionary_repeat1, + ACTIONS(11120), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151871] = 4, - ACTIONS(7500), 1, + [171153] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7591), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(11122), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151885] = 4, - ACTIONS(10195), 1, + [171167] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11124), 1, sym__newline, - ACTIONS(10197), 1, - sym__indent, - STATE(2074), 1, - sym__match_block, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151899] = 4, - ACTIONS(10042), 1, + [171181] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10896), 1, + ACTIONS(11126), 1, anon_sym_COLON, - STATE(6633), 1, + STATE(6983), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151913] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10898), 1, - anon_sym_GT, - ACTIONS(10900), 1, - anon_sym_QMARK, + [171195] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11128), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151927] = 4, - ACTIONS(10600), 1, - sym_string_start, - ACTIONS(10902), 1, - anon_sym_STAR, - STATE(3445), 1, - sym_string, + [171209] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11130), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151941] = 4, - ACTIONS(10260), 1, - sym__newline, - ACTIONS(10262), 1, - sym__indent, - STATE(2065), 1, - sym__match_block, + [171223] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11132), 1, + anon_sym_COLON, + STATE(6985), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151955] = 4, - ACTIONS(6749), 1, - anon_sym_in, - ACTIONS(10904), 1, + [171237] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6155), 1, - aux_sym__patterns_repeat1, + ACTIONS(11134), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151969] = 4, - ACTIONS(10222), 1, + [171251] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10907), 1, - anon_sym_in, - STATE(6217), 1, - aux_sym__patterns_repeat1, + ACTIONS(11136), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151983] = 4, - ACTIONS(8788), 1, + [171265] = 4, + ACTIONS(8189), 1, + sym__newline, + ACTIONS(9069), 1, anon_sym_COMMA, - ACTIONS(8790), 1, - anon_sym_RBRACE, - STATE(6231), 1, - aux_sym_dictionary_repeat1, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [151997] = 4, - ACTIONS(10042), 1, + [171279] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10909), 1, + ACTIONS(11138), 1, anon_sym_COLON, - STATE(6644), 1, + STATE(6994), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152011] = 4, - ACTIONS(10911), 1, + [171293] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10913), 1, - anon_sym_COLON, - STATE(6202), 1, - aux_sym_match_statement_repeat1, + ACTIONS(11140), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152025] = 4, - ACTIONS(10042), 1, + [171307] = 4, + ACTIONS(9863), 1, + anon_sym_RBRACK, + ACTIONS(10221), 1, + anon_sym_COMMA, + STATE(6498), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171321] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10915), 1, + ACTIONS(11142), 1, anon_sym_COLON, - STATE(6651), 1, + STATE(6999), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152039] = 4, - ACTIONS(10222), 1, + [171335] = 4, + ACTIONS(2525), 1, + anon_sym_RBRACE, + ACTIONS(11144), 1, anon_sym_COMMA, - ACTIONS(10917), 1, - anon_sym_in, - STATE(6217), 1, - aux_sym__patterns_repeat1, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152053] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10919), 1, - anon_sym_COLON, - ACTIONS(10921), 1, - sym__newline, + [171349] = 4, + ACTIONS(11146), 1, + anon_sym_COMMA, + ACTIONS(11148), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152067] = 4, - ACTIONS(10042), 1, + [171363] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10923), 1, + ACTIONS(11150), 1, anon_sym_COLON, - STATE(6660), 1, + STATE(7002), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152081] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10925), 1, + [171377] = 4, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7855), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171391] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11152), 1, anon_sym_COLON, - STATE(6662), 1, - sym_external_definition, + ACTIONS(11154), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152095] = 4, - ACTIONS(8774), 1, + [171405] = 4, + ACTIONS(11156), 1, + anon_sym_LPAREN, + ACTIONS(11158), 1, + anon_sym_COLON, + ACTIONS(11160), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171419] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(8776), 1, - anon_sym_RBRACE, - STATE(6203), 1, - aux_sym_dictionary_repeat1, + ACTIONS(11162), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152109] = 4, - ACTIONS(10042), 1, + [171433] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10927), 1, + ACTIONS(11164), 1, anon_sym_COLON, - STATE(6671), 1, + STATE(7029), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152123] = 4, - ACTIONS(1565), 1, + [171447] = 4, + ACTIONS(10364), 1, + sym_string_start, + ACTIONS(11166), 1, + anon_sym_STAR, + STATE(3617), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171461] = 4, + ACTIONS(11168), 1, + anon_sym_COLON, + ACTIONS(11170), 1, + anon_sym_nogil, + ACTIONS(11172), 1, sym__newline, - ACTIONS(10929), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152137] = 4, - ACTIONS(7469), 1, + [171475] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10931), 1, + ACTIONS(11174), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152151] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10933), 1, - anon_sym_GT, - ACTIONS(10935), 1, - anon_sym_QMARK, + [171489] = 4, + ACTIONS(8480), 1, + anon_sym_COMMA, + ACTIONS(8482), 1, + anon_sym_RBRACE, + STATE(6554), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152165] = 4, - ACTIONS(10042), 1, + [171503] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10937), 1, + ACTIONS(11176), 1, anon_sym_COLON, - STATE(6676), 1, + STATE(7037), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152179] = 4, - ACTIONS(10260), 1, - sym__newline, - ACTIONS(10262), 1, - sym__indent, - STATE(2168), 1, - sym__match_block, + [171517] = 4, + ACTIONS(10009), 1, + anon_sym_COMMA, + ACTIONS(11178), 1, + anon_sym_RPAREN, + STATE(6243), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152193] = 4, - ACTIONS(10042), 1, + [171531] = 4, + ACTIONS(5579), 1, + anon_sym_RPAREN, + ACTIONS(11180), 1, + anon_sym_COMMA, + STATE(6332), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171545] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10939), 1, + ACTIONS(11182), 1, anon_sym_COLON, - STATE(6679), 1, + STATE(7044), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152207] = 4, - ACTIONS(7469), 1, + [171559] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10941), 1, + ACTIONS(11184), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152221] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(10943), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + [171573] = 4, + ACTIONS(11160), 1, + sym__newline, + ACTIONS(11186), 1, + sym_identifier, + ACTIONS(11188), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171587] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11190), 1, + anon_sym_COLON, + STATE(7053), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152235] = 4, - ACTIONS(7500), 1, + [171601] = 4, + ACTIONS(10856), 1, + anon_sym_COLON, + ACTIONS(11192), 1, anon_sym_COMMA, - ACTIONS(10945), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + STATE(6467), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152249] = 4, - ACTIONS(9107), 1, - anon_sym_LPAREN, - ACTIONS(10947), 1, - anon_sym_GT, - ACTIONS(10949), 1, - anon_sym_QMARK, + [171615] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11195), 1, + anon_sym_COLON, + STATE(7054), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152263] = 4, - ACTIONS(10195), 1, + [171629] = 4, + ACTIONS(8267), 1, sym__newline, - ACTIONS(10197), 1, - sym__indent, - STATE(2060), 1, - sym__match_block, + ACTIONS(9059), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152277] = 4, - ACTIONS(10951), 1, + [171643] = 4, + ACTIONS(10763), 1, anon_sym_COMMA, - ACTIONS(10953), 1, - anon_sym_COLON, - STATE(6202), 1, - aux_sym_match_statement_repeat1, + ACTIONS(11197), 1, + anon_sym_RBRACK, + STATE(6410), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152291] = 2, + [171657] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11199), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4606), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152301] = 4, - ACTIONS(10042), 1, + [171671] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10955), 1, + ACTIONS(11201), 1, anon_sym_COLON, - STATE(6705), 1, + STATE(7063), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152315] = 4, - ACTIONS(10600), 1, - sym_string_start, - ACTIONS(10957), 1, - anon_sym_STAR, - STATE(3439), 1, - sym_string, + [171685] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(11203), 1, + anon_sym_GT, + ACTIONS(11205), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152329] = 4, - ACTIONS(7469), 1, + [171699] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10959), 1, + ACTIONS(11207), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152343] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10961), 1, + [171713] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11209), 1, anon_sym_COLON, - STATE(6713), 1, - sym_external_definition, + ACTIONS(11211), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152357] = 4, - ACTIONS(1553), 1, - sym__newline, - ACTIONS(10963), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, + [171727] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(11213), 1, + anon_sym_GT, + ACTIONS(11215), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152371] = 4, - ACTIONS(10042), 1, + [171741] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10965), 1, + ACTIONS(11217), 1, anon_sym_COLON, - STATE(6720), 1, + STATE(7068), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152385] = 4, - ACTIONS(2633), 1, - anon_sym_RBRACE, - ACTIONS(10967), 1, + [171755] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + ACTIONS(11219), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152399] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(10501), 1, + [171769] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11221), 1, sym__newline, - ACTIONS(10969), 1, - anon_sym_COLON, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152413] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10971), 1, - anon_sym_COLON, - STATE(6728), 1, - sym_external_definition, + [171783] = 4, + ACTIONS(2389), 1, + anon_sym_RPAREN, + ACTIONS(11223), 1, + anon_sym_COMMA, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152427] = 4, - ACTIONS(10042), 1, + [171797] = 4, + ACTIONS(10219), 1, anon_sym_LBRACK, - ACTIONS(10973), 1, + ACTIONS(11225), 1, anon_sym_COLON, - STATE(6596), 1, + STATE(6910), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152441] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10975), 1, + [171811] = 4, + ACTIONS(9879), 1, anon_sym_COLON, - STATE(6738), 1, - sym_external_definition, + ACTIONS(9883), 1, + sym__newline, + ACTIONS(11227), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152455] = 4, - ACTIONS(7469), 1, + [171825] = 4, + ACTIONS(2391), 1, + anon_sym_RPAREN, + ACTIONS(11229), 1, anon_sym_COMMA, - ACTIONS(10977), 1, + STATE(6162), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171839] = 4, + ACTIONS(9883), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11231), 1, + anon_sym_LPAREN, + ACTIONS(11233), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152469] = 4, - ACTIONS(7469), 1, + [171853] = 4, + ACTIONS(11235), 1, anon_sym_COMMA, - ACTIONS(10979), 1, + ACTIONS(11237), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171867] = 4, + ACTIONS(11239), 1, + anon_sym_COMMA, + ACTIONS(11241), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171881] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11243), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152483] = 4, - ACTIONS(8838), 1, + [171895] = 3, + ACTIONS(9234), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9236), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(10981), 1, + [171907] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6193), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(11245), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152497] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10984), 1, + [171921] = 4, + ACTIONS(7221), 1, + anon_sym_COMMA, + ACTIONS(7304), 1, + anon_sym_EQ, + ACTIONS(7380), 1, anon_sym_COLON, - STATE(6743), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152511] = 4, - ACTIONS(7469), 1, + [171935] = 4, + ACTIONS(2155), 1, + anon_sym_RBRACK, + ACTIONS(11247), 1, + anon_sym_COMMA, + STATE(6106), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171949] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(10986), 1, + ACTIONS(11249), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152525] = 4, - ACTIONS(10042), 1, - anon_sym_LBRACK, - ACTIONS(10988), 1, - anon_sym_COLON, - STATE(6746), 1, - sym_external_definition, + [171963] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11251), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152539] = 4, - ACTIONS(10260), 1, + [171977] = 4, + ACTIONS(8191), 1, sym__newline, - ACTIONS(10262), 1, - sym__indent, - STATE(2175), 1, - sym__match_block, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152553] = 4, - ACTIONS(10246), 1, - anon_sym_RPAREN, - ACTIONS(10990), 1, + [171991] = 3, + ACTIONS(9995), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9949), 2, anon_sym_COMMA, - STATE(6198), 1, - aux_sym_with_clause_repeat1, + anon_sym_RBRACK, + [172003] = 4, + ACTIONS(8309), 1, + anon_sym_COLON, + ACTIONS(11253), 1, + anon_sym_COMMA, + STATE(6496), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152567] = 4, - ACTIONS(7469), 1, + [172017] = 4, + ACTIONS(8745), 1, anon_sym_COMMA, - ACTIONS(10993), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11256), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152581] = 4, - ACTIONS(9510), 1, - anon_sym_COLON, - ACTIONS(9514), 1, + [172031] = 4, + ACTIONS(10221), 1, + anon_sym_COMMA, + ACTIONS(11256), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172045] = 3, + ACTIONS(10056), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(10001), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [172057] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11258), 1, sym__newline, - ACTIONS(10995), 1, - sym_identifier, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152595] = 4, - ACTIONS(9514), 1, + [172071] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11260), 1, sym__newline, - ACTIONS(10997), 1, - anon_sym_LPAREN, - ACTIONS(10999), 1, - anon_sym_COLON, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152609] = 4, - ACTIONS(11001), 1, + [172085] = 4, + ACTIONS(10009), 1, anon_sym_COMMA, - ACTIONS(11004), 1, - anon_sym_COLON, - STATE(6202), 1, - aux_sym_match_statement_repeat1, + ACTIONS(11262), 1, + anon_sym_RPAREN, + STATE(6243), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152623] = 4, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(11006), 1, + [172099] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + ACTIONS(11264), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152637] = 4, - ACTIONS(7965), 1, - sym__newline, - ACTIONS(7967), 1, + [172113] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11266), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152651] = 3, - ACTIONS(7004), 1, + [172127] = 3, + ACTIONS(11270), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, + ACTIONS(11268), 2, + sym__newline, anon_sym_COMMA, + [172139] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11272), 1, anon_sym_COLON, - [152663] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(11008), 1, + ACTIONS(11274), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152677] = 4, - ACTIONS(7469), 1, + [172153] = 4, + ACTIONS(10029), 1, + anon_sym_RPAREN, + ACTIONS(11276), 1, anon_sym_COMMA, - ACTIONS(11010), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6507), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152691] = 4, - ACTIONS(7469), 1, + [172167] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11012), 1, + ACTIONS(11279), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152705] = 4, - ACTIONS(7557), 1, - anon_sym_RPAREN, - ACTIONS(7559), 1, - anon_sym_COMMA, - STATE(6251), 1, - aux_sym_argument_list_repeat1, + [172181] = 4, + ACTIONS(10265), 1, + sym__newline, + ACTIONS(10267), 1, + sym__indent, + STATE(2107), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152719] = 4, - ACTIONS(11014), 1, - anon_sym_RPAREN, - ACTIONS(11016), 1, + [172195] = 4, + ACTIONS(7090), 1, + anon_sym_in, + ACTIONS(11281), 1, anon_sym_COMMA, - STATE(6252), 1, - aux_sym_argument_list_repeat1, + STATE(6510), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152733] = 4, - ACTIONS(9530), 1, - anon_sym_COLON, - ACTIONS(9534), 1, - sym__newline, - ACTIONS(11018), 1, - sym_identifier, + [172209] = 4, + ACTIONS(2511), 1, + anon_sym_RBRACE, + ACTIONS(11284), 1, + anon_sym_COMMA, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152747] = 4, - ACTIONS(9534), 1, + [172223] = 4, + ACTIONS(8126), 1, sym__newline, - ACTIONS(11020), 1, - anon_sym_LPAREN, - ACTIONS(11022), 1, - anon_sym_COLON, + ACTIONS(8784), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152761] = 4, - ACTIONS(8309), 1, + [172237] = 4, + ACTIONS(10763), 1, anon_sym_COMMA, - ACTIONS(8311), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(6254), 1, - aux_sym_subscript_repeat1, + STATE(6470), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152775] = 4, - ACTIONS(1551), 1, - sym__newline, - ACTIONS(11024), 1, + [172251] = 4, + ACTIONS(11288), 1, anon_sym_SEMI, - STATE(5885), 1, + ACTIONS(11290), 1, + sym__newline, + STATE(6573), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152789] = 4, - ACTIONS(1549), 1, + [172265] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11292), 1, + anon_sym_COLON, + ACTIONS(11294), 1, sym__newline, - ACTIONS(11026), 1, - anon_sym_SEMI, - STATE(5885), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152803] = 4, - ACTIONS(9433), 1, + [172279] = 4, + ACTIONS(9632), 1, anon_sym_COLON, - ACTIONS(11028), 1, + ACTIONS(11296), 1, anon_sym_RBRACE, - STATE(6884), 1, + STATE(7022), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152817] = 4, - ACTIONS(2207), 1, - anon_sym_in, - ACTIONS(11030), 1, + [172293] = 4, + ACTIONS(7760), 1, + anon_sym_RPAREN, + ACTIONS(7762), 1, anon_sym_COMMA, - STATE(6155), 1, - aux_sym__patterns_repeat1, + STATE(6061), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152831] = 4, - ACTIONS(10822), 1, + [172307] = 4, + ACTIONS(11274), 1, + sym__newline, + ACTIONS(11298), 1, + anon_sym_LPAREN, + ACTIONS(11300), 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, + [172321] = 4, + ACTIONS(11302), 1, + anon_sym_RPAREN, + ACTIONS(11304), 1, + anon_sym_COMMA, + STATE(6136), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152859] = 4, - ACTIONS(7919), 1, - sym__newline, - ACTIONS(7921), 1, + [172335] = 4, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(11306), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + STATE(6337), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152873] = 4, - ACTIONS(6955), 1, + [172349] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(7004), 1, - anon_sym_EQ, - ACTIONS(7012), 1, + ACTIONS(11308), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172363] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11310), 1, anon_sym_COLON, + STATE(6953), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152887] = 4, - ACTIONS(7469), 1, + [172377] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11034), 1, + ACTIONS(11312), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152901] = 4, - ACTIONS(7500), 1, + [172391] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11036), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(11314), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152915] = 4, - ACTIONS(7500), 1, + [172405] = 4, + ACTIONS(8602), 1, anon_sym_COMMA, - ACTIONS(11038), 1, - anon_sym_RPAREN, - STATE(5976), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8604), 1, + anon_sym_RBRACK, + STATE(6300), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152929] = 4, - ACTIONS(7469), 1, + [172419] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11040), 1, + ACTIONS(11316), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152943] = 4, - ACTIONS(7518), 1, - anon_sym_RPAREN, - ACTIONS(7520), 1, + [172433] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6278), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11318), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152957] = 4, - ACTIONS(11042), 1, - anon_sym_RPAREN, - ACTIONS(11044), 1, + [172447] = 4, + ACTIONS(6518), 1, + anon_sym_COLON, + ACTIONS(11320), 1, anon_sym_COMMA, - STATE(6280), 1, - aux_sym_argument_list_repeat1, + STATE(6467), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152971] = 4, - ACTIONS(9550), 1, - anon_sym_RBRACK, - ACTIONS(9911), 1, + [172461] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6291), 1, - aux_sym_type_index_repeat2, + ACTIONS(11322), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_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, + [172475] = 4, + ACTIONS(9632), 1, + anon_sym_COLON, + ACTIONS(11324), 1, + anon_sym_RBRACE, + STATE(7030), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [152999] = 4, - ACTIONS(8051), 1, - anon_sym_COMMA, - ACTIONS(8055), 1, - anon_sym_RBRACK, - STATE(6283), 1, - aux_sym_subscript_repeat1, + [172489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153013] = 4, - ACTIONS(2559), 1, - anon_sym_RBRACE, - ACTIONS(11046), 1, + ACTIONS(9951), 3, anon_sym_COMMA, - STATE(5838), 1, - aux_sym_dictionary_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [172499] = 4, + ACTIONS(10420), 1, + sym__newline, + ACTIONS(10422), 1, + sym__indent, + STATE(2149), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153027] = 3, - ACTIONS(9637), 1, - anon_sym_as, + [172513] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11326), 1, + anon_sym_COLON, + ACTIONS(11328), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9837), 2, - anon_sym_RPAREN, + [172527] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - [153039] = 2, + ACTIONS(11330), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9839), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [153049] = 4, - ACTIONS(9837), 1, - anon_sym_RPAREN, - ACTIONS(11048), 1, + [172541] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + ACTIONS(11332), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153063] = 3, - ACTIONS(2652), 1, - anon_sym_except, + [172555] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11334), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2654), 2, - anon_sym_except_STAR, - anon_sym_finally, - [153075] = 4, - ACTIONS(11051), 1, + [172569] = 4, + ACTIONS(10225), 1, anon_sym_LPAREN, - ACTIONS(11053), 1, + ACTIONS(11336), 1, anon_sym_COLON, - ACTIONS(11055), 1, + ACTIONS(11338), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153089] = 4, - ACTIONS(11057), 1, - anon_sym_COLON, - ACTIONS(11059), 1, - anon_sym_nogil, - ACTIONS(11061), 1, + [172583] = 4, + ACTIONS(11268), 1, sym__newline, + ACTIONS(11340), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153103] = 4, - ACTIONS(9375), 1, - anon_sym_RBRACK, - ACTIONS(9911), 1, + [172597] = 4, + ACTIONS(11343), 1, + anon_sym_RPAREN, + ACTIONS(11345), 1, anon_sym_COMMA, - STATE(6296), 1, - aux_sym_type_index_repeat2, + STATE(6196), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153117] = 4, - ACTIONS(10485), 1, + [172611] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11063), 1, - anon_sym_RBRACK, - STATE(6305), 1, - aux_sym_template_params_repeat1, + ACTIONS(11347), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153131] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(11065), 1, - anon_sym_COLON, - ACTIONS(11067), 1, + [172625] = 4, + ACTIONS(1491), 1, sym__newline, + ACTIONS(11349), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153145] = 4, - ACTIONS(11055), 1, - sym__newline, - ACTIONS(11069), 1, - sym_identifier, - ACTIONS(11071), 1, - anon_sym_COLON, + [172639] = 3, + ACTIONS(11353), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153159] = 4, - ACTIONS(7971), 1, - sym__newline, - ACTIONS(8778), 1, + ACTIONS(11351), 2, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + anon_sym_RBRACE, + [172651] = 3, + ACTIONS(2607), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153173] = 4, - ACTIONS(9761), 1, - anon_sym_DOT, - ACTIONS(10114), 1, - anon_sym_PIPE, - ACTIONS(11073), 1, - anon_sym_COLON, + ACTIONS(2605), 2, + anon_sym_except_STAR, + anon_sym_finally, + [172663] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11355), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153187] = 4, - ACTIONS(11075), 1, - anon_sym_LPAREN, - ACTIONS(11077), 1, - anon_sym_COLON, - ACTIONS(11079), 1, - sym__newline, + [172677] = 4, + ACTIONS(2581), 1, + anon_sym_RBRACK, + ACTIONS(11357), 1, + anon_sym_COMMA, + STATE(6609), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153201] = 4, - ACTIONS(7469), 1, + [172691] = 4, + ACTIONS(11359), 1, anon_sym_COMMA, - ACTIONS(11081), 1, + ACTIONS(11362), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153215] = 3, - ACTIONS(9643), 1, - anon_sym_as, + [172705] = 4, + ACTIONS(11364), 1, + anon_sym_COMMA, + ACTIONS(11367), 1, + anon_sym_RBRACE, + STATE(6547), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9837), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [153227] = 4, - ACTIONS(7469), 1, + [172719] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11083), 1, + ACTIONS(11369), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153241] = 4, - ACTIONS(11085), 1, - anon_sym_COLON, - ACTIONS(11087), 1, - anon_sym_nogil, - ACTIONS(11089), 1, + [172733] = 4, + ACTIONS(10390), 1, sym__newline, + ACTIONS(11371), 1, + sym_identifier, + ACTIONS(11373), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153255] = 4, - ACTIONS(7469), 1, + [172747] = 4, + ACTIONS(9949), 1, + anon_sym_RBRACK, + ACTIONS(11375), 1, anon_sym_COMMA, - ACTIONS(11091), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6550), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153269] = 4, - ACTIONS(6565), 1, - anon_sym_RPAREN, - ACTIONS(11093), 1, + [172761] = 4, + ACTIONS(11378), 1, anon_sym_COMMA, - STATE(5899), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(11381), 1, + anon_sym_RBRACE, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153283] = 4, - ACTIONS(2371), 1, - anon_sym_RPAREN, - ACTIONS(11095), 1, - anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + [172775] = 3, + ACTIONS(2650), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153297] = 4, - ACTIONS(2373), 1, - anon_sym_RPAREN, - ACTIONS(11097), 1, - anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2652), 2, + anon_sym_except_STAR, + anon_sym_finally, + [172787] = 3, + ACTIONS(2688), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153311] = 4, - ACTIONS(11099), 1, + ACTIONS(2686), 2, + anon_sym_except_STAR, + anon_sym_finally, + [172799] = 4, + ACTIONS(2566), 1, + anon_sym_RBRACE, + ACTIONS(11383), 1, anon_sym_COMMA, - ACTIONS(11101), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6551), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153325] = 4, - ACTIONS(11103), 1, + [172813] = 4, + ACTIONS(5470), 1, + anon_sym_RPAREN, + ACTIONS(11385), 1, anon_sym_COMMA, - ACTIONS(11105), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153339] = 4, - ACTIONS(8905), 1, - anon_sym_COLON, - ACTIONS(9931), 1, - anon_sym_PIPE, - STATE(6257), 1, - aux_sym_union_pattern_repeat1, + [172827] = 4, + ACTIONS(8124), 1, + sym__newline, + ACTIONS(8991), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153353] = 3, - STATE(6255), 1, - aux_sym_union_pattern_repeat1, + [172841] = 4, + ACTIONS(5684), 1, + anon_sym_RPAREN, + ACTIONS(11387), 1, + anon_sym_COMMA, + STATE(6332), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 2, - anon_sym_COLON, + [172855] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, anon_sym_PIPE, - [153365] = 4, - ACTIONS(9072), 1, + ACTIONS(11389), 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, - [153379] = 4, - ACTIONS(7469), 1, + [172869] = 4, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(11110), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [153393] = 4, - ACTIONS(9311), 1, - anon_sym_COLON, - ACTIONS(9315), 1, - sym__newline, - ACTIONS(11112), 1, - sym_identifier, + ACTIONS(8614), 1, + anon_sym_RBRACK, + STATE(6373), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153407] = 4, - ACTIONS(9433), 1, - anon_sym_COLON, - ACTIONS(11114), 1, - anon_sym_RBRACE, - STATE(6824), 1, - sym_format_specifier, + [172883] = 4, + ACTIONS(10003), 1, + anon_sym_COMMA, + ACTIONS(11391), 1, + anon_sym_RBRACK, + STATE(6203), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153421] = 2, + [172897] = 4, + ACTIONS(9281), 1, + anon_sym_RBRACK, + ACTIONS(11393), 1, + anon_sym_COMMA, + STATE(6561), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9839), 3, + [172911] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [153431] = 4, - ACTIONS(9315), 1, + ACTIONS(11396), 1, sym__newline, - ACTIONS(11116), 1, - anon_sym_LPAREN, - ACTIONS(11118), 1, - anon_sym_COLON, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153445] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(11120), 1, + [172925] = 4, + ACTIONS(10219), 1, + anon_sym_LBRACK, + ACTIONS(11398), 1, anon_sym_COLON, - ACTIONS(11122), 1, - sym__newline, + STATE(7328), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153459] = 4, - ACTIONS(7469), 1, + [172939] = 4, + ACTIONS(4295), 1, + anon_sym_RPAREN, + ACTIONS(11400), 1, anon_sym_COMMA, - ACTIONS(11124), 1, - sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6266), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153473] = 4, - ACTIONS(11079), 1, - sym__newline, - ACTIONS(11126), 1, - sym_identifier, - ACTIONS(11128), 1, + [172953] = 4, + ACTIONS(9123), 1, anon_sym_COLON, + ACTIONS(11402), 1, + anon_sym_PIPE, + STATE(6567), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153487] = 4, - ACTIONS(7925), 1, - sym__newline, - ACTIONS(8818), 1, - anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + [172967] = 3, + STATE(6565), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153501] = 4, - ACTIONS(7953), 1, - anon_sym_RBRACE, - ACTIONS(11130), 1, - anon_sym_COMMA, - STATE(6267), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9153), 2, + anon_sym_COLON, + anon_sym_PIPE, + [172979] = 4, + ACTIONS(9153), 1, + anon_sym_COLON, + ACTIONS(11404), 1, + anon_sym_PIPE, + STATE(6567), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153515] = 4, - ACTIONS(7973), 1, - sym__newline, - ACTIONS(8552), 1, + [172993] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11407), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153529] = 4, - ACTIONS(7872), 1, - sym__newline, - ACTIONS(7874), 1, + [173007] = 4, + ACTIONS(8309), 1, + anon_sym_RBRACE, + ACTIONS(11409), 1, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + STATE(6569), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153543] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(11133), 1, + [173021] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11412), 1, + anon_sym_COLON, + ACTIONS(11414), 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, + [173035] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11416), 1, anon_sym_COLON, - STATE(6762), 1, - sym_external_definition, + ACTIONS(11418), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153571] = 4, - ACTIONS(7469), 1, + [173049] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11137), 1, + ACTIONS(11420), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153585] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(11139), 1, + [173063] = 4, + ACTIONS(1499), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(11422), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153599] = 4, - ACTIONS(7469), 1, + [173077] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11141), 1, + ACTIONS(11424), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153613] = 4, - ACTIONS(9837), 1, - anon_sym_RBRACK, - ACTIONS(11143), 1, - anon_sym_COMMA, - STATE(6275), 1, - aux_sym_case_clause_repeat1, + [173091] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11426), 1, + anon_sym_COLON, + ACTIONS(11428), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153627] = 4, - ACTIONS(4538), 1, - sym_string_start, - ACTIONS(11146), 1, - anon_sym_LT, - STATE(6524), 1, - sym_string, + [173105] = 4, + ACTIONS(10265), 1, + sym__newline, + ACTIONS(10267), 1, + sym__indent, + STATE(2123), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153641] = 4, - ACTIONS(7469), 1, + [173119] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11148), 1, + ACTIONS(11430), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153655] = 4, - ACTIONS(2429), 1, - anon_sym_RPAREN, - ACTIONS(11150), 1, - anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + [173133] = 3, + ACTIONS(9496), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153669] = 4, - ACTIONS(7469), 1, + ACTIONS(11432), 2, anon_sym_COMMA, - ACTIONS(11152), 1, + anon_sym_RBRACK, + [173145] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11434), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153683] = 4, - ACTIONS(2431), 1, - anon_sym_RPAREN, - ACTIONS(11154), 1, + [173159] = 4, + ACTIONS(2581), 1, + anon_sym_COLON, + ACTIONS(11436), 1, anon_sym_COMMA, - STATE(5752), 1, - aux_sym_argument_list_repeat1, + STATE(6496), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153697] = 4, - ACTIONS(2183), 1, - anon_sym_RBRACK, - ACTIONS(11156), 1, + [173173] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5921), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(11438), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153711] = 4, - ACTIONS(11158), 1, - anon_sym_COMMA, - ACTIONS(11160), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + [173187] = 3, + ACTIONS(8248), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153725] = 4, - ACTIONS(11162), 1, + ACTIONS(8246), 2, + sym__newline, + anon_sym_SEMI, + [173199] = 4, + ACTIONS(8203), 1, + sym__newline, + ACTIONS(11440), 1, anon_sym_COMMA, - ACTIONS(11164), 1, - anon_sym_RBRACK, - STATE(5908), 1, - aux_sym_subscript_repeat1, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153739] = 4, - ACTIONS(7469), 1, + [173213] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11166), 1, + ACTIONS(11442), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153753] = 2, + [173227] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11444), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9839), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [153763] = 4, - ACTIONS(7469), 1, + [173241] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11168), 1, + ACTIONS(11446), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153777] = 4, - ACTIONS(7703), 1, - anon_sym_RPAREN, - ACTIONS(7705), 1, + [173255] = 4, + ACTIONS(9925), 1, + anon_sym_RBRACK, + ACTIONS(10221), 1, anon_sym_COMMA, - STATE(5754), 1, - aux_sym_argument_list_repeat1, + STATE(6156), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153791] = 4, - ACTIONS(7469), 1, + [173269] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11170), 1, + ACTIONS(11448), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153805] = 4, - ACTIONS(10485), 1, + [173283] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11172), 1, - anon_sym_RBRACK, - STATE(5926), 1, - aux_sym_template_params_repeat1, + ACTIONS(11450), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153819] = 4, - ACTIONS(8404), 1, + [173297] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11174), 1, - anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + ACTIONS(11452), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153833] = 4, - ACTIONS(9911), 1, + [173311] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11174), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, + ACTIONS(11454), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153847] = 4, - ACTIONS(7133), 1, + [173325] = 4, + ACTIONS(7529), 1, sym_identifier, - ACTIONS(11176), 1, + ACTIONS(10921), 1, anon_sym_DOT, - STATE(6292), 1, + STATE(6175), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153861] = 4, - ACTIONS(11179), 1, - anon_sym_RPAREN, - ACTIONS(11181), 1, + [173339] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(5756), 1, - aux_sym_argument_list_repeat1, + ACTIONS(11456), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153875] = 4, - ACTIONS(9664), 1, - anon_sym_COMMA, - ACTIONS(11183), 1, - anon_sym_RPAREN, - STATE(6116), 1, - aux_sym_function_pointer_type_repeat1, + [173353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153889] = 4, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(11185), 1, - anon_sym_RBRACK, - STATE(6087), 1, - aux_sym_type_index_repeat1, + ACTIONS(11458), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [173363] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153903] = 4, - ACTIONS(9911), 1, + ACTIONS(11460), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [173373] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11185), 1, - anon_sym_RBRACK, - STATE(6101), 1, - aux_sym_type_index_repeat2, + ACTIONS(11462), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153917] = 4, - ACTIONS(9664), 1, + [173387] = 4, + ACTIONS(11464), 1, anon_sym_COMMA, - ACTIONS(11187), 1, - anon_sym_RPAREN, - STATE(6116), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(11466), 1, + anon_sym_COLON, + STATE(6177), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153931] = 4, - ACTIONS(8073), 1, + [173401] = 4, + ACTIONS(11468), 1, anon_sym_COMMA, - ACTIONS(8075), 1, - anon_sym_RBRACK, - STATE(5758), 1, - aux_sym_subscript_repeat1, + ACTIONS(11470), 1, + anon_sym_COLON, + STATE(6066), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153945] = 4, - ACTIONS(11189), 1, - anon_sym_RPAREN, - ACTIONS(11191), 1, + [173415] = 3, + ACTIONS(9254), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9256), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173427] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6107), 1, - aux_sym_with_clause_repeat1, + ACTIONS(11472), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153959] = 4, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(11193), 1, - anon_sym_COLON, - ACTIONS(11195), 1, + [173441] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11474), 1, sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153973] = 4, - ACTIONS(7469), 1, + [173455] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - ACTIONS(11197), 1, + ACTIONS(11476), 1, sym__newline, - STATE(6004), 1, + STATE(6546), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [153987] = 4, - ACTIONS(9397), 1, - anon_sym_COLON, - ACTIONS(9401), 1, + [173469] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11478), 1, sym__newline, - ACTIONS(11199), 1, - sym_identifier, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154001] = 4, - ACTIONS(9903), 1, - sym__newline, - ACTIONS(9917), 1, + [173483] = 4, + ACTIONS(10225), 1, anon_sym_LPAREN, - ACTIONS(11201), 1, + ACTIONS(11480), 1, anon_sym_COLON, + ACTIONS(11482), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154015] = 4, - ACTIONS(7975), 1, + [173497] = 4, + ACTIONS(9544), 1, + anon_sym_COLON, + ACTIONS(9548), 1, sym__newline, - ACTIONS(8834), 1, - anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(11484), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154029] = 4, - ACTIONS(10485), 1, + [173511] = 4, + ACTIONS(11486), 1, anon_sym_COMMA, - ACTIONS(11203), 1, - anon_sym_RBRACK, - STATE(5926), 1, - aux_sym_template_params_repeat1, + ACTIONS(11488), 1, + anon_sym_RBRACE, + STATE(6405), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154043] = 4, - ACTIONS(9401), 1, + [173525] = 4, + ACTIONS(9548), 1, sym__newline, - ACTIONS(11205), 1, + ACTIONS(11490), 1, anon_sym_LPAREN, - ACTIONS(11207), 1, + ACTIONS(11492), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154057] = 4, - ACTIONS(5588), 1, - anon_sym_RPAREN, - ACTIONS(11209), 1, + [173539] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - STATE(6234), 1, - aux_sym_case_clause_repeat1, + ACTIONS(11494), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154071] = 3, - ACTIONS(11213), 1, - anon_sym_as, + [173553] = 4, + ACTIONS(8309), 1, + anon_sym_RBRACK, + ACTIONS(11496), 1, + anon_sym_COMMA, + STATE(6609), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [173567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154097] = 4, - ACTIONS(7927), 1, + ACTIONS(10001), 3, sym__newline, - ACTIONS(8384), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6070), 1, - aux_sym_cvar_def_repeat1, + [173577] = 4, + ACTIONS(2291), 1, + anon_sym_RPAREN, + ACTIONS(11499), 1, + anon_sym_COMMA, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154111] = 4, - ACTIONS(2628), 1, - anon_sym_RBRACE, - ACTIONS(11217), 1, + [173591] = 4, + ACTIONS(10003), 1, anon_sym_COMMA, - STATE(6267), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(11501), 1, + anon_sym_RBRACK, + STATE(6203), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154125] = 4, - ACTIONS(11195), 1, + [173605] = 4, + ACTIONS(8174), 1, sym__newline, - ACTIONS(11219), 1, - anon_sym_LPAREN, - ACTIONS(11221), 1, - anon_sym_COLON, + ACTIONS(8211), 1, + anon_sym_COMMA, + STATE(6538), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154139] = 4, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(11223), 1, + [173619] = 4, + ACTIONS(11503), 1, + anon_sym_SEMI, + ACTIONS(11505), 1, sym__newline, - STATE(6004), 1, - aux_sym_cvar_decl_repeat2, + STATE(6635), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154153] = 3, - ACTIONS(7846), 1, - anon_sym_from, + [173633] = 4, + ACTIONS(2297), 1, + anon_sym_RPAREN, + ACTIONS(11507), 1, + anon_sym_COMMA, + STATE(6162), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 2, + [173647] = 3, + ACTIONS(9297), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9299), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173659] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11509), 1, sym__newline, - anon_sym_SEMI, - [154165] = 3, - ACTIONS(11225), 1, - sym_identifier, - STATE(6355), 1, - sym_template_param, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154176] = 2, + [173673] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(11511), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11227), 2, - sym__dedent, - anon_sym_case, - [154185] = 3, - ACTIONS(11229), 1, - anon_sym_LPAREN, - STATE(2866), 1, - sym_argument_list, + [173687] = 4, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(11513), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154196] = 3, - ACTIONS(7834), 1, - anon_sym_LPAREN, - STATE(4876), 1, - sym_c_parameters, + [173701] = 4, + ACTIONS(7694), 1, + anon_sym_COMMA, + ACTIONS(7778), 1, + anon_sym_RPAREN, + STATE(6520), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154207] = 3, - ACTIONS(11231), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_argument_list, + [173715] = 4, + ACTIONS(2581), 1, + anon_sym_RBRACE, + ACTIONS(11515), 1, + anon_sym_COMMA, + STATE(6569), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154218] = 3, - ACTIONS(10026), 1, - sym__newline, - ACTIONS(11233), 1, - anon_sym_COLON, + [173729] = 4, + ACTIONS(8309), 1, + anon_sym_RPAREN, + ACTIONS(11517), 1, + anon_sym_COMMA, + STATE(6622), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154229] = 3, - ACTIONS(11235), 1, + [173743] = 4, + ACTIONS(11402), 1, + anon_sym_PIPE, + ACTIONS(11520), 1, anon_sym_COLON, - ACTIONS(11237), 1, - anon_sym_DASH_GT, + STATE(6565), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154240] = 2, + [173757] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11522), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11239), 2, + [173771] = 4, + ACTIONS(10889), 1, sym__newline, - anon_sym_SEMI, - [154249] = 3, - ACTIONS(11241), 1, + ACTIONS(11524), 1, anon_sym_LPAREN, - STATE(4722), 1, - sym_argument_list, + ACTIONS(11526), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154260] = 3, - ACTIONS(6569), 1, - anon_sym_RPAREN, - ACTIONS(11243), 1, + [173785] = 4, + ACTIONS(8685), 1, anon_sym_COMMA, + ACTIONS(8687), 1, + anon_sym_RBRACE, + STATE(6027), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173799] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11528), 1, + anon_sym_COLON, + ACTIONS(11530), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154271] = 2, + [173813] = 4, + ACTIONS(11532), 1, + anon_sym_COMMA, + ACTIONS(11534), 1, + anon_sym_RBRACE, + STATE(6414), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11245), 2, + [173827] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11536), 1, sym__newline, - anon_sym_SEMI, - [154280] = 2, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + [173841] = 4, + ACTIONS(9303), 1, + anon_sym_LPAREN, + ACTIONS(11538), 1, + anon_sym_GT, + ACTIONS(11540), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154300] = 3, - ACTIONS(6331), 1, + [173855] = 4, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11542), 1, anon_sym_COLON, - STATE(6348), 1, - sym_memory_view_index, + ACTIONS(11544), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154311] = 2, + [173869] = 4, + ACTIONS(11546), 1, + anon_sym_COMMA, + ACTIONS(11548), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10349), 2, - anon_sym_RPAREN, + [173883] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, - [154320] = 3, - ACTIONS(9573), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + ACTIONS(11550), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154331] = 2, + [173897] = 4, + ACTIONS(7907), 1, + anon_sym_COMMA, + ACTIONS(11552), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9064), 2, + [173911] = 4, + ACTIONS(1493), 1, sym__newline, - anon_sym_COLON, - [154340] = 2, + ACTIONS(11554), 1, + anon_sym_SEMI, + STATE(6108), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154349] = 3, - ACTIONS(11251), 1, - anon_sym_RPAREN, - ACTIONS(11253), 1, + [173925] = 4, + ACTIONS(7907), 1, anon_sym_COMMA, + ACTIONS(11556), 1, + sym__newline, + STATE(6546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154360] = 3, - ACTIONS(11255), 1, - aux_sym_integer_token1, - STATE(4588), 1, - aux_sym_integer_repeat1, + [173939] = 4, + ACTIONS(9971), 1, + anon_sym_DOT, + ACTIONS(10300), 1, + anon_sym_PIPE, + ACTIONS(11558), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154371] = 2, + [173953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6828), 2, + ACTIONS(8953), 2, anon_sym_COMMA, anon_sym_RBRACK, - [154380] = 3, - ACTIONS(9586), 1, - anon_sym_COLON, - ACTIONS(9588), 1, - sym__newline, + [173962] = 3, + ACTIONS(11560), 1, + aux_sym_integer_token1, + STATE(4122), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154391] = 3, - ACTIONS(11257), 1, + [173973] = 3, + ACTIONS(11562), 1, aux_sym_integer_token1, - STATE(4507), 1, + STATE(2579), 1, aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154402] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11259), 1, - anon_sym_RPAREN, + [173984] = 3, + ACTIONS(11564), 1, + aux_sym_integer_token1, + STATE(2553), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154413] = 3, - ACTIONS(10339), 1, - sym__newline, - ACTIONS(11261), 1, - anon_sym_COLON, + [173995] = 3, + ACTIONS(11566), 1, + aux_sym_integer_token2, + STATE(2593), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154424] = 3, - ACTIONS(11263), 1, + [174006] = 3, + ACTIONS(11568), 1, aux_sym_integer_token3, - STATE(2440), 1, + STATE(2583), 1, aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154435] = 2, + [174017] = 3, + ACTIONS(11570), 1, + aux_sym_integer_token1, + STATE(4878), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9953), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154444] = 2, + [174028] = 3, + ACTIONS(11572), 1, + anon_sym_LPAREN, + STATE(5046), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174039] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11265), 2, + ACTIONS(11574), 2, + sym__dedent, + anon_sym_case, + [174048] = 3, + ACTIONS(11100), 1, sym__newline, - anon_sym_SEMI, - [154453] = 2, + ACTIONS(11576), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, + [174059] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7180), 2, anon_sym_COMMA, anon_sym_RBRACK, - [154462] = 2, + [174068] = 3, + ACTIONS(11578), 1, + anon_sym_COLON, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11267), 2, + ACTIONS(11582), 2, sym__newline, anon_sym_SEMI, - [154471] = 2, + [174088] = 3, + ACTIONS(9682), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11269), 2, - anon_sym_type, - anon_sym_object, - [154480] = 2, + [174099] = 3, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6815), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11271), 2, - sym__dedent, - anon_sym_case, - [154489] = 2, + [174110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9144), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154498] = 2, + ACTIONS(11584), 2, + sym__newline, + anon_sym_SEMI, + [174119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10802), 2, + ACTIONS(10856), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [154507] = 3, - ACTIONS(11273), 1, anon_sym_COLON, - ACTIONS(11275), 1, - sym__newline, + [174128] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11586), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154518] = 3, - ACTIONS(10052), 1, + [174139] = 3, + ACTIONS(11338), 1, sym__newline, - ACTIONS(11277), 1, + ACTIONS(11588), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154529] = 2, + [174150] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11279), 2, - sym__newline, - anon_sym_SEMI, - [154538] = 2, + ACTIONS(10761), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174159] = 3, + ACTIONS(6773), 1, + anon_sym_RPAREN, + ACTIONS(11590), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11281), 2, - anon_sym_COMMA, - anon_sym_COLON, - [154547] = 2, + [174170] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11283), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [154556] = 2, + ACTIONS(11592), 2, + sym__newline, + anon_sym_SEMI, + [174179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9159), 2, + ACTIONS(11594), 2, sym__newline, - anon_sym_COLON, - [154565] = 2, + anon_sym_SEMI, + [174188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10411), 2, + ACTIONS(11596), 2, + sym__dedent, + anon_sym_case, + [174197] = 3, + ACTIONS(11598), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [154574] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11285), 1, - anon_sym_RPAREN, + STATE(5579), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154585] = 2, + [174208] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11287), 2, - anon_sym_COMMA, - anon_sym_COLON, - [154594] = 3, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(11289), 1, - sym__newline, + ACTIONS(11600), 2, + anon_sym__, + sym_identifier, + [174217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154605] = 3, - ACTIONS(11291), 1, + ACTIONS(11602), 2, + sym__dedent, + anon_sym_case, + [174226] = 3, + ACTIONS(11604), 1, aux_sym_integer_token1, - STATE(2471), 1, + STATE(2611), 1, aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154616] = 3, - ACTIONS(11293), 1, + [174237] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11606), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174246] = 3, + ACTIONS(11608), 1, aux_sym_integer_token2, - STATE(2656), 1, + STATE(2592), 1, aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154627] = 3, - ACTIONS(11295), 1, + [174257] = 3, + ACTIONS(11610), 1, aux_sym_integer_token3, - STATE(2659), 1, + STATE(2580), 1, aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154638] = 3, - ACTIONS(10233), 1, - anon_sym_COLON, - ACTIONS(10237), 1, + [174268] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11612), 2, sym__newline, + anon_sym_SEMI, + [174277] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154649] = 2, + ACTIONS(10374), 2, + sym__newline, + anon_sym_SEMI, + [174286] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11297), 2, + ACTIONS(7152), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [154658] = 2, + anon_sym_RBRACK, + [174295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11281), 2, + ACTIONS(7152), 2, anon_sym_RPAREN, anon_sym_COMMA, - [154667] = 2, + [174304] = 3, + ACTIONS(11614), 1, + anon_sym_COLON, + ACTIONS(11616), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154676] = 3, - ACTIONS(11299), 1, + [174315] = 3, + ACTIONS(11618), 1, aux_sym_integer_token1, - STATE(3943), 1, + STATE(3627), 1, aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154687] = 3, - ACTIONS(11301), 1, + [174326] = 3, + ACTIONS(11620), 1, aux_sym_integer_token2, - STATE(2478), 1, + STATE(2597), 1, aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154698] = 3, - ACTIONS(8260), 1, - anon_sym_COLON, - ACTIONS(8262), 1, - anon_sym_by, + [174337] = 3, + ACTIONS(11622), 1, + aux_sym_integer_token3, + STATE(2601), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154709] = 3, - ACTIONS(11303), 1, - aux_sym_integer_token3, - STATE(2479), 1, - aux_sym_integer_repeat3, + [174348] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154720] = 2, + ACTIONS(10680), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174357] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11624), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11305), 2, - sym__dedent, - anon_sym_case, - [154729] = 3, - ACTIONS(10433), 1, + [174368] = 3, + ACTIONS(10816), 1, sym__newline, - ACTIONS(11307), 1, + ACTIONS(11626), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154740] = 2, + [174379] = 3, + ACTIONS(11628), 1, + anon_sym_LPAREN, + STATE(6728), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7786), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154749] = 2, + [174390] = 3, + ACTIONS(11630), 1, + aux_sym_integer_token1, + STATE(2603), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11309), 2, - sym__dedent, - anon_sym_case, - [154758] = 2, + [174401] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11632), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11311), 2, - sym__newline, - anon_sym_SEMI, - [154767] = 2, + [174412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11313), 2, - sym__newline, - anon_sym_SEMI, - [154776] = 2, + ACTIONS(11634), 2, + sym__dedent, + anon_sym_case, + [174421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11315), 2, - sym__newline, - anon_sym_SEMI, - [154785] = 3, - ACTIONS(8264), 1, - anon_sym_COLON, - ACTIONS(8266), 1, - anon_sym_by, + ACTIONS(11636), 2, + sym__dedent, + anon_sym_case, + [174430] = 3, + ACTIONS(11638), 1, + aux_sym_integer_token2, + STATE(2835), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154796] = 2, + [174441] = 3, + ACTIONS(11640), 1, + aux_sym_integer_token3, + STATE(2799), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11317), 2, - sym__newline, - anon_sym_SEMI, - [154805] = 3, - ACTIONS(9958), 1, + [174452] = 3, + ACTIONS(11642), 1, anon_sym_COLON, - ACTIONS(9962), 1, - sym__newline, + ACTIONS(11644), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154816] = 3, - ACTIONS(11319), 1, - anon_sym_COLON, - ACTIONS(11321), 1, - anon_sym_DASH_GT, + [174463] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154827] = 3, - ACTIONS(9660), 1, + ACTIONS(11646), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174472] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11323), 1, + ACTIONS(11648), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154838] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(11325), 2, - anon_sym__, - sym_identifier, - [154847] = 2, + [174483] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11327), 2, + ACTIONS(9319), 2, anon_sym_RPAREN, anon_sym_COMMA, - [154856] = 2, + [174492] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11329), 2, + ACTIONS(11650), 2, anon_sym_RPAREN, anon_sym_COMMA, - [154865] = 3, - ACTIONS(11331), 1, - anon_sym_LPAREN, - STATE(6559), 1, - sym_c_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [154876] = 3, - ACTIONS(11333), 1, - anon_sym_LPAREN, - STATE(3407), 1, - sym_argument_list, + [174501] = 3, + ACTIONS(9508), 1, + anon_sym_COLON, + ACTIONS(9510), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154887] = 2, + [174512] = 3, + ACTIONS(10806), 1, + sym__newline, + ACTIONS(11652), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8838), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [154896] = 3, - ACTIONS(11225), 1, + [174523] = 3, + ACTIONS(11654), 1, sym_identifier, - STATE(6239), 1, + STATE(6328), 1, sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154907] = 3, - ACTIONS(7834), 1, + [174534] = 3, + ACTIONS(8162), 1, anon_sym_LPAREN, - STATE(4913), 1, + STATE(5192), 1, sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154918] = 2, + [174545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 2, + ACTIONS(11656), 2, anon_sym_RPAREN, anon_sym_COMMA, - [154927] = 2, + [174554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11335), 2, + ACTIONS(9281), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174563] = 3, + ACTIONS(11658), 1, anon_sym_COLON, + ACTIONS(11660), 1, 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, - [154947] = 3, - ACTIONS(11339), 1, + [174574] = 3, + ACTIONS(11662), 1, anon_sym_COLON, - ACTIONS(11341), 1, + ACTIONS(11664), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154958] = 2, + [174585] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11666), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174596] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11668), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174607] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11343), 2, + ACTIONS(10856), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [154967] = 3, - ACTIONS(8268), 1, - anon_sym_COLON, - ACTIONS(8270), 1, - anon_sym_by, + [174616] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154978] = 3, - ACTIONS(11345), 1, + ACTIONS(7531), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174625] = 3, + ACTIONS(11670), 1, anon_sym_COLON, - ACTIONS(11347), 1, + ACTIONS(11672), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [154989] = 3, - ACTIONS(9660), 1, + [174636] = 3, + ACTIONS(11674), 1, anon_sym_LPAREN, - ACTIONS(11349), 1, + STATE(3562), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174647] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11676), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [174656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155000] = 3, - ACTIONS(9660), 1, + ACTIONS(11678), 2, + sym__newline, + anon_sym_SEMI, + [174665] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11351), 1, + ACTIONS(11680), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155011] = 3, - ACTIONS(10600), 1, + [174676] = 3, + ACTIONS(10364), 1, sym_string_start, - STATE(3487), 1, + STATE(3653), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155022] = 2, + [174687] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [155031] = 2, + [174698] = 3, + ACTIONS(11684), 1, + anon_sym_LPAREN, + STATE(3657), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11327), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155040] = 3, - ACTIONS(11353), 1, - anon_sym_COMMA, - STATE(5157), 1, - aux_sym__patterns_repeat1, + [174709] = 3, + ACTIONS(11686), 1, + anon_sym_COLON, + ACTIONS(11688), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155051] = 2, + [174720] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11690), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11327), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [155060] = 3, - ACTIONS(8272), 1, - anon_sym_COLON, - ACTIONS(8274), 1, - anon_sym_by, + [174731] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8111), 2, + sym__newline, + anon_sym_SEMI, + [174740] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11692), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155071] = 2, + [174751] = 3, + ACTIONS(11694), 1, + anon_sym_LPAREN, + STATE(3078), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11329), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [155080] = 3, - ACTIONS(11355), 1, + [174762] = 3, + ACTIONS(9592), 1, anon_sym_COLON, - ACTIONS(11357), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [155091] = 2, + ACTIONS(9594), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8838), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [155100] = 3, - ACTIONS(9660), 1, + [174773] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11359), 1, + ACTIONS(11696), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155111] = 3, - ACTIONS(11067), 1, - sym__newline, - ACTIONS(11361), 1, - anon_sym_COLON, + [174784] = 3, + ACTIONS(9694), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155122] = 3, - ACTIONS(10600), 1, - sym_string_start, - STATE(3656), 1, - sym_string, + [174795] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11698), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155133] = 3, - ACTIONS(9660), 1, + [174806] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11363), 1, + ACTIONS(11700), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155144] = 3, - ACTIONS(11365), 1, - aux_sym_integer_token1, - STATE(2491), 1, - aux_sym_integer_repeat1, + [174817] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155155] = 3, - ACTIONS(11367), 1, - aux_sym_integer_token2, - STATE(2509), 1, - aux_sym_integer_repeat2, + ACTIONS(11702), 2, + sym__dedent, + anon_sym_case, + [174826] = 3, + ACTIONS(10308), 1, + sym__newline, + ACTIONS(11704), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155166] = 3, - ACTIONS(11369), 1, - aux_sym_integer_token3, - STATE(2513), 1, - aux_sym_integer_repeat3, + [174837] = 3, + ACTIONS(11706), 1, + anon_sym_COLON, + ACTIONS(11708), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155177] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11371), 1, - anon_sym_RPAREN, + [174848] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9275), 2, + sym__newline, + anon_sym_COLON, + [174857] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155188] = 2, + ACTIONS(4418), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174866] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 2, + ACTIONS(7876), 2, sym__newline, anon_sym_SEMI, - [155197] = 3, - ACTIONS(11373), 1, - aux_sym_integer_token1, - STATE(2506), 1, - aux_sym_integer_repeat1, + [174875] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155208] = 2, + ACTIONS(11710), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174884] = 3, + ACTIONS(8162), 1, + anon_sym_LPAREN, + STATE(5210), 1, + sym_c_parameters, 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, - ACTIONS(9831), 1, + [174895] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, + ACTIONS(11712), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155228] = 3, - ACTIONS(11377), 1, - aux_sym_integer_token2, - STATE(2507), 1, - aux_sym_integer_repeat2, + [174906] = 3, + ACTIONS(10537), 1, + anon_sym_COLON, + ACTIONS(10541), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155239] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11379), 1, - anon_sym_RPAREN, + [174917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155250] = 3, - ACTIONS(8346), 1, + ACTIONS(11714), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [174926] = 3, + ACTIONS(10356), 1, anon_sym_COLON, - ACTIONS(8348), 1, + ACTIONS(10360), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155261] = 3, - ACTIONS(9660), 1, + [174937] = 3, + ACTIONS(11716), 1, anon_sym_LPAREN, - ACTIONS(11381), 1, - anon_sym_RPAREN, + STATE(3078), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155272] = 3, - ACTIONS(11383), 1, - aux_sym_integer_token3, - STATE(2483), 1, - aux_sym_integer_repeat3, + [174948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155283] = 2, + ACTIONS(11718), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [174957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11329), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155292] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11385), 1, - anon_sym_RPAREN, + ACTIONS(11720), 2, + sym__newline, + anon_sym_SEMI, + [174966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155303] = 3, - ACTIONS(10600), 1, - sym_string_start, - STATE(6677), 1, - sym_string, + ACTIONS(11722), 2, + sym__newline, + anon_sym_SEMI, + [174975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155314] = 3, - ACTIONS(11387), 1, - aux_sym_integer_token1, - STATE(2438), 1, - aux_sym_integer_repeat1, + ACTIONS(11724), 2, + anon_sym_type, + anon_sym_object, + [174984] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155325] = 3, - ACTIONS(11389), 1, - anon_sym_COLON, - ACTIONS(11391), 1, + ACTIONS(11726), 2, sym__newline, + anon_sym_SEMI, + [174993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155336] = 3, - ACTIONS(11393), 1, - anon_sym_COLON, - ACTIONS(11395), 1, - sym__newline, + ACTIONS(8111), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175002] = 3, + ACTIONS(11728), 1, + aux_sym_integer_token1, + STATE(2793), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155347] = 2, + [175013] = 3, + ACTIONS(11730), 1, + aux_sym_integer_token2, + STATE(2742), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8838), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155356] = 3, - ACTIONS(11397), 1, - anon_sym_LPAREN, - STATE(3085), 1, - sym_argument_list, + [175024] = 3, + ACTIONS(11732), 1, + aux_sym_integer_token3, + STATE(2743), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155367] = 3, - ACTIONS(11399), 1, + [175035] = 3, + ACTIONS(11734), 1, anon_sym_LPAREN, - STATE(3953), 1, + STATE(3657), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155378] = 3, - ACTIONS(11401), 1, + [175046] = 3, + ACTIONS(11736), 1, anon_sym_LPAREN, - STATE(3202), 1, + STATE(3135), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155389] = 3, - ACTIONS(11403), 1, + [175057] = 3, + ACTIONS(11738), 1, anon_sym_LPAREN, - STATE(3017), 1, + STATE(2880), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155400] = 3, - ACTIONS(11405), 1, + [175068] = 3, + ACTIONS(11740), 1, anon_sym_LPAREN, - STATE(4722), 1, + STATE(5046), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155411] = 3, - ACTIONS(11407), 1, + [175079] = 3, + ACTIONS(11742), 1, anon_sym_LPAREN, - STATE(3407), 1, + STATE(3562), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155422] = 3, - ACTIONS(11409), 1, + [175090] = 3, + ACTIONS(11744), 1, anon_sym_LPAREN, - STATE(3251), 1, + STATE(3435), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155433] = 3, - ACTIONS(11411), 1, - anon_sym_COLON, - ACTIONS(11413), 1, - sym__newline, + [175101] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11746), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155444] = 2, + [175112] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 2, + ACTIONS(3621), 2, sym__newline, anon_sym_SEMI, - [155453] = 3, - ACTIONS(9660), 1, + [175121] = 3, + ACTIONS(9853), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175132] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11415), 1, + ACTIONS(11748), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155464] = 3, - ACTIONS(7834), 1, + [175143] = 3, + ACTIONS(11750), 1, anon_sym_LPAREN, - STATE(4823), 1, - sym_c_parameters, + STATE(3435), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155475] = 2, + [175154] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6838), 2, + ACTIONS(7221), 2, anon_sym_RPAREN, anon_sym_COMMA, - [155484] = 3, - ACTIONS(9660), 1, + [175163] = 3, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(11417), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [155495] = 3, - ACTIONS(11419), 1, - aux_sym_integer_token1, - STATE(2496), 1, - aux_sym_integer_repeat1, + STATE(5147), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155506] = 3, - ACTIONS(11421), 1, - aux_sym_integer_token2, - STATE(2475), 1, - aux_sym_integer_repeat2, + [175174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155517] = 3, - ACTIONS(9660), 1, + ACTIONS(11752), 2, + anon_sym__, + sym_identifier, + [175183] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11423), 1, + ACTIONS(11754), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155528] = 3, - ACTIONS(11425), 1, - aux_sym_integer_token3, - STATE(2476), 1, - aux_sym_integer_repeat3, + [175194] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11756), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155539] = 3, - ACTIONS(9660), 1, + [175205] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11427), 1, + ACTIONS(11758), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155550] = 3, - ACTIONS(10600), 1, + [175216] = 3, + ACTIONS(10364), 1, sym_string_start, - STATE(3670), 1, + STATE(3662), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155561] = 3, - ACTIONS(9660), 1, + [175227] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11429), 1, + ACTIONS(11760), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155572] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7786), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [155581] = 3, - ACTIONS(9660), 1, + [175238] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11431), 1, + ACTIONS(11762), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155592] = 2, + [175249] = 3, + ACTIONS(11764), 1, + anon_sym_COLON, + ACTIONS(11766), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11433), 2, - sym__dedent, - anon_sym_case, - [155601] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11435), 1, + [175260] = 3, + ACTIONS(9700), 1, anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155612] = 3, - ACTIONS(11437), 1, + [175271] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - STATE(3085), 1, - sym_argument_list, + ACTIONS(11768), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155623] = 3, - ACTIONS(8291), 1, - anon_sym_COLON, - ACTIONS(8293), 1, - anon_sym_by, + [175282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155634] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11439), 1, + ACTIONS(10629), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [175291] = 3, + ACTIONS(9580), 1, + anon_sym_COLON, + ACTIONS(9582), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155645] = 3, - ACTIONS(9660), 1, + [175302] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11441), 1, + ACTIONS(11770), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155656] = 3, - ACTIONS(11443), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__newline, + [175313] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11772), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155667] = 3, - ACTIONS(11447), 1, - aux_sym_integer_token1, - STATE(2652), 1, - aux_sym_integer_repeat1, + [175324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155678] = 3, - ACTIONS(11449), 1, - aux_sym_integer_token2, - STATE(2552), 1, - aux_sym_integer_repeat2, + ACTIONS(8111), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [175333] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11774), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155689] = 3, - ACTIONS(11451), 1, - aux_sym_integer_token3, - STATE(2517), 1, - aux_sym_integer_repeat3, + [175344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155700] = 3, - ACTIONS(11453), 1, + ACTIONS(11776), 2, + sym__dedent, + anon_sym_case, + [175353] = 3, + ACTIONS(11778), 1, anon_sym_LPAREN, - STATE(3953), 1, + STATE(3657), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155711] = 3, - ACTIONS(10921), 1, - sym__newline, - ACTIONS(11455), 1, - anon_sym_COLON, + [175364] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11780), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155722] = 2, + [175375] = 3, + ACTIONS(11782), 1, + anon_sym_COLON, + ACTIONS(11784), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9719), 2, - anon_sym_from, - anon_sym_in, - [155731] = 2, + [175386] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 2, - anon_sym_RPAREN, + ACTIONS(11786), 2, 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, - [155751] = 3, - ACTIONS(7834), 1, - anon_sym_LPAREN, - STATE(4808), 1, - sym_c_parameters, + anon_sym_RBRACK, + [175395] = 3, + ACTIONS(11654), 1, + sym_identifier, + STATE(6845), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155762] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11459), 1, - anon_sym_RPAREN, + [175406] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155773] = 3, - ACTIONS(11461), 1, + ACTIONS(7090), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175415] = 3, + ACTIONS(11168), 1, anon_sym_COLON, - ACTIONS(11463), 1, + ACTIONS(11172), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155784] = 3, - ACTIONS(9660), 1, + [175426] = 3, + ACTIONS(8162), 1, anon_sym_LPAREN, - ACTIONS(11465), 1, - anon_sym_RPAREN, + STATE(5198), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155795] = 3, - ACTIONS(9660), 1, + [175437] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11467), 1, + ACTIONS(11788), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155806] = 3, - ACTIONS(10600), 1, - sym_string_start, - STATE(3460), 1, - sym_string, + [175448] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11790), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155817] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11469), 1, - anon_sym_RPAREN, + [175459] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155828] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11471), 1, - anon_sym_RPAREN, + ACTIONS(11792), 2, + anon_sym_nogil, + anon_sym_gil, + [175468] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155839] = 3, - ACTIONS(11473), 1, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175477] = 3, + ACTIONS(9550), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, anon_sym_LPAREN, - STATE(3251), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155850] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11475), 1, - anon_sym_RPAREN, + [175488] = 3, + ACTIONS(10255), 1, + sym__newline, + ACTIONS(11794), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155861] = 3, - ACTIONS(9660), 1, + [175499] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11477), 1, + ACTIONS(11796), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155872] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11479), 1, - anon_sym_RPAREN, + [175510] = 3, + ACTIONS(10364), 1, + sym_string_start, + STATE(3666), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155883] = 3, - ACTIONS(9660), 1, + [175521] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11481), 1, + ACTIONS(11798), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155894] = 2, + [175532] = 3, + ACTIONS(10364), 1, + sym_string_start, + STATE(7269), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11483), 2, - anon_sym__, - sym_identifier, - [155903] = 2, + [175543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10246), 2, - anon_sym_RPAREN, + ACTIONS(7221), 2, anon_sym_COMMA, - [155912] = 3, - ACTIONS(11485), 1, anon_sym_COLON, - ACTIONS(11487), 1, - sym__newline, + [175552] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11800), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155923] = 3, - ACTIONS(11489), 1, - anon_sym_LPAREN, - STATE(3017), 1, - sym_argument_list, + [175563] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155934] = 3, - ACTIONS(9295), 1, + ACTIONS(11802), 2, + anon_sym_import, + anon_sym_cimport, + [175572] = 3, + ACTIONS(11804), 1, anon_sym_COLON, - ACTIONS(9297), 1, + ACTIONS(11806), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155945] = 3, - ACTIONS(9660), 1, + [175583] = 3, + ACTIONS(11654), 1, + sym_identifier, + STATE(6513), 1, + sym_template_param, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175594] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11491), 1, + ACTIONS(11808), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155956] = 3, - ACTIONS(9248), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + [175605] = 3, + ACTIONS(11810), 1, + aux_sym_integer_token1, + STATE(2594), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155967] = 3, - ACTIONS(9660), 1, + [175616] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(11812), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155978] = 2, + [175627] = 3, + ACTIONS(11814), 1, + aux_sym_integer_token1, + STATE(2753), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6838), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [155987] = 3, - ACTIONS(9518), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, + [175638] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, + ACTIONS(11816), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [155998] = 3, - ACTIONS(11495), 1, - anon_sym_LPAREN, - STATE(3953), 1, - sym_argument_list, + [175649] = 3, + ACTIONS(11818), 1, + aux_sym_integer_token2, + STATE(2565), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156009] = 2, + [175660] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11497), 2, + ACTIONS(5183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [175669] = 3, + ACTIONS(10973), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [156018] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8160), 2, - sym__newline, - anon_sym_SEMI, - [156027] = 3, - ACTIONS(9968), 1, + ACTIONS(10977), 1, sym__newline, - ACTIONS(11499), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156038] = 2, + [175680] = 3, + ACTIONS(11820), 1, + aux_sym_integer_token3, + STATE(2567), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10246), 2, - anon_sym_COMMA, - anon_sym_COLON, - [156047] = 3, - ACTIONS(9737), 1, + [175691] = 3, + ACTIONS(11822), 1, anon_sym_LPAREN, - STATE(6321), 1, - sym_parameters, + STATE(2736), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156058] = 3, - ACTIONS(10272), 1, + [175702] = 3, + ACTIONS(10917), 1, sym__newline, - ACTIONS(11501), 1, + ACTIONS(11824), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156069] = 2, + [175713] = 3, + ACTIONS(11826), 1, + anon_sym_RPAREN, + ACTIONS(11828), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11503), 2, - sym__dedent, - anon_sym_case, - [156078] = 3, - ACTIONS(9500), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + [175724] = 3, + ACTIONS(8513), 1, + anon_sym_COLON, + ACTIONS(8515), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156089] = 3, - ACTIONS(9559), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + [175735] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11830), 2, + anon_sym_import, + anon_sym_cimport, + [175744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156100] = 2, + ACTIONS(8541), 2, + sym__newline, + anon_sym_SEMI, + [175753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, + ACTIONS(10001), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [175762] = 3, + ACTIONS(11832), 1, anon_sym_COLON, - [156109] = 2, + ACTIONS(11834), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6955), 2, - anon_sym_COMMA, + [175773] = 3, + ACTIONS(11836), 1, anon_sym_COLON, - [156118] = 2, + ACTIONS(11838), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11505), 2, - anon_sym_type, - anon_sym_object, - [156127] = 2, + [175784] = 3, + ACTIONS(11840), 1, + anon_sym_COLON, + ACTIONS(11842), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9062), 2, + [175795] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11844), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [156136] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11507), 2, - sym__dedent, - anon_sym_case, - [156145] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11509), 1, + [175806] = 3, + ACTIONS(9885), 1, anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156156] = 3, - ACTIONS(8154), 1, + [175817] = 3, + ACTIONS(11846), 1, anon_sym_COLON, - ACTIONS(8156), 1, + ACTIONS(11848), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156167] = 2, + [175828] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11511), 2, - sym__dedent, - anon_sym_case, - [156176] = 3, - ACTIONS(11513), 1, + ACTIONS(8543), 2, + sym__newline, + anon_sym_SEMI, + [175837] = 3, + ACTIONS(10364), 1, + sym_string_start, + STATE(3649), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175848] = 3, + ACTIONS(11850), 1, anon_sym_COLON, - ACTIONS(11515), 1, + ACTIONS(11852), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156187] = 2, + [175859] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8796), 2, + ACTIONS(11646), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [156196] = 3, - ACTIONS(9660), 1, + anon_sym_RBRACE, + [175868] = 3, + ACTIONS(11854), 1, + aux_sym_integer_token1, + STATE(3015), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175879] = 3, + ACTIONS(11856), 1, anon_sym_LPAREN, - ACTIONS(11517), 1, - anon_sym_RPAREN, + STATE(2880), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156207] = 3, - ACTIONS(7997), 1, + [175890] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11656), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [175899] = 3, + ACTIONS(11778), 1, + anon_sym_LPAREN, + STATE(3064), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175910] = 3, + ACTIONS(8545), 1, anon_sym_COLON, - ACTIONS(7999), 1, - anon_sym_by, + ACTIONS(8547), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156218] = 3, - ACTIONS(11519), 1, + [175921] = 3, + ACTIONS(11858), 1, anon_sym_COLON, - ACTIONS(11521), 1, + ACTIONS(11860), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156229] = 3, - ACTIONS(11523), 1, - aux_sym_integer_token1, - STATE(2573), 1, - aux_sym_integer_repeat1, + [175932] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156240] = 3, - ACTIONS(11525), 1, - anon_sym_COLON, - ACTIONS(11527), 1, - anon_sym_DASH_GT, + ACTIONS(9281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [175941] = 3, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6891), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156251] = 2, + [175952] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11287), 2, + ACTIONS(10450), 2, anon_sym_RPAREN, anon_sym_COMMA, - [156260] = 3, - ACTIONS(9737), 1, - anon_sym_LPAREN, - STATE(6551), 1, - sym_parameters, + [175961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156271] = 2, + ACTIONS(11862), 2, + anon_sym_nogil, + anon_sym_gil, + [175970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11529), 2, - sym__dedent, - anon_sym_case, - [156280] = 3, - ACTIONS(11057), 1, - anon_sym_COLON, - ACTIONS(11061), 1, + ACTIONS(11864), 2, sym__newline, + anon_sym_SEMI, + [175979] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156291] = 2, + ACTIONS(11646), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175988] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11531), 2, - anon_sym_RPAREN, + ACTIONS(11656), 2, anon_sym_COMMA, - [156300] = 3, - ACTIONS(11533), 1, - anon_sym_LPAREN, - STATE(4303), 1, - sym_argument_list, + anon_sym_RBRACK, + [175997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156311] = 3, - ACTIONS(10062), 1, - sym__newline, - ACTIONS(11535), 1, - anon_sym_COLON, + ACTIONS(9281), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176006] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156322] = 2, + ACTIONS(11866), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [176015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11537), 2, - sym__newline, - anon_sym_SEMI, - [156331] = 3, - ACTIONS(9660), 1, + ACTIONS(10629), 2, + anon_sym_COMMA, + anon_sym_COLON, + [176024] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11539), 1, + ACTIONS(11868), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156342] = 3, - ACTIONS(9737), 1, - anon_sym_LPAREN, - STATE(6396), 1, - sym_parameters, + [176035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156353] = 2, + ACTIONS(11870), 2, + sym__dedent, + anon_sym_case, + [176044] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11541), 2, - anon_sym_nogil, - anon_sym_gil, - [156362] = 3, - ACTIONS(11543), 1, + ACTIONS(11650), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(11545), 1, + [176053] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11872), 2, + anon_sym__, + sym_identifier, + [176062] = 3, + ACTIONS(9657), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176073] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11874), 2, sym__newline, + anon_sym_SEMI, + [176082] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156373] = 2, + ACTIONS(11066), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11547), 2, - anon_sym_type, - anon_sym_object, - [156382] = 3, - ACTIONS(11549), 1, + ACTIONS(11876), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [176100] = 3, + ACTIONS(8674), 1, anon_sym_COLON, - ACTIONS(11551), 1, + ACTIONS(8676), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156393] = 3, - ACTIONS(11553), 1, - anon_sym_LPAREN, - STATE(2605), 1, - sym_argument_list, + [176111] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11878), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [176120] = 3, + ACTIONS(11880), 1, + aux_sym_integer_token1, + STATE(5465), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156404] = 3, - ACTIONS(9737), 1, + [176131] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - STATE(6406), 1, - sym_parameters, + ACTIONS(11882), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156415] = 2, + [176142] = 3, + ACTIONS(11884), 1, + anon_sym_LPAREN, + STATE(4593), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11555), 2, - sym__newline, - anon_sym_SEMI, - [156424] = 2, + [176153] = 3, + ACTIONS(11886), 1, + anon_sym_LPAREN, + STATE(3270), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11557), 2, - sym__newline, - anon_sym_SEMI, - [156433] = 3, - ACTIONS(9621), 1, - anon_sym_COLON, - ACTIONS(9623), 1, - sym__newline, + [176164] = 3, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6699), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156444] = 3, - ACTIONS(11085), 1, - anon_sym_COLON, - ACTIONS(11089), 1, - sym__newline, + [176175] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156455] = 3, - ACTIONS(11559), 1, - anon_sym_COLON, - ACTIONS(11561), 1, - sym__newline, + ACTIONS(11888), 2, + sym__dedent, + anon_sym_case, + [176184] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156466] = 3, - ACTIONS(8174), 1, - anon_sym_COLON, - ACTIONS(8176), 1, - anon_sym_by, + ACTIONS(11890), 2, + anon_sym_type, + anon_sym_object, + [176193] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156477] = 2, + ACTIONS(5116), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [176202] = 3, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(6704), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9755), 2, - anon_sym_from, - anon_sym_in, - [156486] = 3, - ACTIONS(11563), 1, + [176213] = 3, + ACTIONS(11892), 1, anon_sym_COLON, - ACTIONS(11565), 1, + ACTIONS(11894), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156497] = 3, - ACTIONS(9492), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + [176224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156508] = 2, + ACTIONS(11896), 2, + sym__dedent, + anon_sym_case, + [176233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11567), 2, + ACTIONS(11898), 2, sym__dedent, anon_sym_case, - [156517] = 2, + [176242] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11900), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11569), 2, - sym__dedent, - anon_sym_case, - [156526] = 2, + [176253] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9941), 2, - anon_sym_RPAREN, + ACTIONS(10761), 2, anon_sym_COMMA, - [156535] = 3, - ACTIONS(11571), 1, anon_sym_COLON, - ACTIONS(11573), 1, - anon_sym_DASH_GT, + [176262] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156546] = 3, - ACTIONS(10397), 1, + ACTIONS(11902), 2, sym__newline, - ACTIONS(11575), 1, - anon_sym_COLON, + anon_sym_SEMI, + [176271] = 3, + ACTIONS(11904), 1, + aux_sym_integer_token2, + STATE(2557), 1, + aux_sym_integer_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156557] = 2, + [176282] = 3, + ACTIONS(6469), 1, + anon_sym_COLON, + STATE(6866), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11577), 2, - anon_sym__, - sym_identifier, - [156566] = 2, + [176293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10319), 2, - sym__newline, - anon_sym_SEMI, - [156575] = 3, - ACTIONS(10596), 1, + ACTIONS(10665), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176302] = 3, + ACTIONS(11418), 1, sym__newline, - ACTIONS(11579), 1, + ACTIONS(11906), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156586] = 2, + [176313] = 3, + ACTIONS(11908), 1, + anon_sym_LPAREN, + STATE(4593), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11581), 2, - anon_sym_nogil, - anon_sym_gil, - [156595] = 3, - ACTIONS(11583), 1, + [176324] = 3, + ACTIONS(11428), 1, + sym__newline, + ACTIONS(11910), 1, anon_sym_COLON, - ACTIONS(11585), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156606] = 2, + [176335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11587), 2, - sym__dedent, - anon_sym_case, - [156615] = 2, + ACTIONS(11912), 2, + anon_sym__, + sym_identifier, + [176344] = 3, + ACTIONS(11914), 1, + anon_sym_COLON, + ACTIONS(11916), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9941), 2, - anon_sym_COMMA, - anon_sym_COLON, - [156624] = 2, + [176355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5251), 2, + ACTIONS(9362), 2, anon_sym_RPAREN, anon_sym_COMMA, - [156633] = 3, - ACTIONS(11589), 1, - aux_sym_integer_token1, - STATE(2781), 1, - aux_sym_integer_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [156644] = 3, - ACTIONS(9617), 1, - anon_sym_COLON, - ACTIONS(9619), 1, - sym__newline, + [176364] = 3, + ACTIONS(11918), 1, + aux_sym_integer_token3, + STATE(2558), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156655] = 3, - ACTIONS(11453), 1, - anon_sym_LPAREN, - STATE(2988), 1, - sym_argument_list, + [176375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156666] = 3, - ACTIONS(9379), 1, - anon_sym_RPAREN, - ACTIONS(9831), 1, - anon_sym_LPAREN, + ACTIONS(11920), 2, + sym__newline, + anon_sym_SEMI, + [176384] = 3, + ACTIONS(9919), 1, + anon_sym_COLON, + ACTIONS(9921), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156677] = 2, + [176395] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11591), 2, - anon_sym_RPAREN, + ACTIONS(11606), 2, anon_sym_COMMA, - [156686] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11593), 1, - anon_sym_RPAREN, + anon_sym_COLON, + [176404] = 3, + ACTIONS(11922), 1, + aux_sym_integer_token1, + STATE(4833), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156697] = 2, + [176415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11595), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [156706] = 2, + ACTIONS(11924), 2, + sym__newline, + anon_sym_SEMI, + [176424] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11597), 2, - anon_sym_type, - anon_sym_object, - [156715] = 3, - ACTIONS(9660), 1, + ACTIONS(11926), 2, + sym__dedent, + anon_sym_case, + [176433] = 3, + ACTIONS(9989), 1, anon_sym_LPAREN, - ACTIONS(11599), 1, + ACTIONS(11928), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156726] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11601), 1, - anon_sym_RPAREN, + [176444] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156737] = 2, + ACTIONS(11930), 2, + anon_sym_type, + anon_sym_object, + [176453] = 3, + ACTIONS(9989), 1, + anon_sym_LPAREN, + ACTIONS(11932), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7689), 2, - sym__newline, - anon_sym_SEMI, - [156746] = 3, - ACTIONS(11225), 1, - sym_identifier, - STATE(5964), 1, - sym_template_param, + [176464] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156757] = 2, + ACTIONS(11934), 2, + sym__dedent, + anon_sym_case, + [176473] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11603), 2, + ACTIONS(9289), 2, sym__newline, - anon_sym_SEMI, - [156766] = 3, - ACTIONS(8342), 1, anon_sym_COLON, - ACTIONS(8344), 1, - anon_sym_by, + [176482] = 3, + ACTIONS(8379), 1, + anon_sym_COLON, + ACTIONS(8389), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156777] = 2, + [176493] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11605), 2, + ACTIONS(11936), 2, anon_sym_type, anon_sym_object, - [156786] = 2, + [176502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7786), 2, + ACTIONS(7090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [176511] = 3, + ACTIONS(11938), 1, + anon_sym_COLON, + ACTIONS(11940), 1, sym__newline, - anon_sym_SEMI, - [156795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11607), 2, + [176522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(11942), 2, anon_sym_type, anon_sym_object, - [156804] = 3, - ACTIONS(11609), 1, + [176531] = 3, + ACTIONS(11944), 1, aux_sym_integer_token1, - STATE(2463), 1, + STATE(4838), 1, aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156815] = 3, - ACTIONS(11611), 1, - aux_sym_integer_token2, - STATE(2464), 1, - aux_sym_integer_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [156826] = 2, + [176542] = 3, + ACTIONS(11946), 1, + anon_sym_COLON, + ACTIONS(11948), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4506), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [156835] = 2, + [176553] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(11950), 2, + anon_sym_type, + anon_sym_object, + [176562] = 3, + ACTIONS(11952), 1, + anon_sym_COLON, + ACTIONS(11954), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156855] = 2, + [176573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7157), 2, - anon_sym_RPAREN, + ACTIONS(7221), 2, anon_sym_COMMA, - [156864] = 3, - ACTIONS(11615), 1, anon_sym_COLON, - ACTIONS(11617), 1, + [176582] = 3, + ACTIONS(10225), 1, + anon_sym_LPAREN, + ACTIONS(11956), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156875] = 2, + [176593] = 3, + ACTIONS(11958), 1, + aux_sym_integer_token1, + STATE(2564), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11619), 2, + [176604] = 3, + ACTIONS(11960), 1, + anon_sym_COLON, + ACTIONS(11962), 1, sym__newline, - anon_sym_SEMI, - [156884] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9629), 2, - anon_sym_from, - anon_sym_in, - [156893] = 3, - ACTIONS(11621), 1, + [176615] = 3, + ACTIONS(11964), 1, + aux_sym_integer_token1, + STATE(4119), 1, + aux_sym_integer_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176626] = 3, + ACTIONS(11966), 1, aux_sym_integer_token2, - STATE(2436), 1, + STATE(2578), 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, + [176637] = 3, + ACTIONS(11530), 1, + sym__newline, + ACTIONS(11968), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156915] = 2, + [176648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11625), 2, - sym__dedent, - anon_sym_case, - [156924] = 3, - ACTIONS(11627), 1, - anon_sym_COLON, - ACTIONS(11629), 1, - sym__newline, + ACTIONS(11381), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [176657] = 3, + ACTIONS(11970), 1, + aux_sym_integer_token3, + STATE(2605), 1, + aux_sym_integer_repeat3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156935] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11631), 1, - anon_sym_RPAREN, + [176668] = 3, + ACTIONS(11074), 1, + sym__newline, + ACTIONS(11972), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156946] = 3, - ACTIONS(8350), 1, + [176679] = 3, + ACTIONS(11974), 1, anon_sym_COLON, - ACTIONS(8352), 1, + ACTIONS(11976), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156957] = 2, + [176690] = 3, + ACTIONS(10229), 1, + sym__newline, + ACTIONS(11978), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11343), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [156966] = 3, - ACTIONS(11633), 1, - anon_sym_COLON, - ACTIONS(11635), 1, - sym__newline, + [176701] = 3, + ACTIONS(11980), 1, + aux_sym_integer_token1, + STATE(4120), 1, + aux_sym_integer_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [156977] = 2, + [176712] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5174), 2, - anon_sym_RPAREN, + ACTIONS(11714), 2, anon_sym_COMMA, - [156986] = 2, + anon_sym_COLON, + [176721] = 3, + ACTIONS(9675), 1, + anon_sym_RPAREN, + ACTIONS(10144), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9953), 2, - anon_sym_COMMA, + [176732] = 3, + ACTIONS(11982), 1, + anon_sym_LPAREN, + STATE(3135), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176743] = 2, + ACTIONS(11984), 1, 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, - [157006] = 2, + [176751] = 2, + ACTIONS(11986), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(11639), 2, - anon_sym__, + [176759] = 2, + ACTIONS(11988), 1, sym_identifier, - [157015] = 3, - ACTIONS(9660), 1, - anon_sym_LPAREN, - ACTIONS(11641), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176767] = 2, + ACTIONS(11990), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157026] = 3, - ACTIONS(8101), 1, + [176775] = 2, + ACTIONS(11992), 1, anon_sym_COLON, - ACTIONS(8103), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157037] = 2, + [176783] = 2, + ACTIONS(11994), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(10206), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [157046] = 2, - ACTIONS(11643), 1, - anon_sym_COLON, + [176791] = 2, + ACTIONS(11996), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157054] = 2, - ACTIONS(11645), 1, - sym__indent, + [176799] = 2, + ACTIONS(11998), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157062] = 2, - ACTIONS(11647), 1, - sym_identifier, + [176807] = 2, + ACTIONS(12000), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157070] = 2, - ACTIONS(10754), 1, - anon_sym_LPAREN, + [176815] = 2, + ACTIONS(12002), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176823] = 2, + ACTIONS(12004), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157078] = 2, - ACTIONS(11649), 1, + [176831] = 2, + ACTIONS(12006), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157086] = 2, - ACTIONS(11651), 1, + [176839] = 2, + ACTIONS(12008), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157094] = 2, - ACTIONS(11653), 1, - anon_sym_GT, + [176847] = 2, + ACTIONS(12010), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157102] = 2, - ACTIONS(11655), 1, + [176855] = 2, + ACTIONS(12012), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157110] = 2, - ACTIONS(11657), 1, + [176863] = 2, + ACTIONS(12014), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176871] = 2, + ACTIONS(9853), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157118] = 2, - ACTIONS(11659), 1, - anon_sym_RBRACK, + [176879] = 2, + ACTIONS(12016), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157126] = 2, - ACTIONS(11661), 1, + [176887] = 2, + ACTIONS(12018), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157134] = 2, - ACTIONS(11663), 1, - anon_sym_COLON, + [176895] = 2, + ACTIONS(7813), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157142] = 2, - ACTIONS(7012), 1, - anon_sym_COLON, + [176903] = 2, + ACTIONS(12020), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157150] = 2, - ACTIONS(8730), 1, - anon_sym_RBRACE, + [176911] = 2, + ACTIONS(12022), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157158] = 2, - ACTIONS(11665), 1, + [176919] = 2, + ACTIONS(12024), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157166] = 2, - ACTIONS(11667), 1, + [176927] = 2, + ACTIONS(12026), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157174] = 2, - ACTIONS(11669), 1, - sym_identifier, + [176935] = 2, + ACTIONS(12028), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157182] = 2, - ACTIONS(11671), 1, - sym_identifier, + [176943] = 2, + ACTIONS(12030), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157190] = 2, - ACTIONS(11673), 1, - anon_sym_GT, + [176951] = 2, + ACTIONS(8426), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157198] = 2, - ACTIONS(11675), 1, + [176959] = 2, + ACTIONS(12032), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157206] = 2, - ACTIONS(11677), 1, - anon_sym_RPAREN, + [176967] = 2, + ACTIONS(12034), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157214] = 2, - ACTIONS(11679), 1, - sym_identifier, + [176975] = 2, + ACTIONS(12036), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157222] = 2, - ACTIONS(11681), 1, + [176983] = 2, + ACTIONS(2851), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157230] = 2, - ACTIONS(6512), 1, - sym__dedent, + [176991] = 2, + ACTIONS(12038), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157238] = 2, - ACTIONS(11683), 1, - anon_sym_RPAREN, + [176999] = 2, + ACTIONS(8569), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157246] = 2, - ACTIONS(11685), 1, - anon_sym_STAR, - ACTIONS(3), 2, + [177007] = 2, + ACTIONS(12040), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [157254] = 2, - ACTIONS(9177), 1, + [177015] = 2, + ACTIONS(9496), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157262] = 2, - ACTIONS(11687), 1, - sym_identifier, + [177023] = 2, + ACTIONS(12042), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157270] = 2, - ACTIONS(11689), 1, - anon_sym_RBRACE, + [177031] = 2, + ACTIONS(12044), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157278] = 2, - ACTIONS(8790), 1, - anon_sym_RBRACE, + [177039] = 2, + ACTIONS(12046), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157286] = 2, - ACTIONS(11691), 1, + [177047] = 2, + ACTIONS(12048), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157294] = 2, - ACTIONS(11693), 1, + [177055] = 2, + ACTIONS(12050), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157302] = 2, - ACTIONS(11695), 1, - sym__indent, + [177063] = 2, + ACTIONS(12052), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157310] = 2, - ACTIONS(11697), 1, - anon_sym_COLON, + [177071] = 2, + ACTIONS(11102), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157318] = 2, - ACTIONS(10907), 1, - anon_sym_in, + [177079] = 2, + ACTIONS(12054), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157326] = 2, - ACTIONS(11699), 1, - anon_sym_RBRACE, + [177087] = 2, + ACTIONS(12056), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157334] = 2, - ACTIONS(9573), 1, - anon_sym_RPAREN, + [177095] = 2, + ACTIONS(12058), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157342] = 2, - ACTIONS(11701), 1, + [177103] = 2, + ACTIONS(12060), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157350] = 2, - ACTIONS(11251), 1, - anon_sym_RPAREN, + [177111] = 2, + ACTIONS(8482), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157358] = 2, - ACTIONS(11703), 1, - anon_sym_COLON_EQ, + [177119] = 2, + ACTIONS(9568), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157366] = 2, - ACTIONS(11705), 1, - anon_sym_COLON, + [177127] = 2, + ACTIONS(12062), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157374] = 2, - ACTIONS(11707), 1, + [177135] = 2, + ACTIONS(12064), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157382] = 2, - ACTIONS(11709), 1, - anon_sym_RBRACK, + [177143] = 2, + ACTIONS(12066), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157390] = 2, - ACTIONS(11711), 1, - anon_sym_COLON_EQ, + [177151] = 2, + ACTIONS(12068), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157398] = 2, - ACTIONS(11713), 1, - sym__indent, + [177159] = 2, + ACTIONS(12070), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157406] = 2, - ACTIONS(11715), 1, - anon_sym_COLON_EQ, + [177167] = 2, + ACTIONS(12072), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157414] = 2, - ACTIONS(10917), 1, + [177175] = 2, + ACTIONS(11118), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157422] = 2, - ACTIONS(11717), 1, + [177183] = 2, + ACTIONS(12074), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157430] = 2, - ACTIONS(11719), 1, + [177191] = 2, + ACTIONS(12076), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157438] = 2, - ACTIONS(11721), 1, - anon_sym_RBRACK, + [177199] = 2, + ACTIONS(12078), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157446] = 2, - ACTIONS(11723), 1, - sym_identifier, + [177207] = 2, + ACTIONS(12080), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157454] = 2, - ACTIONS(11725), 1, - anon_sym_GT, + [177215] = 2, + ACTIONS(6689), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157462] = 2, - ACTIONS(11727), 1, - sym_identifier, + [177223] = 2, + ACTIONS(12082), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157470] = 2, - ACTIONS(7790), 1, - sym_identifier, + [177231] = 2, + ACTIONS(12084), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157478] = 2, - ACTIONS(11729), 1, - anon_sym_None, + [177239] = 2, + ACTIONS(12086), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157486] = 2, - ACTIONS(11731), 1, + [177247] = 2, + ACTIONS(12088), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157494] = 2, - ACTIONS(11733), 1, + [177255] = 2, + ACTIONS(12090), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177263] = 2, + ACTIONS(12092), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157502] = 2, - ACTIONS(8776), 1, + [177271] = 2, + ACTIONS(12094), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157510] = 2, - ACTIONS(11735), 1, - sym__indent, + [177279] = 2, + ACTIONS(12096), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157518] = 2, - ACTIONS(7522), 1, - anon_sym_RPAREN, + [177287] = 2, + ACTIONS(12098), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157526] = 2, - ACTIONS(11737), 1, - anon_sym_COLON_EQ, + [177295] = 2, + ACTIONS(9700), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157534] = 2, - ACTIONS(9181), 1, - anon_sym_RBRACK, + [177303] = 2, + ACTIONS(12100), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157542] = 2, - ACTIONS(11739), 1, - anon_sym_RPAREN, + [177311] = 2, + ACTIONS(12102), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157550] = 2, - ACTIONS(8610), 1, - anon_sym_COLON, + [177319] = 2, + ACTIONS(12104), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157558] = 2, - ACTIONS(11741), 1, + [177327] = 2, + ACTIONS(12106), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157566] = 2, - ACTIONS(11743), 1, + [177335] = 2, + ACTIONS(12108), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157574] = 2, - ACTIONS(11745), 1, + [177343] = 2, + ACTIONS(12110), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157582] = 2, - ACTIONS(7659), 1, + [177351] = 2, + ACTIONS(8897), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157590] = 2, - ACTIONS(11747), 1, - anon_sym_RPAREN, + [177359] = 2, + ACTIONS(12112), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157598] = 2, - ACTIONS(11749), 1, - anon_sym_COLON, + [177367] = 2, + ACTIONS(12114), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157606] = 2, - ACTIONS(11751), 1, + [177375] = 2, + ACTIONS(12116), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157614] = 2, - ACTIONS(11753), 1, - anon_sym_RBRACE, + [177383] = 2, + ACTIONS(9863), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157622] = 2, - ACTIONS(11755), 1, - anon_sym_RPAREN, + [177391] = 2, + ACTIONS(12118), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157630] = 2, - ACTIONS(2829), 1, - anon_sym_COLON, + [177399] = 2, + ACTIONS(12120), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157638] = 2, - ACTIONS(11757), 1, - anon_sym_RPAREN, + [177407] = 2, + ACTIONS(12122), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157646] = 2, - ACTIONS(11759), 1, + [177415] = 2, + ACTIONS(12124), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157654] = 2, - ACTIONS(11761), 1, - anon_sym_RBRACE, + [177423] = 2, + ACTIONS(12126), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157662] = 2, - ACTIONS(11763), 1, - sym_identifier, + [177431] = 2, + ACTIONS(12128), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157670] = 2, - ACTIONS(11765), 1, + [177439] = 2, + ACTIONS(12130), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157678] = 2, - ACTIONS(11767), 1, + [177447] = 2, + ACTIONS(12132), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157686] = 2, - ACTIONS(11769), 1, + [177455] = 2, + ACTIONS(12134), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157694] = 2, - ACTIONS(11771), 1, - anon_sym_GT, + [177463] = 2, + ACTIONS(12136), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157702] = 2, - ACTIONS(11773), 1, + [177471] = 2, + ACTIONS(12138), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157710] = 2, - ACTIONS(11775), 1, + [177479] = 2, + ACTIONS(12140), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157718] = 2, - ACTIONS(11777), 1, - sym_identifier, + [177487] = 2, + ACTIONS(12142), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157726] = 2, - ACTIONS(11779), 1, + [177495] = 2, + ACTIONS(12144), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157734] = 2, - ACTIONS(11781), 1, - sym_identifier, + [177503] = 2, + ACTIONS(12146), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157742] = 2, - ACTIONS(11783), 1, - sym_identifier, + [177511] = 2, + ACTIONS(12148), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157750] = 2, - ACTIONS(11785), 1, + [177519] = 2, + ACTIONS(12150), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157758] = 2, - ACTIONS(11787), 1, - anon_sym_COLON_EQ, + [177527] = 2, + ACTIONS(12152), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157766] = 2, - ACTIONS(11789), 1, - anon_sym_RPAREN, + [177535] = 2, + ACTIONS(12154), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157774] = 2, - ACTIONS(11791), 1, - anon_sym_LPAREN, + [177543] = 2, + ACTIONS(12156), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157782] = 2, - ACTIONS(11793), 1, + [177551] = 2, + ACTIONS(12158), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157790] = 2, - ACTIONS(11795), 1, + [177559] = 2, + ACTIONS(12160), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157798] = 2, - ACTIONS(11797), 1, - anon_sym_RPAREN, + [177567] = 2, + ACTIONS(12162), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157806] = 2, - ACTIONS(11799), 1, - anon_sym_RBRACK, + [177575] = 2, + ACTIONS(12164), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157814] = 2, - ACTIONS(11801), 1, - anon_sym_RBRACK, + [177583] = 2, + ACTIONS(12166), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157822] = 2, - ACTIONS(11803), 1, - anon_sym_RPAREN, + [177591] = 2, + ACTIONS(12168), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157830] = 2, - ACTIONS(11805), 1, + [177599] = 2, + ACTIONS(12170), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157838] = 2, - ACTIONS(11807), 1, - sym_identifier, + [177607] = 2, + ACTIONS(12172), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157846] = 2, - ACTIONS(11809), 1, - sym_identifier, + [177615] = 2, + ACTIONS(12174), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157854] = 2, - ACTIONS(9917), 1, + [177623] = 2, + ACTIONS(10225), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157862] = 2, - ACTIONS(11811), 1, - anon_sym_COLON, + [177631] = 2, + ACTIONS(12176), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157870] = 2, - ACTIONS(11813), 1, - anon_sym_COLON, + [177639] = 2, + ACTIONS(12178), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157878] = 2, - ACTIONS(11815), 1, - anon_sym_RBRACK, + [177647] = 2, + ACTIONS(12180), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157886] = 2, - ACTIONS(11817), 1, - anon_sym_GT, + [177655] = 2, + ACTIONS(12182), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157894] = 2, - ACTIONS(11819), 1, + [177663] = 2, + ACTIONS(12184), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157902] = 2, - ACTIONS(11821), 1, - anon_sym_COLON_EQ, + [177671] = 2, + ACTIONS(9682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157910] = 2, - ACTIONS(11823), 1, - sym_identifier, + [177679] = 2, + ACTIONS(12186), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157918] = 2, - ACTIONS(11825), 1, + [177687] = 2, + ACTIONS(12188), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177695] = 2, + ACTIONS(12190), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157926] = 2, - ACTIONS(8614), 1, + [177703] = 2, + ACTIONS(12192), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157934] = 2, - ACTIONS(11827), 1, - anon_sym_COLON, + [177711] = 2, + ACTIONS(11460), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157942] = 2, - ACTIONS(11829), 1, + [177719] = 2, + ACTIONS(12194), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157950] = 2, - ACTIONS(8541), 1, - anon_sym_RBRACE, + [177727] = 2, + ACTIONS(12196), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157958] = 2, - ACTIONS(11831), 1, - anon_sym_RBRACK, + [177735] = 2, + ACTIONS(12198), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157966] = 2, - ACTIONS(11833), 1, - anon_sym_COLON_EQ, + [177743] = 2, + ACTIONS(12200), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157974] = 2, - ACTIONS(11835), 1, - anon_sym_COLON, + [177751] = 2, + ACTIONS(9989), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157982] = 2, - ACTIONS(11837), 1, + [177759] = 2, + ACTIONS(12202), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157990] = 2, - ACTIONS(11839), 1, - anon_sym_COLON, + [177767] = 2, + ACTIONS(12204), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157998] = 2, - ACTIONS(11841), 1, + [177775] = 2, + ACTIONS(12206), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158006] = 2, - ACTIONS(11843), 1, - sym_identifier, + [177783] = 2, + ACTIONS(12208), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177791] = 2, + ACTIONS(12210), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158014] = 2, - ACTIONS(11845), 1, + [177799] = 2, + ACTIONS(8357), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158022] = 2, - ACTIONS(6510), 1, - sym__dedent, + [177807] = 2, + ACTIONS(12212), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177815] = 2, + ACTIONS(12214), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177823] = 2, + ACTIONS(7868), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177831] = 2, + ACTIONS(12216), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158030] = 2, - ACTIONS(11847), 1, + [177839] = 2, + ACTIONS(12218), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158038] = 2, - ACTIONS(11849), 1, - anon_sym_COLON, + [177847] = 2, + ACTIONS(12220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158046] = 2, - ACTIONS(11851), 1, + [177855] = 2, + ACTIONS(2759), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158054] = 2, - ACTIONS(11853), 1, - anon_sym_RBRACK, + [177863] = 2, + ACTIONS(12222), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158062] = 2, - ACTIONS(11855), 1, + [177871] = 2, + ACTIONS(12224), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158070] = 2, - ACTIONS(11857), 1, - anon_sym_RBRACE, + [177879] = 2, + ACTIONS(12226), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158078] = 2, - ACTIONS(11859), 1, - anon_sym_RBRACE, + [177887] = 2, + ACTIONS(12228), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158086] = 2, - ACTIONS(11861), 1, - anon_sym_RPAREN, + [177895] = 2, + ACTIONS(12230), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158094] = 2, - ACTIONS(11863), 1, - anon_sym_COLON, + [177903] = 2, + ACTIONS(10933), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158102] = 2, - ACTIONS(11865), 1, + [177911] = 2, + ACTIONS(12232), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158110] = 2, - ACTIONS(11867), 1, + [177919] = 2, + ACTIONS(12234), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177927] = 2, + ACTIONS(12236), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158118] = 2, - ACTIONS(11869), 1, + [177935] = 2, + ACTIONS(12238), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158126] = 2, - ACTIONS(11871), 1, - anon_sym_GT, + [177943] = 2, + ACTIONS(12240), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158134] = 2, - ACTIONS(11873), 1, - sym_identifier, + [177951] = 2, + ACTIONS(12242), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158142] = 2, - ACTIONS(11875), 1, - sym_identifier, + [177959] = 2, + ACTIONS(12244), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158150] = 2, - ACTIONS(11877), 1, + [177967] = 2, + ACTIONS(12246), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158158] = 2, - ACTIONS(11879), 1, + [177975] = 2, + ACTIONS(8092), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158166] = 2, - ACTIONS(11881), 1, + [177983] = 2, + ACTIONS(12248), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177991] = 2, + ACTIONS(12250), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158174] = 2, - ACTIONS(11883), 1, + [177999] = 2, + ACTIONS(6524), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158182] = 2, - ACTIONS(11885), 1, + [178007] = 2, + ACTIONS(12252), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158190] = 2, - ACTIONS(8594), 1, - anon_sym_RBRACE, + [178015] = 2, + ACTIONS(12254), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178023] = 2, + ACTIONS(12256), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158198] = 2, - ACTIONS(11887), 1, + [178031] = 2, + ACTIONS(9675), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158206] = 2, - ACTIONS(11889), 1, - anon_sym_GT, + [178039] = 2, + ACTIONS(12258), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158214] = 2, - ACTIONS(11891), 1, - anon_sym_RPAREN, + [178047] = 2, + ACTIONS(12260), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158222] = 2, - ACTIONS(11893), 1, + [178055] = 2, + ACTIONS(12262), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158230] = 2, - ACTIONS(11895), 1, - anon_sym_RBRACK, + [178063] = 2, + ACTIONS(7872), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158238] = 2, - ACTIONS(11897), 1, + [178071] = 2, + ACTIONS(12264), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158246] = 2, - ACTIONS(11899), 1, - anon_sym_COLON, + [178079] = 2, + ACTIONS(12266), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158254] = 2, - ACTIONS(11901), 1, + [178087] = 2, + ACTIONS(12268), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158262] = 2, - ACTIONS(11903), 1, - sym_identifier, + [178095] = 2, + ACTIONS(12270), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158270] = 2, - ACTIONS(11905), 1, - sym_identifier, + [178103] = 2, + ACTIONS(11826), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158278] = 2, - ACTIONS(7764), 1, - sym_identifier, + [178111] = 2, + ACTIONS(12272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178119] = 2, + ACTIONS(8401), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178127] = 2, + ACTIONS(12274), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158286] = 2, - ACTIONS(11907), 1, + [178135] = 2, + ACTIONS(12276), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158294] = 2, - ACTIONS(11909), 1, - anon_sym_RBRACE, + [178143] = 2, + ACTIONS(7825), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158302] = 2, - ACTIONS(11911), 1, - anon_sym_RBRACE, + [178151] = 2, + ACTIONS(8098), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158310] = 2, - ACTIONS(11913), 1, - anon_sym_GT, + [178159] = 2, + ACTIONS(12278), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158318] = 2, - ACTIONS(11915), 1, + [178167] = 2, + ACTIONS(12280), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158326] = 2, - ACTIONS(11917), 1, - anon_sym_COLON, + [178175] = 2, + ACTIONS(12282), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158334] = 2, - ACTIONS(11919), 1, + [178183] = 2, + ACTIONS(12284), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158342] = 2, - ACTIONS(11921), 1, - anon_sym_COLON, + [178191] = 2, + ACTIONS(12286), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158350] = 2, - ACTIONS(11923), 1, - anon_sym_COLON, + [178199] = 2, + ACTIONS(12288), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158358] = 2, - ACTIONS(11925), 1, + [178207] = 2, + ACTIONS(12290), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158366] = 2, - ACTIONS(11927), 1, + [178215] = 2, + ACTIONS(8687), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158374] = 2, - ACTIONS(11929), 1, + [178223] = 2, + ACTIONS(12292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178231] = 2, + ACTIONS(12294), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158382] = 2, - ACTIONS(9248), 1, - anon_sym_RPAREN, + [178239] = 2, + ACTIONS(12296), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158390] = 2, - ACTIONS(11931), 1, - anon_sym_LPAREN, + [178247] = 2, + ACTIONS(12298), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158398] = 2, - ACTIONS(11933), 1, - anon_sym_GT, + [178255] = 2, + ACTIONS(12300), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178263] = 2, + ACTIONS(4684), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178271] = 2, + ACTIONS(12302), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158406] = 2, - ACTIONS(11935), 1, + [178279] = 2, + ACTIONS(9885), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158414] = 2, - ACTIONS(11937), 1, + [178287] = 2, + ACTIONS(12304), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178295] = 2, + ACTIONS(12306), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158422] = 2, - ACTIONS(9518), 1, - anon_sym_RPAREN, + [178303] = 2, + ACTIONS(12308), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158430] = 2, - ACTIONS(9602), 1, - anon_sym_RBRACK, + [178311] = 2, + ACTIONS(12310), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158438] = 2, - ACTIONS(8814), 1, - anon_sym_RPAREN, + [178319] = 2, + ACTIONS(10949), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158446] = 2, - ACTIONS(7557), 1, - anon_sym_RPAREN, + [178327] = 2, + ACTIONS(12312), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158454] = 2, - ACTIONS(11939), 1, + [178335] = 2, + ACTIONS(12314), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158462] = 2, - ACTIONS(11941), 1, - anon_sym_RBRACK, + [178343] = 2, + ACTIONS(12316), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158470] = 2, - ACTIONS(11943), 1, - anon_sym_COLON_EQ, + [178351] = 2, + ACTIONS(12318), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158478] = 2, - ACTIONS(11945), 1, + [178359] = 2, + ACTIONS(12320), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158486] = 2, - ACTIONS(11947), 1, - anon_sym_RPAREN, + [178367] = 2, + ACTIONS(8335), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158494] = 2, - ACTIONS(11949), 1, - anon_sym_RBRACK, + [178375] = 2, + ACTIONS(12322), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158502] = 2, - ACTIONS(9660), 1, - anon_sym_LPAREN, + [178383] = 2, + ACTIONS(12324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178391] = 2, + ACTIONS(12326), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158510] = 2, - ACTIONS(11951), 1, + [178399] = 2, + ACTIONS(8234), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158518] = 2, - ACTIONS(11953), 1, - anon_sym_RBRACE, + [178407] = 2, + ACTIONS(7760), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158526] = 2, - ACTIONS(11955), 1, - anon_sym_RBRACE, + [178415] = 2, + ACTIONS(12328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158534] = 2, - ACTIONS(11957), 1, - anon_sym_RBRACE, + [178423] = 2, + ACTIONS(12330), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178431] = 2, + ACTIONS(12332), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158542] = 2, - ACTIONS(11959), 1, + [178439] = 2, + ACTIONS(12334), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158550] = 2, - ACTIONS(11961), 1, + [178447] = 2, + ACTIONS(12336), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158558] = 2, - ACTIONS(11963), 1, + [178455] = 2, + ACTIONS(12338), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158566] = 2, - ACTIONS(11965), 1, + [178463] = 2, + ACTIONS(12340), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158574] = 2, - ACTIONS(11967), 1, + [178471] = 2, + ACTIONS(12342), 1, anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158582] = 2, - ACTIONS(11969), 1, + [178479] = 2, + ACTIONS(12344), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158590] = 2, - ACTIONS(11971), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158598] = 2, - ACTIONS(11973), 1, - sym_identifier, + [178487] = 2, + ACTIONS(12346), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158606] = 2, - ACTIONS(11975), 1, + [178495] = 2, + ACTIONS(12348), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158614] = 2, - ACTIONS(11977), 1, + [178503] = 2, + ACTIONS(12350), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158622] = 2, - ACTIONS(6544), 1, - sym__dedent, + [178511] = 2, + ACTIONS(9073), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158630] = 2, - ACTIONS(4544), 1, - anon_sym_def, + [178519] = 2, + ACTIONS(12352), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158638] = 2, - ACTIONS(9559), 1, + [178527] = 2, + ACTIONS(12354), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158646] = 2, - ACTIONS(11979), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158654] = 2, - ACTIONS(9500), 1, - anon_sym_RPAREN, + [178535] = 2, + ACTIONS(12356), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158662] = 2, - ACTIONS(11981), 1, - sym_identifier, + [178543] = 2, + ACTIONS(9690), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158670] = 2, - ACTIONS(11983), 1, + [178551] = 2, + ACTIONS(12358), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158678] = 2, - ACTIONS(7518), 1, - anon_sym_RPAREN, + [178559] = 2, + ACTIONS(12360), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158686] = 2, - ACTIONS(11985), 1, - anon_sym_COLON_EQ, + [178567] = 2, + ACTIONS(12362), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158694] = 2, - ACTIONS(8546), 1, - anon_sym_COLON, + [178575] = 2, + ACTIONS(12364), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158702] = 2, - ACTIONS(9550), 1, - anon_sym_RBRACK, + [178583] = 2, + ACTIONS(12366), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158710] = 2, - ACTIONS(11987), 1, - anon_sym_COLON, + [178591] = 2, + ACTIONS(12368), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158718] = 2, - ACTIONS(11989), 1, + [178599] = 2, + ACTIONS(12370), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158726] = 2, - ACTIONS(11991), 1, + [178607] = 2, + ACTIONS(12372), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158734] = 2, - ACTIONS(7634), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158742] = 2, - ACTIONS(11993), 1, - anon_sym_RBRACK, + [178615] = 2, + ACTIONS(12374), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158750] = 2, - ACTIONS(11995), 1, + [178623] = 2, + ACTIONS(7380), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158758] = 2, - ACTIONS(10847), 1, - anon_sym_in, + [178631] = 2, + ACTIONS(12376), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158766] = 2, - ACTIONS(11997), 1, - anon_sym_RPAREN, + [178639] = 2, + ACTIONS(12378), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158774] = 2, - ACTIONS(8708), 1, - anon_sym_COLON, + [178647] = 2, + ACTIONS(12380), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158782] = 2, - ACTIONS(11999), 1, - anon_sym_RBRACK, + [178655] = 2, + ACTIONS(12382), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158790] = 2, - ACTIONS(12001), 1, - anon_sym_import, + [178663] = 2, + ACTIONS(9550), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158798] = 2, - ACTIONS(12003), 1, - anon_sym_None, + [178671] = 2, + ACTIONS(6691), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158806] = 2, - ACTIONS(12005), 1, + [178679] = 2, + ACTIONS(12384), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158814] = 2, - ACTIONS(12007), 1, + [178687] = 2, + ACTIONS(12386), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158822] = 2, - ACTIONS(12009), 1, - sym_identifier, + [178695] = 2, + ACTIONS(12388), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158830] = 2, - ACTIONS(12011), 1, + [178703] = 2, + ACTIONS(12390), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158838] = 2, - ACTIONS(12013), 1, - anon_sym_RPAREN, + [178711] = 2, + ACTIONS(12392), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158846] = 2, - ACTIONS(12015), 1, - sym_identifier, + [178719] = 2, + ACTIONS(9657), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158854] = 2, - ACTIONS(12017), 1, - sym_identifier, + [178727] = 2, + ACTIONS(12394), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158862] = 2, - ACTIONS(12019), 1, - anon_sym_COLON, + [178735] = 2, + ACTIONS(12396), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158870] = 2, - ACTIONS(12021), 1, - anon_sym_RBRACE, + [178743] = 2, + ACTIONS(12398), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158878] = 2, - ACTIONS(12023), 1, + [178751] = 2, + ACTIONS(12400), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158886] = 2, - ACTIONS(12025), 1, + [178759] = 2, + ACTIONS(12402), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158894] = 2, - ACTIONS(2961), 1, - anon_sym_COLON, + [178767] = 2, + ACTIONS(12404), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158902] = 2, - ACTIONS(12027), 1, - sym_identifier, + [178775] = 2, + ACTIONS(12406), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158910] = 2, - ACTIONS(12029), 1, + [178783] = 2, + ACTIONS(7807), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178791] = 2, + ACTIONS(12408), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158918] = 2, - ACTIONS(12031), 1, - anon_sym_LPAREN, + [178799] = 2, + ACTIONS(12410), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158926] = 2, - ACTIONS(12033), 1, + [178807] = 2, + ACTIONS(12412), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158934] = 2, - ACTIONS(12035), 1, - anon_sym_COLON_EQ, + [178815] = 2, + ACTIONS(12414), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158942] = 2, - ACTIONS(9375), 1, - anon_sym_RBRACK, + [178823] = 2, + ACTIONS(12416), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158950] = 2, - ACTIONS(12037), 1, - anon_sym_COLON, + [178831] = 2, + ACTIONS(12418), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158958] = 2, - ACTIONS(12039), 1, - anon_sym_EQ, + [178839] = 2, + ACTIONS(12420), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158966] = 2, - ACTIONS(12041), 1, - sym__indent, + [178847] = 2, + ACTIONS(12422), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158974] = 2, - ACTIONS(12043), 1, - anon_sym_RPAREN, + [178855] = 2, + ACTIONS(12424), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158982] = 2, - ACTIONS(12045), 1, - anon_sym_RPAREN, + [178863] = 2, + ACTIONS(12426), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158990] = 2, - ACTIONS(12047), 1, - sym_identifier, + [178871] = 2, + ACTIONS(12428), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158998] = 2, - ACTIONS(12049), 1, - sym_identifier, + [178879] = 2, + ACTIONS(12430), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159006] = 2, - ACTIONS(12051), 1, - anon_sym_RPAREN, + [178887] = 2, + ACTIONS(12432), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159014] = 2, - ACTIONS(12053), 1, - anon_sym_RPAREN, + [178895] = 2, + ACTIONS(12434), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159022] = 2, - ACTIONS(12055), 1, - sym__indent, + [178903] = 2, + ACTIONS(12436), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159030] = 2, - ACTIONS(12057), 1, - anon_sym_RBRACE, + [178911] = 2, + ACTIONS(12438), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159038] = 2, - ACTIONS(12059), 1, - anon_sym_RBRACK, + [178919] = 2, + ACTIONS(10406), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159046] = 2, - ACTIONS(12061), 1, + [178927] = 2, + ACTIONS(7715), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159054] = 2, - ACTIONS(12063), 1, - sym_identifier, + [178935] = 2, + ACTIONS(9694), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159062] = 2, - ACTIONS(12065), 1, + [178943] = 2, + ACTIONS(12440), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159070] = 2, - ACTIONS(12067), 1, + [178951] = 2, + ACTIONS(12442), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178959] = 2, + ACTIONS(12444), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159078] = 2, - ACTIONS(12069), 1, + [178967] = 2, + ACTIONS(12446), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159086] = 2, - ACTIONS(12071), 1, + [178975] = 2, + ACTIONS(12448), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159094] = 2, - ACTIONS(12073), 1, + [178983] = 2, + ACTIONS(12450), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159102] = 2, - ACTIONS(12075), 1, - anon_sym_RBRACK, + [178991] = 2, + ACTIONS(12452), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159110] = 2, - ACTIONS(12077), 1, - anon_sym_GT, + [178999] = 2, + ACTIONS(12454), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159118] = 2, - ACTIONS(10863), 1, - anon_sym_in, + [179007] = 2, + ACTIONS(12456), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159126] = 2, - ACTIONS(12079), 1, - anon_sym_COLON, + [179015] = 2, + ACTIONS(12458), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159134] = 2, - ACTIONS(12081), 1, - ts_builtin_sym_end, + [179023] = 2, + ACTIONS(7798), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159142] = 2, - ACTIONS(8714), 1, + [179031] = 2, + ACTIONS(12460), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159150] = 2, - ACTIONS(9526), 1, - anon_sym_RBRACK, + [179039] = 2, + ACTIONS(12462), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159158] = 2, - ACTIONS(12083), 1, - sym_identifier, + [179047] = 2, + ACTIONS(12464), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159166] = 2, - ACTIONS(12085), 1, - anon_sym_GT, + [179055] = 2, + ACTIONS(12466), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159174] = 2, - ACTIONS(12087), 1, - sym__indent, + [179063] = 2, + ACTIONS(12468), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159182] = 2, - ACTIONS(12089), 1, - sym__indent, + [179071] = 2, + ACTIONS(12470), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [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, + [179079] = 2, + ACTIONS(12472), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159206] = 2, - ACTIONS(12095), 1, - anon_sym_COLON_EQ, + [179087] = 2, + ACTIONS(12474), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159214] = 2, - ACTIONS(12097), 1, + [179095] = 2, + ACTIONS(12476), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159222] = 2, - ACTIONS(12099), 1, + [179103] = 2, + ACTIONS(12478), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159230] = 2, - ACTIONS(7625), 1, + [179111] = 2, + ACTIONS(9053), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159238] = 2, - ACTIONS(12101), 1, + [179119] = 2, + ACTIONS(12480), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159246] = 2, - ACTIONS(8680), 1, - anon_sym_RPAREN, + [179127] = 2, + ACTIONS(4686), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159254] = 2, - ACTIONS(12103), 1, + [179135] = 2, + ACTIONS(12482), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159262] = 2, - ACTIONS(12105), 1, - anon_sym_RBRACE, + [179143] = 2, + ACTIONS(9671), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159270] = 2, - ACTIONS(8800), 1, - anon_sym_COLON, + [179151] = 2, + ACTIONS(12484), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159278] = 2, - ACTIONS(12107), 1, - sym_identifier, + [179159] = 2, + ACTIONS(12486), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159286] = 2, - ACTIONS(8522), 1, - anon_sym_RBRACE, + [179167] = 2, + ACTIONS(11458), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159294] = 2, - ACTIONS(12109), 1, - anon_sym_COLON, + [179175] = 2, + ACTIONS(12488), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159302] = 2, - ACTIONS(9492), 1, - anon_sym_RPAREN, + [179183] = 2, + ACTIONS(12490), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159310] = 2, - ACTIONS(12111), 1, - anon_sym_RPAREN, + [179191] = 2, + ACTIONS(12492), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159318] = 2, - ACTIONS(12113), 1, - anon_sym_EQ, + [179199] = 2, + ACTIONS(12494), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159326] = 2, - ACTIONS(12115), 1, - anon_sym_COLON, + [179207] = 2, + ACTIONS(12496), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159334] = 2, - ACTIONS(10224), 1, - anon_sym_in, + [179215] = 2, + ACTIONS(12498), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159342] = 2, - ACTIONS(12117), 1, + [179223] = 2, + ACTIONS(12500), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159350] = 2, - ACTIONS(12119), 1, + [179231] = 2, + ACTIONS(6659), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179239] = 2, + ACTIONS(8672), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159358] = 2, - ACTIONS(12121), 1, - anon_sym_COLON, + [179247] = 2, + ACTIONS(12502), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159366] = 2, - ACTIONS(12123), 1, - anon_sym_COLON, + [179255] = 2, + ACTIONS(12504), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159374] = 2, - ACTIONS(12125), 1, - anon_sym_COLON_EQ, + [179263] = 2, + ACTIONS(12506), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159382] = 2, - ACTIONS(12127), 1, + [179271] = 2, + ACTIONS(12508), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159390] = 2, - ACTIONS(12129), 1, - anon_sym_COLON, + [179279] = 2, + ACTIONS(12510), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159398] = 2, - ACTIONS(2921), 1, + [179287] = 2, + ACTIONS(12512), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159406] = 2, - ACTIONS(12131), 1, - anon_sym_in, + [179295] = 2, + ACTIONS(12514), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159414] = 2, - ACTIONS(12133), 1, - sym_identifier, + [179303] = 2, + ACTIONS(12516), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159422] = 2, - ACTIONS(12135), 1, - anon_sym_RBRACE, + [179311] = 2, + ACTIONS(12518), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159430] = 2, - ACTIONS(12137), 1, - anon_sym_RBRACE, + [179319] = 2, + ACTIONS(12520), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159438] = 2, - ACTIONS(12139), 1, - anon_sym_RBRACE, + [179327] = 2, + ACTIONS(11025), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159446] = 2, - ACTIONS(12141), 1, - anon_sym_STAR, + [179335] = 2, + ACTIONS(12522), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159454] = 2, - ACTIONS(12143), 1, + [179343] = 2, + ACTIONS(12524), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159462] = 2, - ACTIONS(12145), 1, - anon_sym_COLON, + [179351] = 2, + ACTIONS(12526), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159470] = 2, - ACTIONS(12147), 1, - anon_sym_GT, + [179359] = 2, + ACTIONS(12528), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159478] = 2, - ACTIONS(12149), 1, - anon_sym_RBRACK, + [179367] = 2, + ACTIONS(12530), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159486] = 2, - ACTIONS(12151), 1, + [179375] = 2, + ACTIONS(12532), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159494] = 2, - ACTIONS(12153), 1, + [179383] = 2, + ACTIONS(12534), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159502] = 2, - ACTIONS(12155), 1, - anon_sym_COLON_EQ, + [179391] = 2, + ACTIONS(12536), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159510] = 2, - ACTIONS(12157), 1, - anon_sym_RBRACE, + [179399] = 2, + ACTIONS(9925), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159518] = 2, - ACTIONS(12159), 1, + [179407] = 2, + ACTIONS(12538), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159526] = 2, - ACTIONS(4742), 1, - sym__dedent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [159534] = 2, - ACTIONS(12161), 1, - anon_sym_COLON, + [179415] = 2, + ACTIONS(12540), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159542] = 2, - ACTIONS(8722), 1, - anon_sym_COLON, + [179423] = 2, + ACTIONS(12542), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159550] = 2, - ACTIONS(8466), 1, - anon_sym_COLON, + [179431] = 2, + ACTIONS(12544), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159558] = 2, - ACTIONS(12163), 1, + [179439] = 2, + ACTIONS(12546), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159566] = 2, - ACTIONS(12165), 1, + [179447] = 2, + ACTIONS(12548), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159574] = 2, - ACTIONS(12167), 1, + [179455] = 2, + ACTIONS(12550), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159582] = 2, - ACTIONS(12169), 1, - sym_identifier, + [179463] = 2, + ACTIONS(12552), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159590] = 2, - ACTIONS(12171), 1, + [179471] = 2, + ACTIONS(12554), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159598] = 2, - ACTIONS(12173), 1, + [179479] = 2, + ACTIONS(12556), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159606] = 2, - ACTIONS(9379), 1, - anon_sym_RPAREN, + [179487] = 2, + ACTIONS(12558), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159614] = 2, - ACTIONS(12175), 1, - anon_sym_GT, + [179495] = 2, + ACTIONS(12560), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159622] = 2, - ACTIONS(12177), 1, - anon_sym_COLON_EQ, + [179503] = 2, + ACTIONS(12562), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159630] = 2, - ACTIONS(12179), 1, + [179511] = 2, + ACTIONS(12564), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159638] = 2, - ACTIONS(12181), 1, + [179519] = 2, + ACTIONS(12566), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159646] = 2, - ACTIONS(12183), 1, - anon_sym_RBRACE, + [179527] = 2, + ACTIONS(12568), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159654] = 2, - ACTIONS(7703), 1, - anon_sym_RPAREN, + [179535] = 2, + ACTIONS(12570), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159662] = 2, - ACTIONS(12185), 1, + [179543] = 2, + ACTIONS(12572), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159670] = 2, - ACTIONS(12187), 1, + [179551] = 2, + ACTIONS(12574), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159678] = 2, - ACTIONS(12189), 1, - anon_sym_COLON, + [179559] = 2, + ACTIONS(12576), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159686] = 2, - ACTIONS(8598), 1, + [179567] = 2, + ACTIONS(12578), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159694] = 2, - ACTIONS(12191), 1, - anon_sym_COLON, + [179575] = 2, + ACTIONS(12580), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159702] = 2, - ACTIONS(10393), 1, - anon_sym_LPAREN, + [179583] = 2, + ACTIONS(12582), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159710] = 2, - ACTIONS(12193), 1, + [179591] = 2, + ACTIONS(12584), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159718] = 2, - ACTIONS(9197), 1, - anon_sym_RPAREN, + [179599] = 2, + ACTIONS(9303), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159726] = 2, - ACTIONS(12195), 1, - anon_sym_COLON_EQ, + [179607] = 2, + ACTIONS(12586), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159734] = 2, - ACTIONS(12197), 1, - anon_sym_COLON, + [179615] = 2, + ACTIONS(12588), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159742] = 2, - ACTIONS(12199), 1, - anon_sym_COLON_EQ, + [179623] = 2, + ACTIONS(12590), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159750] = 2, - ACTIONS(12201), 1, + [179631] = 2, + ACTIONS(2911), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159758] = 2, - ACTIONS(12203), 1, - anon_sym_COLON, + [179639] = 2, + ACTIONS(12592), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159766] = 2, - ACTIONS(9107), 1, - anon_sym_LPAREN, + [179647] = 2, + ACTIONS(12594), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159774] = 2, - ACTIONS(12205), 1, + [179655] = 2, + ACTIONS(12596), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159782] = 2, - ACTIONS(12207), 1, + [179663] = 2, + ACTIONS(12598), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179671] = 2, + ACTIONS(12600), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159790] = 2, - ACTIONS(8724), 1, - anon_sym_COLON, + [179679] = 2, + ACTIONS(12602), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159798] = 2, - ACTIONS(12209), 1, + [179687] = 2, + ACTIONS(12604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159806] = 2, - ACTIONS(12211), 1, - anon_sym_None, + [179695] = 2, + ACTIONS(12606), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159814] = 2, - ACTIONS(12213), 1, - anon_sym_COLON, + [179703] = 2, + ACTIONS(12608), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159822] = 2, - ACTIONS(12215), 1, - anon_sym_RPAREN, + [179711] = 2, + ACTIONS(12610), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159830] = 2, - ACTIONS(12217), 1, - anon_sym_COLON, + [179719] = 2, + ACTIONS(12612), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179727] = 2, + ACTIONS(12614), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159838] = 2, - ACTIONS(12219), 1, + [179735] = 2, + ACTIONS(12616), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159846] = 2, - ACTIONS(4738), 1, - sym__dedent, + [179743] = 2, + ACTIONS(12618), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159854] = 2, - ACTIONS(12221), 1, + [179751] = 2, + ACTIONS(12620), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159862] = 2, - ACTIONS(6514), 1, - sym__dedent, + [179759] = 2, + ACTIONS(12622), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159870] = 2, - ACTIONS(12223), 1, + [179767] = 2, + ACTIONS(12624), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159878] = 2, - ACTIONS(12225), 1, + [179775] = 2, + ACTIONS(12626), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159886] = 2, - ACTIONS(12227), 1, + [179783] = 2, + ACTIONS(12628), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159894] = 2, - ACTIONS(12229), 1, - anon_sym_COLON, + [179791] = 2, + ACTIONS(12630), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159902] = 2, - ACTIONS(12231), 1, + [179799] = 2, + ACTIONS(12632), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159910] = 2, - ACTIONS(12233), 1, + [179807] = 2, + ACTIONS(12634), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159918] = 2, - ACTIONS(12235), 1, - anon_sym_COLON, + [179815] = 2, + ACTIONS(12636), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159926] = 2, - ACTIONS(12237), 1, + [179823] = 2, + ACTIONS(12638), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159934] = 2, - ACTIONS(7597), 1, - anon_sym_RPAREN, + [179831] = 2, + ACTIONS(12640), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159942] = 2, - ACTIONS(12239), 1, - sym_identifier, + [179839] = 2, + ACTIONS(12642), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159950] = 2, - ACTIONS(4740), 1, + [179847] = 2, + ACTIONS(4688), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159958] = 2, - ACTIONS(12241), 1, - sym__indent, + [179855] = 2, + ACTIONS(12644), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159966] = 2, - ACTIONS(12243), 1, - anon_sym_COLON, + [179863] = 2, + ACTIONS(12646), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159974] = 2, - ACTIONS(12245), 1, - anon_sym_RPAREN, + [179871] = 2, + ACTIONS(12648), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159982] = 2, - ACTIONS(12247), 1, - sym_identifier, + [179879] = 2, + ACTIONS(12650), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179887] = 2, + ACTIONS(12652), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159990] = 2, - ACTIONS(12249), 1, + [179895] = 2, + ACTIONS(12654), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159998] = 2, - ACTIONS(12251), 1, - anon_sym_COLON_EQ, + [179903] = 2, + ACTIONS(12656), 1, + anon_sym_None, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179911] = 2, + ACTIONS(4536), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160006] = 2, - ACTIONS(12253), 1, + [179919] = 2, + ACTIONS(12658), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160014] = 2, - ACTIONS(12255), 1, - anon_sym_COLON_EQ, + [179927] = 2, + ACTIONS(12660), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160022] = 2, - ACTIONS(4534), 1, - anon_sym_def, + [179935] = 2, + ACTIONS(12662), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160030] = 2, - ACTIONS(12257), 1, - anon_sym_for, + [179943] = 2, + ACTIONS(12664), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160038] = 2, - ACTIONS(4736), 1, - sym__dedent, + [179951] = 2, + ACTIONS(12666), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160046] = 2, - ACTIONS(12259), 1, - sym_identifier, + [179959] = 2, + ACTIONS(9500), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160054] = 2, - ACTIONS(12261), 1, - sym__indent, + [179967] = 2, + ACTIONS(12668), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160062] = 2, - ACTIONS(12263), 1, - anon_sym_COLON, + [179975] = 2, + ACTIONS(12670), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160070] = 2, - ACTIONS(12265), 1, - anon_sym_COLON, + [179983] = 2, + ACTIONS(12672), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160078] = 2, - ACTIONS(12267), 1, - anon_sym_for, + [179991] = 2, + ACTIONS(12674), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160086] = 2, - ACTIONS(12269), 1, - sym_identifier, + [179999] = 2, + ACTIONS(12676), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160094] = 2, - ACTIONS(12271), 1, - anon_sym_RPAREN, + [180007] = 2, + ACTIONS(12678), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160102] = 2, - ACTIONS(12273), 1, + [180015] = 2, + ACTIONS(12680), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160110] = 2, - ACTIONS(8574), 1, - anon_sym_RBRACE, + [180023] = 2, + ACTIONS(12682), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160118] = 2, - ACTIONS(12275), 1, - sym_identifier, + [180031] = 2, + ACTIONS(12684), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160126] = 2, - ACTIONS(12277), 1, - anon_sym_RPAREN, + [180039] = 2, + ACTIONS(12686), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180047] = 2, + ACTIONS(12688), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160134] = 2, - ACTIONS(12279), 1, + [180055] = 2, + ACTIONS(12690), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160142] = 2, - ACTIONS(9264), 1, - anon_sym_RBRACK, + [180063] = 2, + ACTIONS(12692), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160150] = 2, - ACTIONS(12281), 1, + [180071] = 2, + ACTIONS(12694), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160158] = 2, - ACTIONS(12283), 1, - anon_sym_COLON_EQ, + [180079] = 2, + ACTIONS(4542), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160166] = 2, - ACTIONS(12285), 1, + [180087] = 2, + ACTIONS(12696), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160174] = 2, - ACTIONS(12287), 1, + [180095] = 2, + ACTIONS(12698), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180103] = 2, + ACTIONS(12700), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160182] = 2, - ACTIONS(10894), 1, + [180111] = 2, + ACTIONS(4690), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180119] = 2, + ACTIONS(10245), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160190] = 2, - ACTIONS(12289), 1, - sym_identifier, + [180127] = 2, + ACTIONS(12702), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160198] = 2, - ACTIONS(12291), 1, - sym_identifier, + [180135] = 2, + ACTIONS(12704), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160206] = 2, - ACTIONS(12293), 1, - anon_sym_for, + [180143] = 2, + ACTIONS(12706), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160214] = 2, - ACTIONS(12295), 1, - sym_identifier, + [180151] = 2, + ACTIONS(12708), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160222] = 2, - ACTIONS(12297), 1, - sym__newline, + [180159] = 2, + ACTIONS(12710), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160230] = 2, - ACTIONS(12299), 1, + [180167] = 2, + ACTIONS(12712), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160238] = 2, - ACTIONS(12301), 1, - anon_sym_COLON_EQ, + [180175] = 2, + ACTIONS(12714), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160246] = 2, - ACTIONS(12303), 1, - anon_sym_COLON, + [180183] = 2, + ACTIONS(6693), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160254] = 2, - ACTIONS(12305), 1, - sym_identifier, + [180191] = 2, + ACTIONS(12716), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160262] = 2, - ACTIONS(12307), 1, - anon_sym_COLON, + [180199] = 2, + ACTIONS(12718), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160270] = 2, - ACTIONS(12309), 1, - anon_sym_None, + [180207] = 2, + ACTIONS(8134), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [SMALL_STATE(2212)] = 0, + [SMALL_STATE(2213)] = 123, + [SMALL_STATE(2214)] = 246, + [SMALL_STATE(2215)] = 370, + [SMALL_STATE(2216)] = 494, + [SMALL_STATE(2217)] = 618, + [SMALL_STATE(2218)] = 742, + [SMALL_STATE(2219)] = 865, + [SMALL_STATE(2220)] = 988, + [SMALL_STATE(2221)] = 1111, + [SMALL_STATE(2222)] = 1234, + [SMALL_STATE(2223)] = 1357, + [SMALL_STATE(2224)] = 1480, + [SMALL_STATE(2225)] = 1600, + [SMALL_STATE(2226)] = 1720, + [SMALL_STATE(2227)] = 1840, + [SMALL_STATE(2228)] = 1960, + [SMALL_STATE(2229)] = 2080, + [SMALL_STATE(2230)] = 2196, + [SMALL_STATE(2231)] = 2314, + [SMALL_STATE(2232)] = 2434, + [SMALL_STATE(2233)] = 2551, + [SMALL_STATE(2234)] = 2668, + [SMALL_STATE(2235)] = 2785, + [SMALL_STATE(2236)] = 2902, + [SMALL_STATE(2237)] = 3019, + [SMALL_STATE(2238)] = 3136, + [SMALL_STATE(2239)] = 3250, + [SMALL_STATE(2240)] = 3364, + [SMALL_STATE(2241)] = 3478, + [SMALL_STATE(2242)] = 3592, + [SMALL_STATE(2243)] = 3701, + [SMALL_STATE(2244)] = 3810, + [SMALL_STATE(2245)] = 3885, + [SMALL_STATE(2246)] = 3994, + [SMALL_STATE(2247)] = 4103, + [SMALL_STATE(2248)] = 4212, + [SMALL_STATE(2249)] = 4321, + [SMALL_STATE(2250)] = 4430, + [SMALL_STATE(2251)] = 4539, + [SMALL_STATE(2252)] = 4648, + [SMALL_STATE(2253)] = 4757, + [SMALL_STATE(2254)] = 4866, + [SMALL_STATE(2255)] = 4975, + [SMALL_STATE(2256)] = 5084, + [SMALL_STATE(2257)] = 5193, + [SMALL_STATE(2258)] = 5302, + [SMALL_STATE(2259)] = 5408, + [SMALL_STATE(2260)] = 5514, + [SMALL_STATE(2261)] = 5620, + [SMALL_STATE(2262)] = 5726, + [SMALL_STATE(2263)] = 5832, + [SMALL_STATE(2264)] = 5938, + [SMALL_STATE(2265)] = 6048, + [SMALL_STATE(2266)] = 6154, + [SMALL_STATE(2267)] = 6260, + [SMALL_STATE(2268)] = 6366, + [SMALL_STATE(2269)] = 6472, + [SMALL_STATE(2270)] = 6578, + [SMALL_STATE(2271)] = 6684, + [SMALL_STATE(2272)] = 6790, + [SMALL_STATE(2273)] = 6896, + [SMALL_STATE(2274)] = 7002, + [SMALL_STATE(2275)] = 7108, + [SMALL_STATE(2276)] = 7214, + [SMALL_STATE(2277)] = 7320, + [SMALL_STATE(2278)] = 7426, + [SMALL_STATE(2279)] = 7532, + [SMALL_STATE(2280)] = 7638, + [SMALL_STATE(2281)] = 7744, + [SMALL_STATE(2282)] = 7850, + [SMALL_STATE(2283)] = 7956, + [SMALL_STATE(2284)] = 8062, + [SMALL_STATE(2285)] = 8168, + [SMALL_STATE(2286)] = 8274, + [SMALL_STATE(2287)] = 8380, + [SMALL_STATE(2288)] = 8486, + [SMALL_STATE(2289)] = 8592, + [SMALL_STATE(2290)] = 8698, + [SMALL_STATE(2291)] = 8804, + [SMALL_STATE(2292)] = 8910, + [SMALL_STATE(2293)] = 9016, + [SMALL_STATE(2294)] = 9122, + [SMALL_STATE(2295)] = 9228, + [SMALL_STATE(2296)] = 9334, + [SMALL_STATE(2297)] = 9440, + [SMALL_STATE(2298)] = 9546, + [SMALL_STATE(2299)] = 9652, + [SMALL_STATE(2300)] = 9758, + [SMALL_STATE(2301)] = 9864, + [SMALL_STATE(2302)] = 9970, + [SMALL_STATE(2303)] = 10076, + [SMALL_STATE(2304)] = 10182, + [SMALL_STATE(2305)] = 10288, + [SMALL_STATE(2306)] = 10398, + [SMALL_STATE(2307)] = 10504, + [SMALL_STATE(2308)] = 10610, + [SMALL_STATE(2309)] = 10716, + [SMALL_STATE(2310)] = 10822, + [SMALL_STATE(2311)] = 10932, + [SMALL_STATE(2312)] = 11042, + [SMALL_STATE(2313)] = 11148, + [SMALL_STATE(2314)] = 11254, + [SMALL_STATE(2315)] = 11360, + [SMALL_STATE(2316)] = 11466, + [SMALL_STATE(2317)] = 11572, + [SMALL_STATE(2318)] = 11678, + [SMALL_STATE(2319)] = 11784, + [SMALL_STATE(2320)] = 11890, + [SMALL_STATE(2321)] = 11996, + [SMALL_STATE(2322)] = 12102, + [SMALL_STATE(2323)] = 12208, + [SMALL_STATE(2324)] = 12314, + [SMALL_STATE(2325)] = 12420, + [SMALL_STATE(2326)] = 12526, + [SMALL_STATE(2327)] = 12632, + [SMALL_STATE(2328)] = 12738, + [SMALL_STATE(2329)] = 12844, + [SMALL_STATE(2330)] = 12950, + [SMALL_STATE(2331)] = 13056, + [SMALL_STATE(2332)] = 13162, + [SMALL_STATE(2333)] = 13268, + [SMALL_STATE(2334)] = 13374, + [SMALL_STATE(2335)] = 13480, + [SMALL_STATE(2336)] = 13586, + [SMALL_STATE(2337)] = 13692, + [SMALL_STATE(2338)] = 13798, + [SMALL_STATE(2339)] = 13904, + [SMALL_STATE(2340)] = 14010, + [SMALL_STATE(2341)] = 14116, + [SMALL_STATE(2342)] = 14222, + [SMALL_STATE(2343)] = 14332, + [SMALL_STATE(2344)] = 14438, + [SMALL_STATE(2345)] = 14548, + [SMALL_STATE(2346)] = 14654, + [SMALL_STATE(2347)] = 14760, + [SMALL_STATE(2348)] = 14866, + [SMALL_STATE(2349)] = 14972, + [SMALL_STATE(2350)] = 15078, + [SMALL_STATE(2351)] = 15188, + [SMALL_STATE(2352)] = 15294, + [SMALL_STATE(2353)] = 15400, + [SMALL_STATE(2354)] = 15506, + [SMALL_STATE(2355)] = 15612, + [SMALL_STATE(2356)] = 15718, + [SMALL_STATE(2357)] = 15824, + [SMALL_STATE(2358)] = 15930, + [SMALL_STATE(2359)] = 16036, + [SMALL_STATE(2360)] = 16142, + [SMALL_STATE(2361)] = 16248, + [SMALL_STATE(2362)] = 16354, + [SMALL_STATE(2363)] = 16460, + [SMALL_STATE(2364)] = 16566, + [SMALL_STATE(2365)] = 16672, + [SMALL_STATE(2366)] = 16778, + [SMALL_STATE(2367)] = 16884, + [SMALL_STATE(2368)] = 16990, + [SMALL_STATE(2369)] = 17096, + [SMALL_STATE(2370)] = 17202, + [SMALL_STATE(2371)] = 17308, + [SMALL_STATE(2372)] = 17414, + [SMALL_STATE(2373)] = 17520, + [SMALL_STATE(2374)] = 17626, + [SMALL_STATE(2375)] = 17732, + [SMALL_STATE(2376)] = 17838, + [SMALL_STATE(2377)] = 17944, + [SMALL_STATE(2378)] = 18050, + [SMALL_STATE(2379)] = 18156, + [SMALL_STATE(2380)] = 18262, + [SMALL_STATE(2381)] = 18372, + [SMALL_STATE(2382)] = 18478, + [SMALL_STATE(2383)] = 18584, + [SMALL_STATE(2384)] = 18690, + [SMALL_STATE(2385)] = 18796, + [SMALL_STATE(2386)] = 18902, + [SMALL_STATE(2387)] = 19008, + [SMALL_STATE(2388)] = 19114, + [SMALL_STATE(2389)] = 19220, + [SMALL_STATE(2390)] = 19326, + [SMALL_STATE(2391)] = 19432, + [SMALL_STATE(2392)] = 19538, + [SMALL_STATE(2393)] = 19648, + [SMALL_STATE(2394)] = 19754, + [SMALL_STATE(2395)] = 19846, + [SMALL_STATE(2396)] = 19952, + [SMALL_STATE(2397)] = 20062, + [SMALL_STATE(2398)] = 20168, + [SMALL_STATE(2399)] = 20278, + [SMALL_STATE(2400)] = 20384, + [SMALL_STATE(2401)] = 20494, + [SMALL_STATE(2402)] = 20600, + [SMALL_STATE(2403)] = 20710, + [SMALL_STATE(2404)] = 20816, + [SMALL_STATE(2405)] = 20926, + [SMALL_STATE(2406)] = 21036, + [SMALL_STATE(2407)] = 21146, + [SMALL_STATE(2408)] = 21252, + [SMALL_STATE(2409)] = 21358, + [SMALL_STATE(2410)] = 21464, + [SMALL_STATE(2411)] = 21570, + [SMALL_STATE(2412)] = 21680, + [SMALL_STATE(2413)] = 21786, + [SMALL_STATE(2414)] = 21896, + [SMALL_STATE(2415)] = 22002, + [SMALL_STATE(2416)] = 22108, + [SMALL_STATE(2417)] = 22218, + [SMALL_STATE(2418)] = 22324, + [SMALL_STATE(2419)] = 22430, + [SMALL_STATE(2420)] = 22536, + [SMALL_STATE(2421)] = 22642, + [SMALL_STATE(2422)] = 22748, + [SMALL_STATE(2423)] = 22854, + [SMALL_STATE(2424)] = 22964, + [SMALL_STATE(2425)] = 23070, + [SMALL_STATE(2426)] = 23176, + [SMALL_STATE(2427)] = 23286, + [SMALL_STATE(2428)] = 23392, + [SMALL_STATE(2429)] = 23498, + [SMALL_STATE(2430)] = 23608, + [SMALL_STATE(2431)] = 23714, + [SMALL_STATE(2432)] = 23824, + [SMALL_STATE(2433)] = 23930, + [SMALL_STATE(2434)] = 24040, + [SMALL_STATE(2435)] = 24146, + [SMALL_STATE(2436)] = 24252, + [SMALL_STATE(2437)] = 24362, + [SMALL_STATE(2438)] = 24468, + [SMALL_STATE(2439)] = 24578, + [SMALL_STATE(2440)] = 24684, + [SMALL_STATE(2441)] = 24790, + [SMALL_STATE(2442)] = 24900, + [SMALL_STATE(2443)] = 25006, + [SMALL_STATE(2444)] = 25116, + [SMALL_STATE(2445)] = 25222, + [SMALL_STATE(2446)] = 25328, + [SMALL_STATE(2447)] = 25438, + [SMALL_STATE(2448)] = 25544, + [SMALL_STATE(2449)] = 25654, + [SMALL_STATE(2450)] = 25764, + [SMALL_STATE(2451)] = 25874, + [SMALL_STATE(2452)] = 25984, + [SMALL_STATE(2453)] = 26094, + [SMALL_STATE(2454)] = 26204, + [SMALL_STATE(2455)] = 26314, + [SMALL_STATE(2456)] = 26424, + [SMALL_STATE(2457)] = 26534, + [SMALL_STATE(2458)] = 26644, + [SMALL_STATE(2459)] = 26750, + [SMALL_STATE(2460)] = 26856, + [SMALL_STATE(2461)] = 26962, + [SMALL_STATE(2462)] = 27068, + [SMALL_STATE(2463)] = 27174, + [SMALL_STATE(2464)] = 27280, + [SMALL_STATE(2465)] = 27386, + [SMALL_STATE(2466)] = 27492, + [SMALL_STATE(2467)] = 27598, + [SMALL_STATE(2468)] = 27704, + [SMALL_STATE(2469)] = 27810, + [SMALL_STATE(2470)] = 27916, + [SMALL_STATE(2471)] = 28022, + [SMALL_STATE(2472)] = 28128, + [SMALL_STATE(2473)] = 28234, + [SMALL_STATE(2474)] = 28340, + [SMALL_STATE(2475)] = 28446, + [SMALL_STATE(2476)] = 28552, + [SMALL_STATE(2477)] = 28658, + [SMALL_STATE(2478)] = 28764, + [SMALL_STATE(2479)] = 28870, + [SMALL_STATE(2480)] = 28976, + [SMALL_STATE(2481)] = 29082, + [SMALL_STATE(2482)] = 29188, + [SMALL_STATE(2483)] = 29294, + [SMALL_STATE(2484)] = 29400, + [SMALL_STATE(2485)] = 29506, + [SMALL_STATE(2486)] = 29612, + [SMALL_STATE(2487)] = 29718, + [SMALL_STATE(2488)] = 29824, + [SMALL_STATE(2489)] = 29930, + [SMALL_STATE(2490)] = 30036, + [SMALL_STATE(2491)] = 30142, + [SMALL_STATE(2492)] = 30248, + [SMALL_STATE(2493)] = 30354, + [SMALL_STATE(2494)] = 30460, + [SMALL_STATE(2495)] = 30566, + [SMALL_STATE(2496)] = 30633, + [SMALL_STATE(2497)] = 30700, + [SMALL_STATE(2498)] = 30775, + [SMALL_STATE(2499)] = 30850, + [SMALL_STATE(2500)] = 30925, + [SMALL_STATE(2501)] = 31002, + [SMALL_STATE(2502)] = 31075, + [SMALL_STATE(2503)] = 31143, + [SMALL_STATE(2504)] = 31209, + [SMALL_STATE(2505)] = 31275, + [SMALL_STATE(2506)] = 31336, + [SMALL_STATE(2507)] = 31399, + [SMALL_STATE(2508)] = 31456, + [SMALL_STATE(2509)] = 31513, + [SMALL_STATE(2510)] = 31570, + [SMALL_STATE(2511)] = 31631, + [SMALL_STATE(2512)] = 31694, + [SMALL_STATE(2513)] = 31751, + [SMALL_STATE(2514)] = 31808, + [SMALL_STATE(2515)] = 31873, + [SMALL_STATE(2516)] = 31930, + [SMALL_STATE(2517)] = 31993, + [SMALL_STATE(2518)] = 32056, + [SMALL_STATE(2519)] = 32119, + [SMALL_STATE(2520)] = 32182, + [SMALL_STATE(2521)] = 32245, + [SMALL_STATE(2522)] = 32308, + [SMALL_STATE(2523)] = 32365, + [SMALL_STATE(2524)] = 32469, + [SMALL_STATE(2525)] = 32573, + [SMALL_STATE(2526)] = 32677, + [SMALL_STATE(2527)] = 32781, + [SMALL_STATE(2528)] = 32885, + [SMALL_STATE(2529)] = 32989, + [SMALL_STATE(2530)] = 33090, + [SMALL_STATE(2531)] = 33191, + [SMALL_STATE(2532)] = 33292, + [SMALL_STATE(2533)] = 33393, + [SMALL_STATE(2534)] = 33494, + [SMALL_STATE(2535)] = 33593, + [SMALL_STATE(2536)] = 33692, + [SMALL_STATE(2537)] = 33791, + [SMALL_STATE(2538)] = 33890, + [SMALL_STATE(2539)] = 33989, + [SMALL_STATE(2540)] = 34088, + [SMALL_STATE(2541)] = 34187, + [SMALL_STATE(2542)] = 34286, + [SMALL_STATE(2543)] = 34351, + [SMALL_STATE(2544)] = 34450, + [SMALL_STATE(2545)] = 34549, + [SMALL_STATE(2546)] = 34648, + [SMALL_STATE(2547)] = 34744, + [SMALL_STATE(2548)] = 34800, + [SMALL_STATE(2549)] = 34896, + [SMALL_STATE(2550)] = 34992, + [SMALL_STATE(2551)] = 35088, + [SMALL_STATE(2552)] = 35184, + [SMALL_STATE(2553)] = 35280, + [SMALL_STATE(2554)] = 35342, + [SMALL_STATE(2555)] = 35438, + [SMALL_STATE(2556)] = 35534, + [SMALL_STATE(2557)] = 35630, + [SMALL_STATE(2558)] = 35692, + [SMALL_STATE(2559)] = 35754, + [SMALL_STATE(2560)] = 35850, + [SMALL_STATE(2561)] = 35905, + [SMALL_STATE(2562)] = 35960, + [SMALL_STATE(2563)] = 36023, + [SMALL_STATE(2564)] = 36078, + [SMALL_STATE(2565)] = 36138, + [SMALL_STATE(2566)] = 36198, + [SMALL_STATE(2567)] = 36260, + [SMALL_STATE(2568)] = 36320, + [SMALL_STATE(2569)] = 36390, + [SMALL_STATE(2570)] = 36452, + [SMALL_STATE(2571)] = 36524, + [SMALL_STATE(2572)] = 36578, + [SMALL_STATE(2573)] = 36632, + [SMALL_STATE(2574)] = 36694, + [SMALL_STATE(2575)] = 36748, + [SMALL_STATE(2576)] = 36802, + [SMALL_STATE(2577)] = 36864, + [SMALL_STATE(2578)] = 36949, + [SMALL_STATE(2579)] = 37008, + [SMALL_STATE(2580)] = 37067, + [SMALL_STATE(2581)] = 37126, + [SMALL_STATE(2582)] = 37197, + [SMALL_STATE(2583)] = 37282, + [SMALL_STATE(2584)] = 37341, + [SMALL_STATE(2585)] = 37394, + [SMALL_STATE(2586)] = 37447, + [SMALL_STATE(2587)] = 37532, + [SMALL_STATE(2588)] = 37585, + [SMALL_STATE(2589)] = 37670, + [SMALL_STATE(2590)] = 37723, + [SMALL_STATE(2591)] = 37808, + [SMALL_STATE(2592)] = 37861, + [SMALL_STATE(2593)] = 37920, + [SMALL_STATE(2594)] = 37979, + [SMALL_STATE(2595)] = 38038, + [SMALL_STATE(2596)] = 38091, + [SMALL_STATE(2597)] = 38186, + [SMALL_STATE(2598)] = 38245, + [SMALL_STATE(2599)] = 38330, + [SMALL_STATE(2600)] = 38385, + [SMALL_STATE(2601)] = 38456, + [SMALL_STATE(2602)] = 38515, + [SMALL_STATE(2603)] = 38610, + [SMALL_STATE(2604)] = 38669, + [SMALL_STATE(2605)] = 38722, + [SMALL_STATE(2606)] = 38781, + [SMALL_STATE(2607)] = 38829, + [SMALL_STATE(2608)] = 38911, + [SMALL_STATE(2609)] = 38963, + [SMALL_STATE(2610)] = 39023, + [SMALL_STATE(2611)] = 39107, + [SMALL_STATE(2612)] = 39165, + [SMALL_STATE(2613)] = 39213, + [SMALL_STATE(2614)] = 39297, + [SMALL_STATE(2615)] = 39349, + [SMALL_STATE(2616)] = 39401, + [SMALL_STATE(2617)] = 39483, + [SMALL_STATE(2618)] = 39533, + [SMALL_STATE(2619)] = 39585, + [SMALL_STATE(2620)] = 39667, + [SMALL_STATE(2621)] = 39751, + [SMALL_STATE(2622)] = 39803, + [SMALL_STATE(2623)] = 39855, + [SMALL_STATE(2624)] = 39905, + [SMALL_STATE(2625)] = 39957, + [SMALL_STATE(2626)] = 40039, + [SMALL_STATE(2627)] = 40123, + [SMALL_STATE(2628)] = 40207, + [SMALL_STATE(2629)] = 40291, + [SMALL_STATE(2630)] = 40341, + [SMALL_STATE(2631)] = 40393, + [SMALL_STATE(2632)] = 40443, + [SMALL_STATE(2633)] = 40527, + [SMALL_STATE(2634)] = 40579, + [SMALL_STATE(2635)] = 40629, + [SMALL_STATE(2636)] = 40681, + [SMALL_STATE(2637)] = 40733, + [SMALL_STATE(2638)] = 40785, + [SMALL_STATE(2639)] = 40869, + [SMALL_STATE(2640)] = 40921, + [SMALL_STATE(2641)] = 41005, + [SMALL_STATE(2642)] = 41087, + [SMALL_STATE(2643)] = 41139, + [SMALL_STATE(2644)] = 41223, + [SMALL_STATE(2645)] = 41270, + [SMALL_STATE(2646)] = 41317, + [SMALL_STATE(2647)] = 41364, + [SMALL_STATE(2648)] = 41445, + [SMALL_STATE(2649)] = 41492, + [SMALL_STATE(2650)] = 41543, + [SMALL_STATE(2651)] = 41590, + [SMALL_STATE(2652)] = 41673, + [SMALL_STATE(2653)] = 41762, + [SMALL_STATE(2654)] = 41851, + [SMALL_STATE(2655)] = 41940, + [SMALL_STATE(2656)] = 41987, + [SMALL_STATE(2657)] = 42034, + [SMALL_STATE(2658)] = 42081, + [SMALL_STATE(2659)] = 42128, + [SMALL_STATE(2660)] = 42179, + [SMALL_STATE(2661)] = 42230, + [SMALL_STATE(2662)] = 42319, + [SMALL_STATE(2663)] = 42408, + [SMALL_STATE(2664)] = 42459, + [SMALL_STATE(2665)] = 42506, + [SMALL_STATE(2666)] = 42595, + [SMALL_STATE(2667)] = 42642, + [SMALL_STATE(2668)] = 42689, + [SMALL_STATE(2669)] = 42736, + [SMALL_STATE(2670)] = 42787, + [SMALL_STATE(2671)] = 42876, + [SMALL_STATE(2672)] = 42965, + [SMALL_STATE(2673)] = 43054, + [SMALL_STATE(2674)] = 43101, + [SMALL_STATE(2675)] = 43148, + [SMALL_STATE(2676)] = 43199, + [SMALL_STATE(2677)] = 43288, + [SMALL_STATE(2678)] = 43377, + [SMALL_STATE(2679)] = 43466, + [SMALL_STATE(2680)] = 43513, + [SMALL_STATE(2681)] = 43602, + [SMALL_STATE(2682)] = 43653, + [SMALL_STATE(2683)] = 43704, + [SMALL_STATE(2684)] = 43751, + [SMALL_STATE(2685)] = 43798, + [SMALL_STATE(2686)] = 43845, + [SMALL_STATE(2687)] = 43904, + [SMALL_STATE(2688)] = 43955, + [SMALL_STATE(2689)] = 44008, + [SMALL_STATE(2690)] = 44055, + [SMALL_STATE(2691)] = 44144, + [SMALL_STATE(2692)] = 44233, + [SMALL_STATE(2693)] = 44322, + [SMALL_STATE(2694)] = 44381, + [SMALL_STATE(2695)] = 44432, + [SMALL_STATE(2696)] = 44479, + [SMALL_STATE(2697)] = 44568, + [SMALL_STATE(2698)] = 44619, + [SMALL_STATE(2699)] = 44708, + [SMALL_STATE(2700)] = 44797, + [SMALL_STATE(2701)] = 44864, + [SMALL_STATE(2702)] = 44911, + [SMALL_STATE(2703)] = 45000, + [SMALL_STATE(2704)] = 45089, + [SMALL_STATE(2705)] = 45178, + [SMALL_STATE(2706)] = 45229, + [SMALL_STATE(2707)] = 45318, + [SMALL_STATE(2708)] = 45401, + [SMALL_STATE(2709)] = 45460, + [SMALL_STATE(2710)] = 45511, + [SMALL_STATE(2711)] = 45600, + [SMALL_STATE(2712)] = 45689, + [SMALL_STATE(2713)] = 45736, + [SMALL_STATE(2714)] = 45787, + [SMALL_STATE(2715)] = 45838, + [SMALL_STATE(2716)] = 45897, + [SMALL_STATE(2717)] = 45944, + [SMALL_STATE(2718)] = 45991, + [SMALL_STATE(2719)] = 46038, + [SMALL_STATE(2720)] = 46089, + [SMALL_STATE(2721)] = 46178, + [SMALL_STATE(2722)] = 46225, + [SMALL_STATE(2723)] = 46314, + [SMALL_STATE(2724)] = 46361, + [SMALL_STATE(2725)] = 46408, + [SMALL_STATE(2726)] = 46455, + [SMALL_STATE(2727)] = 46502, + [SMALL_STATE(2728)] = 46549, + [SMALL_STATE(2729)] = 46596, + [SMALL_STATE(2730)] = 46685, + [SMALL_STATE(2731)] = 46774, + [SMALL_STATE(2732)] = 46821, + [SMALL_STATE(2733)] = 46872, + [SMALL_STATE(2734)] = 46961, + [SMALL_STATE(2735)] = 47050, + [SMALL_STATE(2736)] = 47139, + [SMALL_STATE(2737)] = 47186, + [SMALL_STATE(2738)] = 47233, + [SMALL_STATE(2739)] = 47322, + [SMALL_STATE(2740)] = 47411, + [SMALL_STATE(2741)] = 47500, + [SMALL_STATE(2742)] = 47547, + [SMALL_STATE(2743)] = 47604, + [SMALL_STATE(2744)] = 47661, + [SMALL_STATE(2745)] = 47742, + [SMALL_STATE(2746)] = 47831, + [SMALL_STATE(2747)] = 47882, + [SMALL_STATE(2748)] = 47929, + [SMALL_STATE(2749)] = 47976, + [SMALL_STATE(2750)] = 48023, + [SMALL_STATE(2751)] = 48070, + [SMALL_STATE(2752)] = 48117, + [SMALL_STATE(2753)] = 48202, + [SMALL_STATE(2754)] = 48259, + [SMALL_STATE(2755)] = 48306, + [SMALL_STATE(2756)] = 48357, + [SMALL_STATE(2757)] = 48404, + [SMALL_STATE(2758)] = 48451, + [SMALL_STATE(2759)] = 48531, + [SMALL_STATE(2760)] = 48589, + [SMALL_STATE(2761)] = 48645, + [SMALL_STATE(2762)] = 48725, + [SMALL_STATE(2763)] = 48805, + [SMALL_STATE(2764)] = 48855, + [SMALL_STATE(2765)] = 48935, + [SMALL_STATE(2766)] = 48985, + [SMALL_STATE(2767)] = 49071, + [SMALL_STATE(2768)] = 49141, + [SMALL_STATE(2769)] = 49189, + [SMALL_STATE(2770)] = 49247, + [SMALL_STATE(2771)] = 49305, + [SMALL_STATE(2772)] = 49361, + [SMALL_STATE(2773)] = 49413, + [SMALL_STATE(2774)] = 49471, + [SMALL_STATE(2775)] = 49521, + [SMALL_STATE(2776)] = 49587, + [SMALL_STATE(2777)] = 49637, + [SMALL_STATE(2778)] = 49695, + [SMALL_STATE(2779)] = 49747, + [SMALL_STATE(2780)] = 49833, + [SMALL_STATE(2781)] = 49891, + [SMALL_STATE(2782)] = 49941, + [SMALL_STATE(2783)] = 49987, + [SMALL_STATE(2784)] = 50073, + [SMALL_STATE(2785)] = 50159, + [SMALL_STATE(2786)] = 50223, + [SMALL_STATE(2787)] = 50279, + [SMALL_STATE(2788)] = 50365, + [SMALL_STATE(2789)] = 50413, + [SMALL_STATE(2790)] = 50459, + [SMALL_STATE(2791)] = 50507, + [SMALL_STATE(2792)] = 50587, + [SMALL_STATE(2793)] = 50637, + [SMALL_STATE(2794)] = 50693, + [SMALL_STATE(2795)] = 50763, + [SMALL_STATE(2796)] = 50819, + [SMALL_STATE(2797)] = 50899, + [SMALL_STATE(2798)] = 50955, + [SMALL_STATE(2799)] = 51013, + [SMALL_STATE(2800)] = 51069, + [SMALL_STATE(2801)] = 51125, + [SMALL_STATE(2802)] = 51173, + [SMALL_STATE(2803)] = 51253, + [SMALL_STATE(2804)] = 51303, + [SMALL_STATE(2805)] = 51353, + [SMALL_STATE(2806)] = 51401, + [SMALL_STATE(2807)] = 51457, + [SMALL_STATE(2808)] = 51519, + [SMALL_STATE(2809)] = 51575, + [SMALL_STATE(2810)] = 51635, + [SMALL_STATE(2811)] = 51703, + [SMALL_STATE(2812)] = 51769, + [SMALL_STATE(2813)] = 51833, + [SMALL_STATE(2814)] = 51891, + [SMALL_STATE(2815)] = 51949, + [SMALL_STATE(2816)] = 52001, + [SMALL_STATE(2817)] = 52057, + [SMALL_STATE(2818)] = 52119, + [SMALL_STATE(2819)] = 52171, + [SMALL_STATE(2820)] = 52221, + [SMALL_STATE(2821)] = 52289, + [SMALL_STATE(2822)] = 52339, + [SMALL_STATE(2823)] = 52395, + [SMALL_STATE(2824)] = 52457, + [SMALL_STATE(2825)] = 52513, + [SMALL_STATE(2826)] = 52573, + [SMALL_STATE(2827)] = 52641, + [SMALL_STATE(2828)] = 52707, + [SMALL_STATE(2829)] = 52771, + [SMALL_STATE(2830)] = 52827, + [SMALL_STATE(2831)] = 52877, + [SMALL_STATE(2832)] = 52947, + [SMALL_STATE(2833)] = 53005, + [SMALL_STATE(2834)] = 53065, + [SMALL_STATE(2835)] = 53145, + [SMALL_STATE(2836)] = 53201, + [SMALL_STATE(2837)] = 53246, + [SMALL_STATE(2838)] = 53301, + [SMALL_STATE(2839)] = 53356, + [SMALL_STATE(2840)] = 53401, + [SMALL_STATE(2841)] = 53488, + [SMALL_STATE(2842)] = 53537, + [SMALL_STATE(2843)] = 53592, + [SMALL_STATE(2844)] = 53679, + [SMALL_STATE(2845)] = 53766, + [SMALL_STATE(2846)] = 53811, + [SMALL_STATE(2847)] = 53856, + [SMALL_STATE(2848)] = 53911, + [SMALL_STATE(2849)] = 53970, + [SMALL_STATE(2850)] = 54049, + [SMALL_STATE(2851)] = 54110, + [SMALL_STATE(2852)] = 54177, + [SMALL_STATE(2853)] = 54242, + [SMALL_STATE(2854)] = 54289, + [SMALL_STATE(2855)] = 54336, + [SMALL_STATE(2856)] = 54383, + [SMALL_STATE(2857)] = 54428, + [SMALL_STATE(2858)] = 54491, + [SMALL_STATE(2859)] = 54536, + [SMALL_STATE(2860)] = 54623, + [SMALL_STATE(2861)] = 54710, + [SMALL_STATE(2862)] = 54755, + [SMALL_STATE(2863)] = 54800, + [SMALL_STATE(2864)] = 54845, + [SMALL_STATE(2865)] = 54890, + [SMALL_STATE(2866)] = 54937, + [SMALL_STATE(2867)] = 54982, + [SMALL_STATE(2868)] = 55037, + [SMALL_STATE(2869)] = 55124, + [SMALL_STATE(2870)] = 55211, + [SMALL_STATE(2871)] = 55270, + [SMALL_STATE(2872)] = 55317, + [SMALL_STATE(2873)] = 55364, + [SMALL_STATE(2874)] = 55431, + [SMALL_STATE(2875)] = 55510, + [SMALL_STATE(2876)] = 55555, + [SMALL_STATE(2877)] = 55610, + [SMALL_STATE(2878)] = 55671, + [SMALL_STATE(2879)] = 55726, + [SMALL_STATE(2880)] = 55773, + [SMALL_STATE(2881)] = 55818, + [SMALL_STATE(2882)] = 55905, + [SMALL_STATE(2883)] = 55964, + [SMALL_STATE(2884)] = 56013, + [SMALL_STATE(2885)] = 56060, + [SMALL_STATE(2886)] = 56107, + [SMALL_STATE(2887)] = 56154, + [SMALL_STATE(2888)] = 56223, + [SMALL_STATE(2889)] = 56282, + [SMALL_STATE(2890)] = 56349, + [SMALL_STATE(2891)] = 56414, + [SMALL_STATE(2892)] = 56477, + [SMALL_STATE(2893)] = 56522, + [SMALL_STATE(2894)] = 56569, + [SMALL_STATE(2895)] = 56636, + [SMALL_STATE(2896)] = 56681, + [SMALL_STATE(2897)] = 56726, + [SMALL_STATE(2898)] = 56795, + [SMALL_STATE(2899)] = 56860, + [SMALL_STATE(2900)] = 56925, + [SMALL_STATE(2901)] = 56970, + [SMALL_STATE(2902)] = 57057, + [SMALL_STATE(2903)] = 57136, + [SMALL_STATE(2904)] = 57199, + [SMALL_STATE(2905)] = 57244, + [SMALL_STATE(2906)] = 57289, + [SMALL_STATE(2907)] = 57338, + [SMALL_STATE(2908)] = 57383, + [SMALL_STATE(2909)] = 57428, + [SMALL_STATE(2910)] = 57491, + [SMALL_STATE(2911)] = 57546, + [SMALL_STATE(2912)] = 57625, + [SMALL_STATE(2913)] = 57686, + [SMALL_STATE(2914)] = 57731, + [SMALL_STATE(2915)] = 57786, + [SMALL_STATE(2916)] = 57835, + [SMALL_STATE(2917)] = 57884, + [SMALL_STATE(2918)] = 57943, + [SMALL_STATE(2919)] = 58010, + [SMALL_STATE(2920)] = 58055, + [SMALL_STATE(2921)] = 58120, + [SMALL_STATE(2922)] = 58183, + [SMALL_STATE(2923)] = 58270, + [SMALL_STATE(2924)] = 58317, + [SMALL_STATE(2925)] = 58404, + [SMALL_STATE(2926)] = 58459, + [SMALL_STATE(2927)] = 58520, + [SMALL_STATE(2928)] = 58565, + [SMALL_STATE(2929)] = 58610, + [SMALL_STATE(2930)] = 58655, + [SMALL_STATE(2931)] = 58710, + [SMALL_STATE(2932)] = 58755, + [SMALL_STATE(2933)] = 58814, + [SMALL_STATE(2934)] = 58881, + [SMALL_STATE(2935)] = 58932, + [SMALL_STATE(2936)] = 58977, + [SMALL_STATE(2937)] = 59032, + [SMALL_STATE(2938)] = 59083, + [SMALL_STATE(2939)] = 59138, + [SMALL_STATE(2940)] = 59187, + [SMALL_STATE(2941)] = 59234, + [SMALL_STATE(2942)] = 59299, + [SMALL_STATE(2943)] = 59346, + [SMALL_STATE(2944)] = 59415, + [SMALL_STATE(2945)] = 59460, + [SMALL_STATE(2946)] = 59505, + [SMALL_STATE(2947)] = 59592, + [SMALL_STATE(2948)] = 59679, + [SMALL_STATE(2949)] = 59748, + [SMALL_STATE(2950)] = 59835, + [SMALL_STATE(2951)] = 59922, + [SMALL_STATE(2952)] = 59985, + [SMALL_STATE(2953)] = 60030, + [SMALL_STATE(2954)] = 60085, + [SMALL_STATE(2955)] = 60130, + [SMALL_STATE(2956)] = 60185, + [SMALL_STATE(2957)] = 60272, + [SMALL_STATE(2958)] = 60359, + [SMALL_STATE(2959)] = 60404, + [SMALL_STATE(2960)] = 60461, + [SMALL_STATE(2961)] = 60530, + [SMALL_STATE(2962)] = 60577, + [SMALL_STATE(2963)] = 60622, + [SMALL_STATE(2964)] = 60677, + [SMALL_STATE(2965)] = 60722, + [SMALL_STATE(2966)] = 60809, + [SMALL_STATE(2967)] = 60896, + [SMALL_STATE(2968)] = 60951, + [SMALL_STATE(2969)] = 61038, + [SMALL_STATE(2970)] = 61117, + [SMALL_STATE(2971)] = 61166, + [SMALL_STATE(2972)] = 61213, + [SMALL_STATE(2973)] = 61260, + [SMALL_STATE(2974)] = 61315, + [SMALL_STATE(2975)] = 61376, + [SMALL_STATE(2976)] = 61423, + [SMALL_STATE(2977)] = 61478, + [SMALL_STATE(2978)] = 61523, + [SMALL_STATE(2979)] = 61572, + [SMALL_STATE(2980)] = 61627, + [SMALL_STATE(2981)] = 61676, + [SMALL_STATE(2982)] = 61731, + [SMALL_STATE(2983)] = 61776, + [SMALL_STATE(2984)] = 61825, + [SMALL_STATE(2985)] = 61870, + [SMALL_STATE(2986)] = 61919, + [SMALL_STATE(2987)] = 61974, + [SMALL_STATE(2988)] = 62053, + [SMALL_STATE(2989)] = 62102, + [SMALL_STATE(2990)] = 62157, + [SMALL_STATE(2991)] = 62202, + [SMALL_STATE(2992)] = 62247, + [SMALL_STATE(2993)] = 62302, + [SMALL_STATE(2994)] = 62347, + [SMALL_STATE(2995)] = 62392, + [SMALL_STATE(2996)] = 62437, + [SMALL_STATE(2997)] = 62482, + [SMALL_STATE(2998)] = 62537, + [SMALL_STATE(2999)] = 62582, + [SMALL_STATE(3000)] = 62637, + [SMALL_STATE(3001)] = 62686, + [SMALL_STATE(3002)] = 62731, + [SMALL_STATE(3003)] = 62776, + [SMALL_STATE(3004)] = 62821, + [SMALL_STATE(3005)] = 62900, + [SMALL_STATE(3006)] = 62945, + [SMALL_STATE(3007)] = 62990, + [SMALL_STATE(3008)] = 63035, + [SMALL_STATE(3009)] = 63096, + [SMALL_STATE(3010)] = 63151, + [SMALL_STATE(3011)] = 63196, + [SMALL_STATE(3012)] = 63253, + [SMALL_STATE(3013)] = 63332, + [SMALL_STATE(3014)] = 63411, + [SMALL_STATE(3015)] = 63490, + [SMALL_STATE(3016)] = 63545, + [SMALL_STATE(3017)] = 63590, + [SMALL_STATE(3018)] = 63649, + [SMALL_STATE(3019)] = 63694, + [SMALL_STATE(3020)] = 63761, + [SMALL_STATE(3021)] = 63826, + [SMALL_STATE(3022)] = 63889, + [SMALL_STATE(3023)] = 63934, + [SMALL_STATE(3024)] = 63979, + [SMALL_STATE(3025)] = 64024, + [SMALL_STATE(3026)] = 64079, + [SMALL_STATE(3027)] = 64140, + [SMALL_STATE(3028)] = 64187, + [SMALL_STATE(3029)] = 64234, + [SMALL_STATE(3030)] = 64283, + [SMALL_STATE(3031)] = 64352, + [SMALL_STATE(3032)] = 64397, + [SMALL_STATE(3033)] = 64448, + [SMALL_STATE(3034)] = 64493, + [SMALL_STATE(3035)] = 64538, + [SMALL_STATE(3036)] = 64607, + [SMALL_STATE(3037)] = 64669, + [SMALL_STATE(3038)] = 64713, + [SMALL_STATE(3039)] = 64757, + [SMALL_STATE(3040)] = 64801, + [SMALL_STATE(3041)] = 64845, + [SMALL_STATE(3042)] = 64889, + [SMALL_STATE(3043)] = 64943, + [SMALL_STATE(3044)] = 64991, + [SMALL_STATE(3045)] = 65035, + [SMALL_STATE(3046)] = 65079, + [SMALL_STATE(3047)] = 65139, + [SMALL_STATE(3048)] = 65193, + [SMALL_STATE(3049)] = 65241, + [SMALL_STATE(3050)] = 65299, + [SMALL_STATE(3051)] = 65365, + [SMALL_STATE(3052)] = 65411, + [SMALL_STATE(3053)] = 65455, + [SMALL_STATE(3054)] = 65519, + [SMALL_STATE(3055)] = 65567, + [SMALL_STATE(3056)] = 65611, + [SMALL_STATE(3057)] = 65655, + [SMALL_STATE(3058)] = 65701, + [SMALL_STATE(3059)] = 65749, + [SMALL_STATE(3060)] = 65793, + [SMALL_STATE(3061)] = 65841, + [SMALL_STATE(3062)] = 65885, + [SMALL_STATE(3063)] = 65929, + [SMALL_STATE(3064)] = 65973, + [SMALL_STATE(3065)] = 66017, + [SMALL_STATE(3066)] = 66061, + [SMALL_STATE(3067)] = 66115, + [SMALL_STATE(3068)] = 66175, + [SMALL_STATE(3069)] = 66219, + [SMALL_STATE(3070)] = 66263, + [SMALL_STATE(3071)] = 66307, + [SMALL_STATE(3072)] = 66351, + [SMALL_STATE(3073)] = 66405, + [SMALL_STATE(3074)] = 66463, + [SMALL_STATE(3075)] = 66507, + [SMALL_STATE(3076)] = 66557, + [SMALL_STATE(3077)] = 66601, + [SMALL_STATE(3078)] = 66653, + [SMALL_STATE(3079)] = 66697, + [SMALL_STATE(3080)] = 66749, + [SMALL_STATE(3081)] = 66793, + [SMALL_STATE(3082)] = 66843, + [SMALL_STATE(3083)] = 66895, + [SMALL_STATE(3084)] = 66939, + [SMALL_STATE(3085)] = 66987, + [SMALL_STATE(3086)] = 67031, + [SMALL_STATE(3087)] = 67075, + [SMALL_STATE(3088)] = 67123, + [SMALL_STATE(3089)] = 67171, + [SMALL_STATE(3090)] = 67227, + [SMALL_STATE(3091)] = 67271, + [SMALL_STATE(3092)] = 67319, + [SMALL_STATE(3093)] = 67363, + [SMALL_STATE(3094)] = 67411, + [SMALL_STATE(3095)] = 67457, + [SMALL_STATE(3096)] = 67501, + [SMALL_STATE(3097)] = 67545, + [SMALL_STATE(3098)] = 67629, + [SMALL_STATE(3099)] = 67681, + [SMALL_STATE(3100)] = 67733, + [SMALL_STATE(3101)] = 67777, + [SMALL_STATE(3102)] = 67843, + [SMALL_STATE(3103)] = 67907, + [SMALL_STATE(3104)] = 67969, + [SMALL_STATE(3105)] = 68013, + [SMALL_STATE(3106)] = 68057, + [SMALL_STATE(3107)] = 68101, + [SMALL_STATE(3108)] = 68145, + [SMALL_STATE(3109)] = 68189, + [SMALL_STATE(3110)] = 68233, + [SMALL_STATE(3111)] = 68277, + [SMALL_STATE(3112)] = 68321, + [SMALL_STATE(3113)] = 68399, + [SMALL_STATE(3114)] = 68443, + [SMALL_STATE(3115)] = 68487, + [SMALL_STATE(3116)] = 68535, + [SMALL_STATE(3117)] = 68579, + [SMALL_STATE(3118)] = 68623, + [SMALL_STATE(3119)] = 68667, + [SMALL_STATE(3120)] = 68711, + [SMALL_STATE(3121)] = 68755, + [SMALL_STATE(3122)] = 68799, + [SMALL_STATE(3123)] = 68843, + [SMALL_STATE(3124)] = 68887, + [SMALL_STATE(3125)] = 68931, + [SMALL_STATE(3126)] = 68975, + [SMALL_STATE(3127)] = 69019, + [SMALL_STATE(3128)] = 69063, + [SMALL_STATE(3129)] = 69107, + [SMALL_STATE(3130)] = 69151, + [SMALL_STATE(3131)] = 69195, + [SMALL_STATE(3132)] = 69239, + [SMALL_STATE(3133)] = 69283, + [SMALL_STATE(3134)] = 69327, + [SMALL_STATE(3135)] = 69371, + [SMALL_STATE(3136)] = 69415, + [SMALL_STATE(3137)] = 69459, + [SMALL_STATE(3138)] = 69503, + [SMALL_STATE(3139)] = 69547, + [SMALL_STATE(3140)] = 69597, + [SMALL_STATE(3141)] = 69665, + [SMALL_STATE(3142)] = 69709, + [SMALL_STATE(3143)] = 69753, + [SMALL_STATE(3144)] = 69797, + [SMALL_STATE(3145)] = 69841, + [SMALL_STATE(3146)] = 69885, + [SMALL_STATE(3147)] = 69929, + [SMALL_STATE(3148)] = 69973, + [SMALL_STATE(3149)] = 70017, + [SMALL_STATE(3150)] = 70061, + [SMALL_STATE(3151)] = 70105, + [SMALL_STATE(3152)] = 70149, + [SMALL_STATE(3153)] = 70193, + [SMALL_STATE(3154)] = 70237, + [SMALL_STATE(3155)] = 70281, + [SMALL_STATE(3156)] = 70325, + [SMALL_STATE(3157)] = 70369, + [SMALL_STATE(3158)] = 70421, + [SMALL_STATE(3159)] = 70465, + [SMALL_STATE(3160)] = 70509, + [SMALL_STATE(3161)] = 70553, + [SMALL_STATE(3162)] = 70597, + [SMALL_STATE(3163)] = 70641, + [SMALL_STATE(3164)] = 70685, + [SMALL_STATE(3165)] = 70729, + [SMALL_STATE(3166)] = 70777, + [SMALL_STATE(3167)] = 70821, + [SMALL_STATE(3168)] = 70865, + [SMALL_STATE(3169)] = 70909, + [SMALL_STATE(3170)] = 70953, + [SMALL_STATE(3171)] = 70997, + [SMALL_STATE(3172)] = 71041, + [SMALL_STATE(3173)] = 71089, + [SMALL_STATE(3174)] = 71137, + [SMALL_STATE(3175)] = 71181, + [SMALL_STATE(3176)] = 71231, + [SMALL_STATE(3177)] = 71287, + [SMALL_STATE(3178)] = 71331, + [SMALL_STATE(3179)] = 71375, + [SMALL_STATE(3180)] = 71421, + [SMALL_STATE(3181)] = 71465, + [SMALL_STATE(3182)] = 71509, + [SMALL_STATE(3183)] = 71553, + [SMALL_STATE(3184)] = 71597, + [SMALL_STATE(3185)] = 71641, + [SMALL_STATE(3186)] = 71685, + [SMALL_STATE(3187)] = 71729, + [SMALL_STATE(3188)] = 71773, + [SMALL_STATE(3189)] = 71825, + [SMALL_STATE(3190)] = 71869, + [SMALL_STATE(3191)] = 71913, + [SMALL_STATE(3192)] = 71957, + [SMALL_STATE(3193)] = 72001, + [SMALL_STATE(3194)] = 72045, + [SMALL_STATE(3195)] = 72089, + [SMALL_STATE(3196)] = 72133, + [SMALL_STATE(3197)] = 72181, + [SMALL_STATE(3198)] = 72225, + [SMALL_STATE(3199)] = 72269, + [SMALL_STATE(3200)] = 72313, + [SMALL_STATE(3201)] = 72357, + [SMALL_STATE(3202)] = 72401, + [SMALL_STATE(3203)] = 72445, + [SMALL_STATE(3204)] = 72489, + [SMALL_STATE(3205)] = 72533, + [SMALL_STATE(3206)] = 72577, + [SMALL_STATE(3207)] = 72621, + [SMALL_STATE(3208)] = 72665, + [SMALL_STATE(3209)] = 72709, + [SMALL_STATE(3210)] = 72753, + [SMALL_STATE(3211)] = 72797, + [SMALL_STATE(3212)] = 72841, + [SMALL_STATE(3213)] = 72885, + [SMALL_STATE(3214)] = 72929, + [SMALL_STATE(3215)] = 72973, + [SMALL_STATE(3216)] = 73017, + [SMALL_STATE(3217)] = 73065, + [SMALL_STATE(3218)] = 73109, + [SMALL_STATE(3219)] = 73153, + [SMALL_STATE(3220)] = 73197, + [SMALL_STATE(3221)] = 73241, + [SMALL_STATE(3222)] = 73295, + [SMALL_STATE(3223)] = 73339, + [SMALL_STATE(3224)] = 73383, + [SMALL_STATE(3225)] = 73427, + [SMALL_STATE(3226)] = 73481, + [SMALL_STATE(3227)] = 73525, + [SMALL_STATE(3228)] = 73569, + [SMALL_STATE(3229)] = 73613, + [SMALL_STATE(3230)] = 73657, + [SMALL_STATE(3231)] = 73701, + [SMALL_STATE(3232)] = 73745, + [SMALL_STATE(3233)] = 73789, + [SMALL_STATE(3234)] = 73833, + [SMALL_STATE(3235)] = 73877, + [SMALL_STATE(3236)] = 73921, + [SMALL_STATE(3237)] = 73965, + [SMALL_STATE(3238)] = 74009, + [SMALL_STATE(3239)] = 74065, + [SMALL_STATE(3240)] = 74109, + [SMALL_STATE(3241)] = 74153, + [SMALL_STATE(3242)] = 74201, + [SMALL_STATE(3243)] = 74245, + [SMALL_STATE(3244)] = 74289, + [SMALL_STATE(3245)] = 74333, + [SMALL_STATE(3246)] = 74381, + [SMALL_STATE(3247)] = 74433, + [SMALL_STATE(3248)] = 74477, + [SMALL_STATE(3249)] = 74523, + [SMALL_STATE(3250)] = 74569, + [SMALL_STATE(3251)] = 74613, + [SMALL_STATE(3252)] = 74661, + [SMALL_STATE(3253)] = 74709, + [SMALL_STATE(3254)] = 74753, + [SMALL_STATE(3255)] = 74805, + [SMALL_STATE(3256)] = 74849, + [SMALL_STATE(3257)] = 74899, + [SMALL_STATE(3258)] = 74945, + [SMALL_STATE(3259)] = 74989, + [SMALL_STATE(3260)] = 75037, + [SMALL_STATE(3261)] = 75081, + [SMALL_STATE(3262)] = 75125, + [SMALL_STATE(3263)] = 75173, + [SMALL_STATE(3264)] = 75227, + [SMALL_STATE(3265)] = 75271, + [SMALL_STATE(3266)] = 75325, + [SMALL_STATE(3267)] = 75381, + [SMALL_STATE(3268)] = 75425, + [SMALL_STATE(3269)] = 75471, + [SMALL_STATE(3270)] = 75515, + [SMALL_STATE(3271)] = 75559, + [SMALL_STATE(3272)] = 75603, + [SMALL_STATE(3273)] = 75671, + [SMALL_STATE(3274)] = 75715, + [SMALL_STATE(3275)] = 75759, + [SMALL_STATE(3276)] = 75807, + [SMALL_STATE(3277)] = 75851, + [SMALL_STATE(3278)] = 75899, + [SMALL_STATE(3279)] = 75947, + [SMALL_STATE(3280)] = 75991, + [SMALL_STATE(3281)] = 76035, + [SMALL_STATE(3282)] = 76079, + [SMALL_STATE(3283)] = 76140, + [SMALL_STATE(3284)] = 76185, + [SMALL_STATE(3285)] = 76236, + [SMALL_STATE(3286)] = 76293, + [SMALL_STATE(3287)] = 76338, + [SMALL_STATE(3288)] = 76393, + [SMALL_STATE(3289)] = 76436, + [SMALL_STATE(3290)] = 76485, + [SMALL_STATE(3291)] = 76536, + [SMALL_STATE(3292)] = 76585, + [SMALL_STATE(3293)] = 76632, + [SMALL_STATE(3294)] = 76681, + [SMALL_STATE(3295)] = 76726, + [SMALL_STATE(3296)] = 76777, + [SMALL_STATE(3297)] = 76828, + [SMALL_STATE(3298)] = 76871, + [SMALL_STATE(3299)] = 76922, + [SMALL_STATE(3300)] = 76973, + [SMALL_STATE(3301)] = 77022, + [SMALL_STATE(3302)] = 77081, + [SMALL_STATE(3303)] = 77132, + [SMALL_STATE(3304)] = 77211, + [SMALL_STATE(3305)] = 77258, + [SMALL_STATE(3306)] = 77305, + [SMALL_STATE(3307)] = 77348, + [SMALL_STATE(3308)] = 77393, + [SMALL_STATE(3309)] = 77444, + [SMALL_STATE(3310)] = 77495, + [SMALL_STATE(3311)] = 77540, + [SMALL_STATE(3312)] = 77619, + [SMALL_STATE(3313)] = 77698, + [SMALL_STATE(3314)] = 77751, + [SMALL_STATE(3315)] = 77802, + [SMALL_STATE(3316)] = 77881, + [SMALL_STATE(3317)] = 77934, + [SMALL_STATE(3318)] = 78001, + [SMALL_STATE(3319)] = 78054, + [SMALL_STATE(3320)] = 78133, + [SMALL_STATE(3321)] = 78192, + [SMALL_STATE(3322)] = 78237, + [SMALL_STATE(3323)] = 78298, + [SMALL_STATE(3324)] = 78341, + [SMALL_STATE(3325)] = 78394, + [SMALL_STATE(3326)] = 78447, + [SMALL_STATE(3327)] = 78490, + [SMALL_STATE(3328)] = 78539, + [SMALL_STATE(3329)] = 78618, + [SMALL_STATE(3330)] = 78669, + [SMALL_STATE(3331)] = 78718, + [SMALL_STATE(3332)] = 78765, + [SMALL_STATE(3333)] = 78810, + [SMALL_STATE(3334)] = 78861, + [SMALL_STATE(3335)] = 78912, + [SMALL_STATE(3336)] = 78991, + [SMALL_STATE(3337)] = 79070, + [SMALL_STATE(3338)] = 79115, + [SMALL_STATE(3339)] = 79160, + [SMALL_STATE(3340)] = 79207, + [SMALL_STATE(3341)] = 79254, + [SMALL_STATE(3342)] = 79317, + [SMALL_STATE(3343)] = 79364, + [SMALL_STATE(3344)] = 79409, + [SMALL_STATE(3345)] = 79476, + [SMALL_STATE(3346)] = 79521, + [SMALL_STATE(3347)] = 79574, + [SMALL_STATE(3348)] = 79653, + [SMALL_STATE(3349)] = 79732, + [SMALL_STATE(3350)] = 79789, + [SMALL_STATE(3351)] = 79854, + [SMALL_STATE(3352)] = 79897, + [SMALL_STATE(3353)] = 79960, + [SMALL_STATE(3354)] = 80013, + [SMALL_STATE(3355)] = 80056, + [SMALL_STATE(3356)] = 80107, + [SMALL_STATE(3357)] = 80152, + [SMALL_STATE(3358)] = 80201, + [SMALL_STATE(3359)] = 80248, + [SMALL_STATE(3360)] = 80293, + [SMALL_STATE(3361)] = 80338, + [SMALL_STATE(3362)] = 80389, + [SMALL_STATE(3363)] = 80440, + [SMALL_STATE(3364)] = 80485, + [SMALL_STATE(3365)] = 80536, + [SMALL_STATE(3366)] = 80579, + [SMALL_STATE(3367)] = 80630, + [SMALL_STATE(3368)] = 80709, + [SMALL_STATE(3369)] = 80754, + [SMALL_STATE(3370)] = 80797, + [SMALL_STATE(3371)] = 80848, + [SMALL_STATE(3372)] = 80901, + [SMALL_STATE(3373)] = 80946, + [SMALL_STATE(3374)] = 80997, + [SMALL_STATE(3375)] = 81042, + [SMALL_STATE(3376)] = 81087, + [SMALL_STATE(3377)] = 81132, + [SMALL_STATE(3378)] = 81181, + [SMALL_STATE(3379)] = 81228, + [SMALL_STATE(3380)] = 81277, + [SMALL_STATE(3381)] = 81324, + [SMALL_STATE(3382)] = 81369, + [SMALL_STATE(3383)] = 81414, + [SMALL_STATE(3384)] = 81459, + [SMALL_STATE(3385)] = 81504, + [SMALL_STATE(3386)] = 81549, + [SMALL_STATE(3387)] = 81594, + [SMALL_STATE(3388)] = 81645, + [SMALL_STATE(3389)] = 81690, + [SMALL_STATE(3390)] = 81735, + [SMALL_STATE(3391)] = 81780, + [SMALL_STATE(3392)] = 81831, + [SMALL_STATE(3393)] = 81876, + [SMALL_STATE(3394)] = 81941, + [SMALL_STATE(3395)] = 81983, + [SMALL_STATE(3396)] = 82027, + [SMALL_STATE(3397)] = 82071, + [SMALL_STATE(3398)] = 82113, + [SMALL_STATE(3399)] = 82155, + [SMALL_STATE(3400)] = 82201, + [SMALL_STATE(3401)] = 82243, + [SMALL_STATE(3402)] = 82285, + [SMALL_STATE(3403)] = 82327, + [SMALL_STATE(3404)] = 82373, + [SMALL_STATE(3405)] = 82417, + [SMALL_STATE(3406)] = 82467, + [SMALL_STATE(3407)] = 82509, + [SMALL_STATE(3408)] = 82567, + [SMALL_STATE(3409)] = 82609, + [SMALL_STATE(3410)] = 82651, + [SMALL_STATE(3411)] = 82699, + [SMALL_STATE(3412)] = 82747, + [SMALL_STATE(3413)] = 82789, + [SMALL_STATE(3414)] = 82833, + [SMALL_STATE(3415)] = 82875, + [SMALL_STATE(3416)] = 82919, + [SMALL_STATE(3417)] = 82961, + [SMALL_STATE(3418)] = 83011, + [SMALL_STATE(3419)] = 83057, + [SMALL_STATE(3420)] = 83101, + [SMALL_STATE(3421)] = 83143, + [SMALL_STATE(3422)] = 83191, + [SMALL_STATE(3423)] = 83235, + [SMALL_STATE(3424)] = 83285, + [SMALL_STATE(3425)] = 83327, + [SMALL_STATE(3426)] = 83369, + [SMALL_STATE(3427)] = 83411, + [SMALL_STATE(3428)] = 83453, + [SMALL_STATE(3429)] = 83499, + [SMALL_STATE(3430)] = 83541, + [SMALL_STATE(3431)] = 83583, + [SMALL_STATE(3432)] = 83625, + [SMALL_STATE(3433)] = 83677, + [SMALL_STATE(3434)] = 83719, + [SMALL_STATE(3435)] = 83769, + [SMALL_STATE(3436)] = 83811, + [SMALL_STATE(3437)] = 83853, + [SMALL_STATE(3438)] = 83895, + [SMALL_STATE(3439)] = 83947, + [SMALL_STATE(3440)] = 84003, + [SMALL_STATE(3441)] = 84067, + [SMALL_STATE(3442)] = 84109, + [SMALL_STATE(3443)] = 84151, + [SMALL_STATE(3444)] = 84193, + [SMALL_STATE(3445)] = 84235, + [SMALL_STATE(3446)] = 84277, + [SMALL_STATE(3447)] = 84319, + [SMALL_STATE(3448)] = 84361, + [SMALL_STATE(3449)] = 84423, + [SMALL_STATE(3450)] = 84465, + [SMALL_STATE(3451)] = 84507, + [SMALL_STATE(3452)] = 84559, + [SMALL_STATE(3453)] = 84601, + [SMALL_STATE(3454)] = 84643, + [SMALL_STATE(3455)] = 84685, + [SMALL_STATE(3456)] = 84727, + [SMALL_STATE(3457)] = 84769, + [SMALL_STATE(3458)] = 84811, + [SMALL_STATE(3459)] = 84861, + [SMALL_STATE(3460)] = 84905, + [SMALL_STATE(3461)] = 84957, + [SMALL_STATE(3462)] = 85023, + [SMALL_STATE(3463)] = 85073, + [SMALL_STATE(3464)] = 85117, + [SMALL_STATE(3465)] = 85161, + [SMALL_STATE(3466)] = 85221, + [SMALL_STATE(3467)] = 85265, + [SMALL_STATE(3468)] = 85307, + [SMALL_STATE(3469)] = 85351, + [SMALL_STATE(3470)] = 85393, + [SMALL_STATE(3471)] = 85435, + [SMALL_STATE(3472)] = 85487, + [SMALL_STATE(3473)] = 85529, + [SMALL_STATE(3474)] = 85571, + [SMALL_STATE(3475)] = 85613, + [SMALL_STATE(3476)] = 85655, + [SMALL_STATE(3477)] = 85697, + [SMALL_STATE(3478)] = 85741, + [SMALL_STATE(3479)] = 85790, + [SMALL_STATE(3480)] = 85869, + [SMALL_STATE(3481)] = 85918, + [SMALL_STATE(3482)] = 85997, + [SMALL_STATE(3483)] = 86076, + [SMALL_STATE(3484)] = 86155, + [SMALL_STATE(3485)] = 86198, + [SMALL_STATE(3486)] = 86239, + [SMALL_STATE(3487)] = 86280, + [SMALL_STATE(3488)] = 86359, + [SMALL_STATE(3489)] = 86404, + [SMALL_STATE(3490)] = 86453, + [SMALL_STATE(3491)] = 86532, + [SMALL_STATE(3492)] = 86573, + [SMALL_STATE(3493)] = 86614, + [SMALL_STATE(3494)] = 86655, + [SMALL_STATE(3495)] = 86696, + [SMALL_STATE(3496)] = 86775, + [SMALL_STATE(3497)] = 86816, + [SMALL_STATE(3498)] = 86857, + [SMALL_STATE(3499)] = 86898, + [SMALL_STATE(3500)] = 86939, + [SMALL_STATE(3501)] = 86980, + [SMALL_STATE(3502)] = 87059, + [SMALL_STATE(3503)] = 87100, + [SMALL_STATE(3504)] = 87141, + [SMALL_STATE(3505)] = 87182, + [SMALL_STATE(3506)] = 87223, + [SMALL_STATE(3507)] = 87264, + [SMALL_STATE(3508)] = 87305, + [SMALL_STATE(3509)] = 87346, + [SMALL_STATE(3510)] = 87387, + [SMALL_STATE(3511)] = 87432, + [SMALL_STATE(3512)] = 87511, + [SMALL_STATE(3513)] = 87552, + [SMALL_STATE(3514)] = 87593, + [SMALL_STATE(3515)] = 87634, + [SMALL_STATE(3516)] = 87677, + [SMALL_STATE(3517)] = 87718, + [SMALL_STATE(3518)] = 87797, + [SMALL_STATE(3519)] = 87840, + [SMALL_STATE(3520)] = 87881, + [SMALL_STATE(3521)] = 87922, + [SMALL_STATE(3522)] = 88001, + [SMALL_STATE(3523)] = 88080, + [SMALL_STATE(3524)] = 88159, + [SMALL_STATE(3525)] = 88202, + [SMALL_STATE(3526)] = 88243, + [SMALL_STATE(3527)] = 88284, + [SMALL_STATE(3528)] = 88325, + [SMALL_STATE(3529)] = 88366, + [SMALL_STATE(3530)] = 88409, + [SMALL_STATE(3531)] = 88450, + [SMALL_STATE(3532)] = 88491, + [SMALL_STATE(3533)] = 88532, + [SMALL_STATE(3534)] = 88581, + [SMALL_STATE(3535)] = 88660, + [SMALL_STATE(3536)] = 88701, + [SMALL_STATE(3537)] = 88746, + [SMALL_STATE(3538)] = 88787, + [SMALL_STATE(3539)] = 88872, + [SMALL_STATE(3540)] = 88913, + [SMALL_STATE(3541)] = 88992, + [SMALL_STATE(3542)] = 89041, + [SMALL_STATE(3543)] = 89120, + [SMALL_STATE(3544)] = 89199, + [SMALL_STATE(3545)] = 89240, + [SMALL_STATE(3546)] = 89281, + [SMALL_STATE(3547)] = 89322, + [SMALL_STATE(3548)] = 89363, + [SMALL_STATE(3549)] = 89442, + [SMALL_STATE(3550)] = 89521, + [SMALL_STATE(3551)] = 89564, + [SMALL_STATE(3552)] = 89643, + [SMALL_STATE(3553)] = 89686, + [SMALL_STATE(3554)] = 89727, + [SMALL_STATE(3555)] = 89768, + [SMALL_STATE(3556)] = 89811, + [SMALL_STATE(3557)] = 89890, + [SMALL_STATE(3558)] = 89937, + [SMALL_STATE(3559)] = 89978, + [SMALL_STATE(3560)] = 90019, + [SMALL_STATE(3561)] = 90060, + [SMALL_STATE(3562)] = 90139, + [SMALL_STATE(3563)] = 90180, + [SMALL_STATE(3564)] = 90259, + [SMALL_STATE(3565)] = 90300, + [SMALL_STATE(3566)] = 90341, + [SMALL_STATE(3567)] = 90420, + [SMALL_STATE(3568)] = 90499, + [SMALL_STATE(3569)] = 90578, + [SMALL_STATE(3570)] = 90619, + [SMALL_STATE(3571)] = 90660, + [SMALL_STATE(3572)] = 90739, + [SMALL_STATE(3573)] = 90818, + [SMALL_STATE(3574)] = 90897, + [SMALL_STATE(3575)] = 90946, + [SMALL_STATE(3576)] = 90987, + [SMALL_STATE(3577)] = 91036, + [SMALL_STATE(3578)] = 91115, + [SMALL_STATE(3579)] = 91194, + [SMALL_STATE(3580)] = 91235, + [SMALL_STATE(3581)] = 91314, + [SMALL_STATE(3582)] = 91357, + [SMALL_STATE(3583)] = 91398, + [SMALL_STATE(3584)] = 91477, + [SMALL_STATE(3585)] = 91518, + [SMALL_STATE(3586)] = 91597, + [SMALL_STATE(3587)] = 91638, + [SMALL_STATE(3588)] = 91717, + [SMALL_STATE(3589)] = 91796, + [SMALL_STATE(3590)] = 91875, + [SMALL_STATE(3591)] = 91920, + [SMALL_STATE(3592)] = 91967, + [SMALL_STATE(3593)] = 92046, + [SMALL_STATE(3594)] = 92087, + [SMALL_STATE(3595)] = 92133, + [SMALL_STATE(3596)] = 92205, + [SMALL_STATE(3597)] = 92249, + [SMALL_STATE(3598)] = 92291, + [SMALL_STATE(3599)] = 92339, + [SMALL_STATE(3600)] = 92411, + [SMALL_STATE(3601)] = 92483, + [SMALL_STATE(3602)] = 92531, + [SMALL_STATE(3603)] = 92603, + [SMALL_STATE(3604)] = 92675, + [SMALL_STATE(3605)] = 92747, + [SMALL_STATE(3606)] = 92819, + [SMALL_STATE(3607)] = 92895, + [SMALL_STATE(3608)] = 92943, + [SMALL_STATE(3609)] = 93015, + [SMALL_STATE(3610)] = 93087, + [SMALL_STATE(3611)] = 93128, + [SMALL_STATE(3612)] = 93201, + [SMALL_STATE(3613)] = 93240, + [SMALL_STATE(3614)] = 93317, + [SMALL_STATE(3615)] = 93356, + [SMALL_STATE(3616)] = 93429, + [SMALL_STATE(3617)] = 93470, + [SMALL_STATE(3618)] = 93543, + [SMALL_STATE(3619)] = 93616, + [SMALL_STATE(3620)] = 93657, + [SMALL_STATE(3621)] = 93700, + [SMALL_STATE(3622)] = 93739, + [SMALL_STATE(3623)] = 93812, + [SMALL_STATE(3624)] = 93853, + [SMALL_STATE(3625)] = 93892, + [SMALL_STATE(3626)] = 93933, + [SMALL_STATE(3627)] = 93974, + [SMALL_STATE(3628)] = 94023, + [SMALL_STATE(3629)] = 94096, + [SMALL_STATE(3630)] = 94137, + [SMALL_STATE(3631)] = 94176, + [SMALL_STATE(3632)] = 94217, + [SMALL_STATE(3633)] = 94290, + [SMALL_STATE(3634)] = 94363, + [SMALL_STATE(3635)] = 94401, + [SMALL_STATE(3636)] = 94439, + [SMALL_STATE(3637)] = 94477, + [SMALL_STATE(3638)] = 94515, + [SMALL_STATE(3639)] = 94553, + [SMALL_STATE(3640)] = 94627, + [SMALL_STATE(3641)] = 94697, + [SMALL_STATE(3642)] = 94765, + [SMALL_STATE(3643)] = 94833, + [SMALL_STATE(3644)] = 94871, + [SMALL_STATE(3645)] = 94909, + [SMALL_STATE(3646)] = 94947, + [SMALL_STATE(3647)] = 94985, + [SMALL_STATE(3648)] = 95055, + [SMALL_STATE(3649)] = 95125, + [SMALL_STATE(3650)] = 95195, + [SMALL_STATE(3651)] = 95265, + [SMALL_STATE(3652)] = 95339, + [SMALL_STATE(3653)] = 95407, + [SMALL_STATE(3654)] = 95477, + [SMALL_STATE(3655)] = 95515, + [SMALL_STATE(3656)] = 95553, + [SMALL_STATE(3657)] = 95595, + [SMALL_STATE(3658)] = 95633, + [SMALL_STATE(3659)] = 95671, + [SMALL_STATE(3660)] = 95741, + [SMALL_STATE(3661)] = 95815, + [SMALL_STATE(3662)] = 95883, + [SMALL_STATE(3663)] = 95953, + [SMALL_STATE(3664)] = 96023, + [SMALL_STATE(3665)] = 96097, + [SMALL_STATE(3666)] = 96165, + [SMALL_STATE(3667)] = 96235, + [SMALL_STATE(3668)] = 96275, + [SMALL_STATE(3669)] = 96345, + [SMALL_STATE(3670)] = 96383, + [SMALL_STATE(3671)] = 96421, + [SMALL_STATE(3672)] = 96459, + [SMALL_STATE(3673)] = 96497, + [SMALL_STATE(3674)] = 96535, + [SMALL_STATE(3675)] = 96609, + [SMALL_STATE(3676)] = 96649, + [SMALL_STATE(3677)] = 96687, + [SMALL_STATE(3678)] = 96725, + [SMALL_STATE(3679)] = 96799, + [SMALL_STATE(3680)] = 96837, + [SMALL_STATE(3681)] = 96875, + [SMALL_STATE(3682)] = 96913, + [SMALL_STATE(3683)] = 96951, + [SMALL_STATE(3684)] = 96989, + [SMALL_STATE(3685)] = 97027, + [SMALL_STATE(3686)] = 97065, + [SMALL_STATE(3687)] = 97103, + [SMALL_STATE(3688)] = 97141, + [SMALL_STATE(3689)] = 97179, + [SMALL_STATE(3690)] = 97217, + [SMALL_STATE(3691)] = 97255, + [SMALL_STATE(3692)] = 97293, + [SMALL_STATE(3693)] = 97331, + [SMALL_STATE(3694)] = 97369, + [SMALL_STATE(3695)] = 97407, + [SMALL_STATE(3696)] = 97445, + [SMALL_STATE(3697)] = 97483, + [SMALL_STATE(3698)] = 97521, + [SMALL_STATE(3699)] = 97559, + [SMALL_STATE(3700)] = 97597, + [SMALL_STATE(3701)] = 97635, + [SMALL_STATE(3702)] = 97673, + [SMALL_STATE(3703)] = 97711, + [SMALL_STATE(3704)] = 97749, + [SMALL_STATE(3705)] = 97787, + [SMALL_STATE(3706)] = 97825, + [SMALL_STATE(3707)] = 97863, + [SMALL_STATE(3708)] = 97901, + [SMALL_STATE(3709)] = 97939, + [SMALL_STATE(3710)] = 97977, + [SMALL_STATE(3711)] = 98015, + [SMALL_STATE(3712)] = 98053, + [SMALL_STATE(3713)] = 98091, + [SMALL_STATE(3714)] = 98129, + [SMALL_STATE(3715)] = 98167, + [SMALL_STATE(3716)] = 98205, + [SMALL_STATE(3717)] = 98243, + [SMALL_STATE(3718)] = 98281, + [SMALL_STATE(3719)] = 98319, + [SMALL_STATE(3720)] = 98357, + [SMALL_STATE(3721)] = 98395, + [SMALL_STATE(3722)] = 98433, + [SMALL_STATE(3723)] = 98471, + [SMALL_STATE(3724)] = 98509, + [SMALL_STATE(3725)] = 98547, + [SMALL_STATE(3726)] = 98585, + [SMALL_STATE(3727)] = 98623, + [SMALL_STATE(3728)] = 98661, + [SMALL_STATE(3729)] = 98699, + [SMALL_STATE(3730)] = 98737, + [SMALL_STATE(3731)] = 98775, + [SMALL_STATE(3732)] = 98813, + [SMALL_STATE(3733)] = 98851, + [SMALL_STATE(3734)] = 98889, + [SMALL_STATE(3735)] = 98927, + [SMALL_STATE(3736)] = 98965, + [SMALL_STATE(3737)] = 99003, + [SMALL_STATE(3738)] = 99041, + [SMALL_STATE(3739)] = 99079, + [SMALL_STATE(3740)] = 99117, + [SMALL_STATE(3741)] = 99155, + [SMALL_STATE(3742)] = 99193, + [SMALL_STATE(3743)] = 99231, + [SMALL_STATE(3744)] = 99269, + [SMALL_STATE(3745)] = 99307, + [SMALL_STATE(3746)] = 99345, + [SMALL_STATE(3747)] = 99383, + [SMALL_STATE(3748)] = 99421, + [SMALL_STATE(3749)] = 99459, + [SMALL_STATE(3750)] = 99497, + [SMALL_STATE(3751)] = 99535, + [SMALL_STATE(3752)] = 99573, + [SMALL_STATE(3753)] = 99611, + [SMALL_STATE(3754)] = 99649, + [SMALL_STATE(3755)] = 99687, + [SMALL_STATE(3756)] = 99725, + [SMALL_STATE(3757)] = 99763, + [SMALL_STATE(3758)] = 99801, + [SMALL_STATE(3759)] = 99839, + [SMALL_STATE(3760)] = 99877, + [SMALL_STATE(3761)] = 99915, + [SMALL_STATE(3762)] = 99953, + [SMALL_STATE(3763)] = 99991, + [SMALL_STATE(3764)] = 100029, + [SMALL_STATE(3765)] = 100067, + [SMALL_STATE(3766)] = 100105, + [SMALL_STATE(3767)] = 100143, + [SMALL_STATE(3768)] = 100181, + [SMALL_STATE(3769)] = 100219, + [SMALL_STATE(3770)] = 100257, + [SMALL_STATE(3771)] = 100295, + [SMALL_STATE(3772)] = 100333, + [SMALL_STATE(3773)] = 100371, + [SMALL_STATE(3774)] = 100409, + [SMALL_STATE(3775)] = 100447, + [SMALL_STATE(3776)] = 100485, + [SMALL_STATE(3777)] = 100523, + [SMALL_STATE(3778)] = 100561, + [SMALL_STATE(3779)] = 100599, + [SMALL_STATE(3780)] = 100637, + [SMALL_STATE(3781)] = 100675, + [SMALL_STATE(3782)] = 100713, + [SMALL_STATE(3783)] = 100751, + [SMALL_STATE(3784)] = 100789, + [SMALL_STATE(3785)] = 100827, + [SMALL_STATE(3786)] = 100865, + [SMALL_STATE(3787)] = 100903, + [SMALL_STATE(3788)] = 100941, + [SMALL_STATE(3789)] = 100979, + [SMALL_STATE(3790)] = 101017, + [SMALL_STATE(3791)] = 101055, + [SMALL_STATE(3792)] = 101093, + [SMALL_STATE(3793)] = 101131, + [SMALL_STATE(3794)] = 101169, + [SMALL_STATE(3795)] = 101207, + [SMALL_STATE(3796)] = 101245, + [SMALL_STATE(3797)] = 101283, + [SMALL_STATE(3798)] = 101321, + [SMALL_STATE(3799)] = 101359, + [SMALL_STATE(3800)] = 101397, + [SMALL_STATE(3801)] = 101435, + [SMALL_STATE(3802)] = 101473, + [SMALL_STATE(3803)] = 101511, + [SMALL_STATE(3804)] = 101549, + [SMALL_STATE(3805)] = 101587, + [SMALL_STATE(3806)] = 101625, + [SMALL_STATE(3807)] = 101663, + [SMALL_STATE(3808)] = 101701, + [SMALL_STATE(3809)] = 101739, + [SMALL_STATE(3810)] = 101777, + [SMALL_STATE(3811)] = 101815, + [SMALL_STATE(3812)] = 101853, + [SMALL_STATE(3813)] = 101891, + [SMALL_STATE(3814)] = 101929, + [SMALL_STATE(3815)] = 101967, + [SMALL_STATE(3816)] = 102005, + [SMALL_STATE(3817)] = 102043, + [SMALL_STATE(3818)] = 102081, + [SMALL_STATE(3819)] = 102119, + [SMALL_STATE(3820)] = 102157, + [SMALL_STATE(3821)] = 102195, + [SMALL_STATE(3822)] = 102233, + [SMALL_STATE(3823)] = 102271, + [SMALL_STATE(3824)] = 102309, + [SMALL_STATE(3825)] = 102347, + [SMALL_STATE(3826)] = 102385, + [SMALL_STATE(3827)] = 102423, + [SMALL_STATE(3828)] = 102461, + [SMALL_STATE(3829)] = 102499, + [SMALL_STATE(3830)] = 102537, + [SMALL_STATE(3831)] = 102575, + [SMALL_STATE(3832)] = 102613, + [SMALL_STATE(3833)] = 102651, + [SMALL_STATE(3834)] = 102689, + [SMALL_STATE(3835)] = 102727, + [SMALL_STATE(3836)] = 102765, + [SMALL_STATE(3837)] = 102803, + [SMALL_STATE(3838)] = 102841, + [SMALL_STATE(3839)] = 102879, + [SMALL_STATE(3840)] = 102917, + [SMALL_STATE(3841)] = 102955, + [SMALL_STATE(3842)] = 102993, + [SMALL_STATE(3843)] = 103031, + [SMALL_STATE(3844)] = 103069, + [SMALL_STATE(3845)] = 103107, + [SMALL_STATE(3846)] = 103145, + [SMALL_STATE(3847)] = 103183, + [SMALL_STATE(3848)] = 103221, + [SMALL_STATE(3849)] = 103259, + [SMALL_STATE(3850)] = 103297, + [SMALL_STATE(3851)] = 103335, + [SMALL_STATE(3852)] = 103373, + [SMALL_STATE(3853)] = 103411, + [SMALL_STATE(3854)] = 103449, + [SMALL_STATE(3855)] = 103487, + [SMALL_STATE(3856)] = 103525, + [SMALL_STATE(3857)] = 103563, + [SMALL_STATE(3858)] = 103601, + [SMALL_STATE(3859)] = 103639, + [SMALL_STATE(3860)] = 103677, + [SMALL_STATE(3861)] = 103715, + [SMALL_STATE(3862)] = 103753, + [SMALL_STATE(3863)] = 103791, + [SMALL_STATE(3864)] = 103829, + [SMALL_STATE(3865)] = 103867, + [SMALL_STATE(3866)] = 103905, + [SMALL_STATE(3867)] = 103943, + [SMALL_STATE(3868)] = 103981, + [SMALL_STATE(3869)] = 104019, + [SMALL_STATE(3870)] = 104057, + [SMALL_STATE(3871)] = 104095, + [SMALL_STATE(3872)] = 104133, + [SMALL_STATE(3873)] = 104171, + [SMALL_STATE(3874)] = 104208, + [SMALL_STATE(3875)] = 104275, + [SMALL_STATE(3876)] = 104340, + [SMALL_STATE(3877)] = 104379, + [SMALL_STATE(3878)] = 104416, + [SMALL_STATE(3879)] = 104453, + [SMALL_STATE(3880)] = 104492, + [SMALL_STATE(3881)] = 104529, + [SMALL_STATE(3882)] = 104596, + [SMALL_STATE(3883)] = 104635, + [SMALL_STATE(3884)] = 104672, + [SMALL_STATE(3885)] = 104709, + [SMALL_STATE(3886)] = 104746, + [SMALL_STATE(3887)] = 104785, + [SMALL_STATE(3888)] = 104824, + [SMALL_STATE(3889)] = 104891, + [SMALL_STATE(3890)] = 104928, + [SMALL_STATE(3891)] = 104965, + [SMALL_STATE(3892)] = 105002, + [SMALL_STATE(3893)] = 105039, + [SMALL_STATE(3894)] = 105076, + [SMALL_STATE(3895)] = 105113, + [SMALL_STATE(3896)] = 105150, + [SMALL_STATE(3897)] = 105189, + [SMALL_STATE(3898)] = 105256, + [SMALL_STATE(3899)] = 105293, + [SMALL_STATE(3900)] = 105330, + [SMALL_STATE(3901)] = 105367, + [SMALL_STATE(3902)] = 105404, + [SMALL_STATE(3903)] = 105441, + [SMALL_STATE(3904)] = 105478, + [SMALL_STATE(3905)] = 105515, + [SMALL_STATE(3906)] = 105552, + [SMALL_STATE(3907)] = 105589, + [SMALL_STATE(3908)] = 105626, + [SMALL_STATE(3909)] = 105663, + [SMALL_STATE(3910)] = 105702, + [SMALL_STATE(3911)] = 105739, + [SMALL_STATE(3912)] = 105776, + [SMALL_STATE(3913)] = 105813, + [SMALL_STATE(3914)] = 105850, + [SMALL_STATE(3915)] = 105887, + [SMALL_STATE(3916)] = 105924, + [SMALL_STATE(3917)] = 105961, + [SMALL_STATE(3918)] = 105998, + [SMALL_STATE(3919)] = 106035, + [SMALL_STATE(3920)] = 106072, + [SMALL_STATE(3921)] = 106109, + [SMALL_STATE(3922)] = 106146, + [SMALL_STATE(3923)] = 106183, + [SMALL_STATE(3924)] = 106220, + [SMALL_STATE(3925)] = 106259, + [SMALL_STATE(3926)] = 106296, + [SMALL_STATE(3927)] = 106333, + [SMALL_STATE(3928)] = 106370, + [SMALL_STATE(3929)] = 106407, + [SMALL_STATE(3930)] = 106444, + [SMALL_STATE(3931)] = 106481, + [SMALL_STATE(3932)] = 106518, + [SMALL_STATE(3933)] = 106555, + [SMALL_STATE(3934)] = 106592, + [SMALL_STATE(3935)] = 106629, + [SMALL_STATE(3936)] = 106666, + [SMALL_STATE(3937)] = 106703, + [SMALL_STATE(3938)] = 106740, + [SMALL_STATE(3939)] = 106777, + [SMALL_STATE(3940)] = 106814, + [SMALL_STATE(3941)] = 106851, + [SMALL_STATE(3942)] = 106888, + [SMALL_STATE(3943)] = 106925, + [SMALL_STATE(3944)] = 106962, + [SMALL_STATE(3945)] = 106999, + [SMALL_STATE(3946)] = 107036, + [SMALL_STATE(3947)] = 107073, + [SMALL_STATE(3948)] = 107140, + [SMALL_STATE(3949)] = 107207, + [SMALL_STATE(3950)] = 107244, + [SMALL_STATE(3951)] = 107281, + [SMALL_STATE(3952)] = 107318, + [SMALL_STATE(3953)] = 107355, + [SMALL_STATE(3954)] = 107392, + [SMALL_STATE(3955)] = 107429, + [SMALL_STATE(3956)] = 107496, + [SMALL_STATE(3957)] = 107533, + [SMALL_STATE(3958)] = 107570, + [SMALL_STATE(3959)] = 107607, + [SMALL_STATE(3960)] = 107644, + [SMALL_STATE(3961)] = 107681, + [SMALL_STATE(3962)] = 107718, + [SMALL_STATE(3963)] = 107755, + [SMALL_STATE(3964)] = 107792, + [SMALL_STATE(3965)] = 107829, + [SMALL_STATE(3966)] = 107866, + [SMALL_STATE(3967)] = 107903, + [SMALL_STATE(3968)] = 107940, + [SMALL_STATE(3969)] = 107977, + [SMALL_STATE(3970)] = 108014, + [SMALL_STATE(3971)] = 108051, + [SMALL_STATE(3972)] = 108088, + [SMALL_STATE(3973)] = 108125, + [SMALL_STATE(3974)] = 108190, + [SMALL_STATE(3975)] = 108227, + [SMALL_STATE(3976)] = 108264, + [SMALL_STATE(3977)] = 108329, + [SMALL_STATE(3978)] = 108366, + [SMALL_STATE(3979)] = 108403, + [SMALL_STATE(3980)] = 108440, + [SMALL_STATE(3981)] = 108505, + [SMALL_STATE(3982)] = 108542, + [SMALL_STATE(3983)] = 108579, + [SMALL_STATE(3984)] = 108616, + [SMALL_STATE(3985)] = 108653, + [SMALL_STATE(3986)] = 108720, + [SMALL_STATE(3987)] = 108757, + [SMALL_STATE(3988)] = 108795, + [SMALL_STATE(3989)] = 108831, + [SMALL_STATE(3990)] = 108867, + [SMALL_STATE(3991)] = 108903, + [SMALL_STATE(3992)] = 108939, + [SMALL_STATE(3993)] = 108975, + [SMALL_STATE(3994)] = 109011, + [SMALL_STATE(3995)] = 109047, + [SMALL_STATE(3996)] = 109083, + [SMALL_STATE(3997)] = 109119, + [SMALL_STATE(3998)] = 109155, + [SMALL_STATE(3999)] = 109191, + [SMALL_STATE(4000)] = 109227, + [SMALL_STATE(4001)] = 109263, + [SMALL_STATE(4002)] = 109299, + [SMALL_STATE(4003)] = 109335, + [SMALL_STATE(4004)] = 109371, + [SMALL_STATE(4005)] = 109407, + [SMALL_STATE(4006)] = 109443, + [SMALL_STATE(4007)] = 109479, + [SMALL_STATE(4008)] = 109515, + [SMALL_STATE(4009)] = 109551, + [SMALL_STATE(4010)] = 109587, + [SMALL_STATE(4011)] = 109623, + [SMALL_STATE(4012)] = 109659, + [SMALL_STATE(4013)] = 109695, + [SMALL_STATE(4014)] = 109731, + [SMALL_STATE(4015)] = 109767, + [SMALL_STATE(4016)] = 109803, + [SMALL_STATE(4017)] = 109839, + [SMALL_STATE(4018)] = 109875, + [SMALL_STATE(4019)] = 109911, + [SMALL_STATE(4020)] = 109947, + [SMALL_STATE(4021)] = 110009, + [SMALL_STATE(4022)] = 110045, + [SMALL_STATE(4023)] = 110081, + [SMALL_STATE(4024)] = 110117, + [SMALL_STATE(4025)] = 110153, + [SMALL_STATE(4026)] = 110189, + [SMALL_STATE(4027)] = 110225, + [SMALL_STATE(4028)] = 110261, + [SMALL_STATE(4029)] = 110299, + [SMALL_STATE(4030)] = 110335, + [SMALL_STATE(4031)] = 110371, + [SMALL_STATE(4032)] = 110407, + [SMALL_STATE(4033)] = 110443, + [SMALL_STATE(4034)] = 110479, + [SMALL_STATE(4035)] = 110515, + [SMALL_STATE(4036)] = 110551, + [SMALL_STATE(4037)] = 110587, + [SMALL_STATE(4038)] = 110623, + [SMALL_STATE(4039)] = 110659, + [SMALL_STATE(4040)] = 110695, + [SMALL_STATE(4041)] = 110731, + [SMALL_STATE(4042)] = 110767, + [SMALL_STATE(4043)] = 110803, + [SMALL_STATE(4044)] = 110839, + [SMALL_STATE(4045)] = 110875, + [SMALL_STATE(4046)] = 110937, + [SMALL_STATE(4047)] = 110973, + [SMALL_STATE(4048)] = 111035, + [SMALL_STATE(4049)] = 111071, + [SMALL_STATE(4050)] = 111107, + [SMALL_STATE(4051)] = 111143, + [SMALL_STATE(4052)] = 111179, + [SMALL_STATE(4053)] = 111215, + [SMALL_STATE(4054)] = 111251, + [SMALL_STATE(4055)] = 111287, + [SMALL_STATE(4056)] = 111323, + [SMALL_STATE(4057)] = 111359, + [SMALL_STATE(4058)] = 111395, + [SMALL_STATE(4059)] = 111431, + [SMALL_STATE(4060)] = 111467, + [SMALL_STATE(4061)] = 111503, + [SMALL_STATE(4062)] = 111539, + [SMALL_STATE(4063)] = 111575, + [SMALL_STATE(4064)] = 111611, + [SMALL_STATE(4065)] = 111647, + [SMALL_STATE(4066)] = 111683, + [SMALL_STATE(4067)] = 111719, + [SMALL_STATE(4068)] = 111755, + [SMALL_STATE(4069)] = 111791, + [SMALL_STATE(4070)] = 111827, + [SMALL_STATE(4071)] = 111863, + [SMALL_STATE(4072)] = 111899, + [SMALL_STATE(4073)] = 111935, + [SMALL_STATE(4074)] = 111971, + [SMALL_STATE(4075)] = 112007, + [SMALL_STATE(4076)] = 112043, + [SMALL_STATE(4077)] = 112079, + [SMALL_STATE(4078)] = 112115, + [SMALL_STATE(4079)] = 112151, + [SMALL_STATE(4080)] = 112187, + [SMALL_STATE(4081)] = 112223, + [SMALL_STATE(4082)] = 112259, + [SMALL_STATE(4083)] = 112295, + [SMALL_STATE(4084)] = 112331, + [SMALL_STATE(4085)] = 112367, + [SMALL_STATE(4086)] = 112403, + [SMALL_STATE(4087)] = 112439, + [SMALL_STATE(4088)] = 112475, + [SMALL_STATE(4089)] = 112511, + [SMALL_STATE(4090)] = 112547, + [SMALL_STATE(4091)] = 112583, + [SMALL_STATE(4092)] = 112619, + [SMALL_STATE(4093)] = 112655, + [SMALL_STATE(4094)] = 112691, + [SMALL_STATE(4095)] = 112727, + [SMALL_STATE(4096)] = 112763, + [SMALL_STATE(4097)] = 112799, + [SMALL_STATE(4098)] = 112835, + [SMALL_STATE(4099)] = 112871, + [SMALL_STATE(4100)] = 112907, + [SMALL_STATE(4101)] = 112943, + [SMALL_STATE(4102)] = 112979, + [SMALL_STATE(4103)] = 113015, + [SMALL_STATE(4104)] = 113051, + [SMALL_STATE(4105)] = 113087, + [SMALL_STATE(4106)] = 113123, + [SMALL_STATE(4107)] = 113159, + [SMALL_STATE(4108)] = 113195, + [SMALL_STATE(4109)] = 113231, + [SMALL_STATE(4110)] = 113293, + [SMALL_STATE(4111)] = 113329, + [SMALL_STATE(4112)] = 113365, + [SMALL_STATE(4113)] = 113401, + [SMALL_STATE(4114)] = 113437, + [SMALL_STATE(4115)] = 113473, + [SMALL_STATE(4116)] = 113509, + [SMALL_STATE(4117)] = 113571, + [SMALL_STATE(4118)] = 113607, + [SMALL_STATE(4119)] = 113642, + [SMALL_STATE(4120)] = 113687, + [SMALL_STATE(4121)] = 113732, + [SMALL_STATE(4122)] = 113767, + [SMALL_STATE(4123)] = 113812, + [SMALL_STATE(4124)] = 113847, + [SMALL_STATE(4125)] = 113882, + [SMALL_STATE(4126)] = 113917, + [SMALL_STATE(4127)] = 113952, + [SMALL_STATE(4128)] = 113987, + [SMALL_STATE(4129)] = 114022, + [SMALL_STATE(4130)] = 114057, + [SMALL_STATE(4131)] = 114092, + [SMALL_STATE(4132)] = 114130, + [SMALL_STATE(4133)] = 114168, + [SMALL_STATE(4134)] = 114206, + [SMALL_STATE(4135)] = 114244, + [SMALL_STATE(4136)] = 114304, + [SMALL_STATE(4137)] = 114364, + [SMALL_STATE(4138)] = 114424, + [SMALL_STATE(4139)] = 114492, + [SMALL_STATE(4140)] = 114552, + [SMALL_STATE(4141)] = 114612, + [SMALL_STATE(4142)] = 114680, + [SMALL_STATE(4143)] = 114721, + [SMALL_STATE(4144)] = 114762, + [SMALL_STATE(4145)] = 114803, + [SMALL_STATE(4146)] = 114844, + [SMALL_STATE(4147)] = 114883, + [SMALL_STATE(4148)] = 114922, + [SMALL_STATE(4149)] = 114963, + [SMALL_STATE(4150)] = 115002, + [SMALL_STATE(4151)] = 115039, + [SMALL_STATE(4152)] = 115074, + [SMALL_STATE(4153)] = 115115, + [SMALL_STATE(4154)] = 115154, + [SMALL_STATE(4155)] = 115193, + [SMALL_STATE(4156)] = 115230, + [SMALL_STATE(4157)] = 115267, + [SMALL_STATE(4158)] = 115302, + [SMALL_STATE(4159)] = 115343, + [SMALL_STATE(4160)] = 115382, + [SMALL_STATE(4161)] = 115421, + [SMALL_STATE(4162)] = 115456, + [SMALL_STATE(4163)] = 115497, + [SMALL_STATE(4164)] = 115538, + [SMALL_STATE(4165)] = 115603, + [SMALL_STATE(4166)] = 115648, + [SMALL_STATE(4167)] = 115689, + [SMALL_STATE(4168)] = 115744, + [SMALL_STATE(4169)] = 115789, + [SMALL_STATE(4170)] = 115830, + [SMALL_STATE(4171)] = 115869, + [SMALL_STATE(4172)] = 115934, + [SMALL_STATE(4173)] = 115971, + [SMALL_STATE(4174)] = 116010, + [SMALL_STATE(4175)] = 116049, + [SMALL_STATE(4176)] = 116084, + [SMALL_STATE(4177)] = 116125, + [SMALL_STATE(4178)] = 116166, + [SMALL_STATE(4179)] = 116207, + [SMALL_STATE(4180)] = 116260, + [SMALL_STATE(4181)] = 116318, + [SMALL_STATE(4182)] = 116366, + [SMALL_STATE(4183)] = 116408, + [SMALL_STATE(4184)] = 116464, + [SMALL_STATE(4185)] = 116506, + [SMALL_STATE(4186)] = 116548, + [SMALL_STATE(4187)] = 116590, + [SMALL_STATE(4188)] = 116646, + [SMALL_STATE(4189)] = 116702, + [SMALL_STATE(4190)] = 116738, + [SMALL_STATE(4191)] = 116780, + [SMALL_STATE(4192)] = 116826, + [SMALL_STATE(4193)] = 116868, + [SMALL_STATE(4194)] = 116910, + [SMALL_STATE(4195)] = 116956, + [SMALL_STATE(4196)] = 117000, + [SMALL_STATE(4197)] = 117052, + [SMALL_STATE(4198)] = 117094, + [SMALL_STATE(4199)] = 117144, + [SMALL_STATE(4200)] = 117188, + [SMALL_STATE(4201)] = 117230, + [SMALL_STATE(4202)] = 117272, + [SMALL_STATE(4203)] = 117324, + [SMALL_STATE(4204)] = 117372, + [SMALL_STATE(4205)] = 117404, + [SMALL_STATE(4206)] = 117454, + [SMALL_STATE(4207)] = 117490, + [SMALL_STATE(4208)] = 117522, + [SMALL_STATE(4209)] = 117564, + [SMALL_STATE(4210)] = 117610, + [SMALL_STATE(4211)] = 117666, + [SMALL_STATE(4212)] = 117698, + [SMALL_STATE(4213)] = 117740, + [SMALL_STATE(4214)] = 117784, + [SMALL_STATE(4215)] = 117836, + [SMALL_STATE(4216)] = 117884, + [SMALL_STATE(4217)] = 117942, + [SMALL_STATE(4218)] = 117998, + [SMALL_STATE(4219)] = 118054, + [SMALL_STATE(4220)] = 118104, + [SMALL_STATE(4221)] = 118162, + [SMALL_STATE(4222)] = 118220, + [SMALL_STATE(4223)] = 118278, + [SMALL_STATE(4224)] = 118336, + [SMALL_STATE(4225)] = 118394, + [SMALL_STATE(4226)] = 118430, + [SMALL_STATE(4227)] = 118466, + [SMALL_STATE(4228)] = 118524, + [SMALL_STATE(4229)] = 118573, + [SMALL_STATE(4230)] = 118616, + [SMALL_STATE(4231)] = 118655, + [SMALL_STATE(4232)] = 118688, + [SMALL_STATE(4233)] = 118725, + [SMALL_STATE(4234)] = 118760, + [SMALL_STATE(4235)] = 118793, + [SMALL_STATE(4236)] = 118832, + [SMALL_STATE(4237)] = 118871, + [SMALL_STATE(4238)] = 118904, + [SMALL_STATE(4239)] = 118947, + [SMALL_STATE(4240)] = 118980, + [SMALL_STATE(4241)] = 119019, + [SMALL_STATE(4242)] = 119062, + [SMALL_STATE(4243)] = 119105, + [SMALL_STATE(4244)] = 119144, + [SMALL_STATE(4245)] = 119185, + [SMALL_STATE(4246)] = 119226, + [SMALL_STATE(4247)] = 119273, + [SMALL_STATE(4248)] = 119314, + [SMALL_STATE(4249)] = 119353, + [SMALL_STATE(4250)] = 119394, + [SMALL_STATE(4251)] = 119439, + [SMALL_STATE(4252)] = 119478, + [SMALL_STATE(4253)] = 119517, + [SMALL_STATE(4254)] = 119554, + [SMALL_STATE(4255)] = 119589, + [SMALL_STATE(4256)] = 119622, + [SMALL_STATE(4257)] = 119663, + [SMALL_STATE(4258)] = 119704, + [SMALL_STATE(4259)] = 119743, + [SMALL_STATE(4260)] = 119794, + [SMALL_STATE(4261)] = 119833, + [SMALL_STATE(4262)] = 119876, + [SMALL_STATE(4263)] = 119909, + [SMALL_STATE(4264)] = 119952, + [SMALL_STATE(4265)] = 120005, + [SMALL_STATE(4266)] = 120064, + [SMALL_STATE(4267)] = 120097, + [SMALL_STATE(4268)] = 120137, + [SMALL_STATE(4269)] = 120169, + [SMALL_STATE(4270)] = 120209, + [SMALL_STATE(4271)] = 120249, + [SMALL_STATE(4272)] = 120291, + [SMALL_STATE(4273)] = 120333, + [SMALL_STATE(4274)] = 120365, + [SMALL_STATE(4275)] = 120397, + [SMALL_STATE(4276)] = 120429, + [SMALL_STATE(4277)] = 120461, + [SMALL_STATE(4278)] = 120493, + [SMALL_STATE(4279)] = 120525, + [SMALL_STATE(4280)] = 120581, + [SMALL_STATE(4281)] = 120613, + [SMALL_STATE(4282)] = 120645, + [SMALL_STATE(4283)] = 120675, + [SMALL_STATE(4284)] = 120705, + [SMALL_STATE(4285)] = 120745, + [SMALL_STATE(4286)] = 120775, + [SMALL_STATE(4287)] = 120805, + [SMALL_STATE(4288)] = 120835, + [SMALL_STATE(4289)] = 120865, + [SMALL_STATE(4290)] = 120895, + [SMALL_STATE(4291)] = 120927, + [SMALL_STATE(4292)] = 120959, + [SMALL_STATE(4293)] = 120991, + [SMALL_STATE(4294)] = 121033, + [SMALL_STATE(4295)] = 121075, + [SMALL_STATE(4296)] = 121126, + [SMALL_STATE(4297)] = 121177, + [SMALL_STATE(4298)] = 121228, + [SMALL_STATE(4299)] = 121277, + [SMALL_STATE(4300)] = 121324, + [SMALL_STATE(4301)] = 121369, + [SMALL_STATE(4302)] = 121400, + [SMALL_STATE(4303)] = 121451, + [SMALL_STATE(4304)] = 121504, + [SMALL_STATE(4305)] = 121555, + [SMALL_STATE(4306)] = 121586, + [SMALL_STATE(4307)] = 121623, + [SMALL_STATE(4308)] = 121676, + [SMALL_STATE(4309)] = 121715, + [SMALL_STATE(4310)] = 121754, + [SMALL_STATE(4311)] = 121793, + [SMALL_STATE(4312)] = 121846, + [SMALL_STATE(4313)] = 121897, + [SMALL_STATE(4314)] = 121950, + [SMALL_STATE(4315)] = 122001, + [SMALL_STATE(4316)] = 122052, + [SMALL_STATE(4317)] = 122103, + [SMALL_STATE(4318)] = 122154, + [SMALL_STATE(4319)] = 122193, + [SMALL_STATE(4320)] = 122236, + [SMALL_STATE(4321)] = 122275, + [SMALL_STATE(4322)] = 122314, + [SMALL_STATE(4323)] = 122357, + [SMALL_STATE(4324)] = 122396, + [SMALL_STATE(4325)] = 122437, + [SMALL_STATE(4326)] = 122486, + [SMALL_STATE(4327)] = 122517, + [SMALL_STATE(4328)] = 122558, + [SMALL_STATE(4329)] = 122609, + [SMALL_STATE(4330)] = 122656, + [SMALL_STATE(4331)] = 122695, + [SMALL_STATE(4332)] = 122746, + [SMALL_STATE(4333)] = 122799, + [SMALL_STATE(4334)] = 122852, + [SMALL_STATE(4335)] = 122905, + [SMALL_STATE(4336)] = 122958, + [SMALL_STATE(4337)] = 123003, + [SMALL_STATE(4338)] = 123040, + [SMALL_STATE(4339)] = 123071, + [SMALL_STATE(4340)] = 123124, + [SMALL_STATE(4341)] = 123174, + [SMALL_STATE(4342)] = 123224, + [SMALL_STATE(4343)] = 123274, + [SMALL_STATE(4344)] = 123304, + [SMALL_STATE(4345)] = 123354, + [SMALL_STATE(4346)] = 123404, + [SMALL_STATE(4347)] = 123442, + [SMALL_STATE(4348)] = 123492, + [SMALL_STATE(4349)] = 123542, + [SMALL_STATE(4350)] = 123594, + [SMALL_STATE(4351)] = 123644, + [SMALL_STATE(4352)] = 123694, + [SMALL_STATE(4353)] = 123744, + [SMALL_STATE(4354)] = 123794, + [SMALL_STATE(4355)] = 123824, + [SMALL_STATE(4356)] = 123862, + [SMALL_STATE(4357)] = 123914, + [SMALL_STATE(4358)] = 123964, + [SMALL_STATE(4359)] = 124014, + [SMALL_STATE(4360)] = 124064, + [SMALL_STATE(4361)] = 124114, + [SMALL_STATE(4362)] = 124164, + [SMALL_STATE(4363)] = 124214, + [SMALL_STATE(4364)] = 124264, + [SMALL_STATE(4365)] = 124289, + [SMALL_STATE(4366)] = 124330, + [SMALL_STATE(4367)] = 124359, + [SMALL_STATE(4368)] = 124388, + [SMALL_STATE(4369)] = 124435, + [SMALL_STATE(4370)] = 124482, + [SMALL_STATE(4371)] = 124507, + [SMALL_STATE(4372)] = 124554, + [SMALL_STATE(4373)] = 124601, + [SMALL_STATE(4374)] = 124648, + [SMALL_STATE(4375)] = 124695, + [SMALL_STATE(4376)] = 124742, + [SMALL_STATE(4377)] = 124771, + [SMALL_STATE(4378)] = 124818, + [SMALL_STATE(4379)] = 124859, + [SMALL_STATE(4380)] = 124888, + [SMALL_STATE(4381)] = 124917, + [SMALL_STATE(4382)] = 124946, + [SMALL_STATE(4383)] = 124971, + [SMALL_STATE(4384)] = 125018, + [SMALL_STATE(4385)] = 125065, + [SMALL_STATE(4386)] = 125090, + [SMALL_STATE(4387)] = 125119, + [SMALL_STATE(4388)] = 125148, + [SMALL_STATE(4389)] = 125195, + [SMALL_STATE(4390)] = 125242, + [SMALL_STATE(4391)] = 125289, + [SMALL_STATE(4392)] = 125318, + [SMALL_STATE(4393)] = 125355, + [SMALL_STATE(4394)] = 125402, + [SMALL_STATE(4395)] = 125439, + [SMALL_STATE(4396)] = 125474, + [SMALL_STATE(4397)] = 125521, + [SMALL_STATE(4398)] = 125568, + [SMALL_STATE(4399)] = 125597, + [SMALL_STATE(4400)] = 125641, + [SMALL_STATE(4401)] = 125671, + [SMALL_STATE(4402)] = 125699, + [SMALL_STATE(4403)] = 125743, + [SMALL_STATE(4404)] = 125787, + [SMALL_STATE(4405)] = 125815, + [SMALL_STATE(4406)] = 125859, + [SMALL_STATE(4407)] = 125903, + [SMALL_STATE(4408)] = 125947, + [SMALL_STATE(4409)] = 125995, + [SMALL_STATE(4410)] = 126023, + [SMALL_STATE(4411)] = 126065, + [SMALL_STATE(4412)] = 126107, + [SMALL_STATE(4413)] = 126149, + [SMALL_STATE(4414)] = 126191, + [SMALL_STATE(4415)] = 126233, + [SMALL_STATE(4416)] = 126275, + [SMALL_STATE(4417)] = 126299, + [SMALL_STATE(4418)] = 126343, + [SMALL_STATE(4419)] = 126385, + [SMALL_STATE(4420)] = 126427, + [SMALL_STATE(4421)] = 126469, + [SMALL_STATE(4422)] = 126513, + [SMALL_STATE(4423)] = 126555, + [SMALL_STATE(4424)] = 126597, + [SMALL_STATE(4425)] = 126639, + [SMALL_STATE(4426)] = 126681, + [SMALL_STATE(4427)] = 126709, + [SMALL_STATE(4428)] = 126753, + [SMALL_STATE(4429)] = 126797, + [SMALL_STATE(4430)] = 126841, + [SMALL_STATE(4431)] = 126883, + [SMALL_STATE(4432)] = 126927, + [SMALL_STATE(4433)] = 126971, + [SMALL_STATE(4434)] = 127003, + [SMALL_STATE(4435)] = 127045, + [SMALL_STATE(4436)] = 127087, + [SMALL_STATE(4437)] = 127129, + [SMALL_STATE(4438)] = 127173, + [SMALL_STATE(4439)] = 127217, + [SMALL_STATE(4440)] = 127261, + [SMALL_STATE(4441)] = 127305, + [SMALL_STATE(4442)] = 127347, + [SMALL_STATE(4443)] = 127391, + [SMALL_STATE(4444)] = 127415, + [SMALL_STATE(4445)] = 127445, + [SMALL_STATE(4446)] = 127473, + [SMALL_STATE(4447)] = 127517, + [SMALL_STATE(4448)] = 127559, + [SMALL_STATE(4449)] = 127603, + [SMALL_STATE(4450)] = 127647, + [SMALL_STATE(4451)] = 127691, + [SMALL_STATE(4452)] = 127735, + [SMALL_STATE(4453)] = 127779, + [SMALL_STATE(4454)] = 127823, + [SMALL_STATE(4455)] = 127867, + [SMALL_STATE(4456)] = 127899, + [SMALL_STATE(4457)] = 127943, + [SMALL_STATE(4458)] = 127987, + [SMALL_STATE(4459)] = 128029, + [SMALL_STATE(4460)] = 128073, + [SMALL_STATE(4461)] = 128117, + [SMALL_STATE(4462)] = 128161, + [SMALL_STATE(4463)] = 128205, + [SMALL_STATE(4464)] = 128249, + [SMALL_STATE(4465)] = 128293, + [SMALL_STATE(4466)] = 128337, + [SMALL_STATE(4467)] = 128381, + [SMALL_STATE(4468)] = 128425, + [SMALL_STATE(4469)] = 128469, + [SMALL_STATE(4470)] = 128511, + [SMALL_STATE(4471)] = 128553, + [SMALL_STATE(4472)] = 128597, + [SMALL_STATE(4473)] = 128639, + [SMALL_STATE(4474)] = 128683, + [SMALL_STATE(4475)] = 128725, + [SMALL_STATE(4476)] = 128767, + [SMALL_STATE(4477)] = 128809, + [SMALL_STATE(4478)] = 128851, + [SMALL_STATE(4479)] = 128893, + [SMALL_STATE(4480)] = 128935, + [SMALL_STATE(4481)] = 128977, + [SMALL_STATE(4482)] = 129021, + [SMALL_STATE(4483)] = 129065, + [SMALL_STATE(4484)] = 129109, + [SMALL_STATE(4485)] = 129153, + [SMALL_STATE(4486)] = 129197, + [SMALL_STATE(4487)] = 129241, + [SMALL_STATE(4488)] = 129285, + [SMALL_STATE(4489)] = 129329, + [SMALL_STATE(4490)] = 129373, + [SMALL_STATE(4491)] = 129417, + [SMALL_STATE(4492)] = 129461, + [SMALL_STATE(4493)] = 129505, + [SMALL_STATE(4494)] = 129549, + [SMALL_STATE(4495)] = 129593, + [SMALL_STATE(4496)] = 129637, + [SMALL_STATE(4497)] = 129681, + [SMALL_STATE(4498)] = 129725, + [SMALL_STATE(4499)] = 129769, + [SMALL_STATE(4500)] = 129813, + [SMALL_STATE(4501)] = 129857, + [SMALL_STATE(4502)] = 129901, + [SMALL_STATE(4503)] = 129925, + [SMALL_STATE(4504)] = 129969, + [SMALL_STATE(4505)] = 130013, + [SMALL_STATE(4506)] = 130057, + [SMALL_STATE(4507)] = 130101, + [SMALL_STATE(4508)] = 130145, + [SMALL_STATE(4509)] = 130189, + [SMALL_STATE(4510)] = 130233, + [SMALL_STATE(4511)] = 130277, + [SMALL_STATE(4512)] = 130321, + [SMALL_STATE(4513)] = 130365, + [SMALL_STATE(4514)] = 130409, + [SMALL_STATE(4515)] = 130453, + [SMALL_STATE(4516)] = 130497, + [SMALL_STATE(4517)] = 130541, + [SMALL_STATE(4518)] = 130585, + [SMALL_STATE(4519)] = 130629, + [SMALL_STATE(4520)] = 130673, + [SMALL_STATE(4521)] = 130717, + [SMALL_STATE(4522)] = 130741, + [SMALL_STATE(4523)] = 130785, + [SMALL_STATE(4524)] = 130829, + [SMALL_STATE(4525)] = 130873, + [SMALL_STATE(4526)] = 130917, + [SMALL_STATE(4527)] = 130961, + [SMALL_STATE(4528)] = 131005, + [SMALL_STATE(4529)] = 131049, + [SMALL_STATE(4530)] = 131093, + [SMALL_STATE(4531)] = 131138, + [SMALL_STATE(4532)] = 131163, + [SMALL_STATE(4533)] = 131190, + [SMALL_STATE(4534)] = 131231, + [SMALL_STATE(4535)] = 131258, + [SMALL_STATE(4536)] = 131299, + [SMALL_STATE(4537)] = 131332, + [SMALL_STATE(4538)] = 131373, + [SMALL_STATE(4539)] = 131414, + [SMALL_STATE(4540)] = 131455, + [SMALL_STATE(4541)] = 131496, + [SMALL_STATE(4542)] = 131537, + [SMALL_STATE(4543)] = 131578, + [SMALL_STATE(4544)] = 131619, + [SMALL_STATE(4545)] = 131658, + [SMALL_STATE(4546)] = 131683, + [SMALL_STATE(4547)] = 131724, + [SMALL_STATE(4548)] = 131765, + [SMALL_STATE(4549)] = 131790, + [SMALL_STATE(4550)] = 131831, + [SMALL_STATE(4551)] = 131858, + [SMALL_STATE(4552)] = 131885, + [SMALL_STATE(4553)] = 131926, + [SMALL_STATE(4554)] = 131953, + [SMALL_STATE(4555)] = 131982, + [SMALL_STATE(4556)] = 132009, + [SMALL_STATE(4557)] = 132048, + [SMALL_STATE(4558)] = 132089, + [SMALL_STATE(4559)] = 132136, + [SMALL_STATE(4560)] = 132177, + [SMALL_STATE(4561)] = 132205, + [SMALL_STATE(4562)] = 132243, + [SMALL_STATE(4563)] = 132279, + [SMALL_STATE(4564)] = 132319, + [SMALL_STATE(4565)] = 132347, + [SMALL_STATE(4566)] = 132383, + [SMALL_STATE(4567)] = 132417, + [SMALL_STATE(4568)] = 132443, + [SMALL_STATE(4569)] = 132481, + [SMALL_STATE(4570)] = 132507, + [SMALL_STATE(4571)] = 132543, + [SMALL_STATE(4572)] = 132577, + [SMALL_STATE(4573)] = 132615, + [SMALL_STATE(4574)] = 132651, + [SMALL_STATE(4575)] = 132689, + [SMALL_STATE(4576)] = 132725, + [SMALL_STATE(4577)] = 132765, + [SMALL_STATE(4578)] = 132793, + [SMALL_STATE(4579)] = 132833, + [SMALL_STATE(4580)] = 132869, + [SMALL_STATE(4581)] = 132909, + [SMALL_STATE(4582)] = 132936, + [SMALL_STATE(4583)] = 132959, + [SMALL_STATE(4584)] = 132992, + [SMALL_STATE(4585)] = 133015, + [SMALL_STATE(4586)] = 133036, + [SMALL_STATE(4587)] = 133061, + [SMALL_STATE(4588)] = 133094, + [SMALL_STATE(4589)] = 133117, + [SMALL_STATE(4590)] = 133150, + [SMALL_STATE(4591)] = 133177, + [SMALL_STATE(4592)] = 133210, + [SMALL_STATE(4593)] = 133243, + [SMALL_STATE(4594)] = 133264, + [SMALL_STATE(4595)] = 133291, + [SMALL_STATE(4596)] = 133330, + [SMALL_STATE(4597)] = 133353, + [SMALL_STATE(4598)] = 133376, + [SMALL_STATE(4599)] = 133409, + [SMALL_STATE(4600)] = 133436, + [SMALL_STATE(4601)] = 133461, + [SMALL_STATE(4602)] = 133484, + [SMALL_STATE(4603)] = 133511, + [SMALL_STATE(4604)] = 133538, + [SMALL_STATE(4605)] = 133571, + [SMALL_STATE(4606)] = 133606, + [SMALL_STATE(4607)] = 133639, + [SMALL_STATE(4608)] = 133666, + [SMALL_STATE(4609)] = 133693, + [SMALL_STATE(4610)] = 133726, + [SMALL_STATE(4611)] = 133747, + [SMALL_STATE(4612)] = 133774, + [SMALL_STATE(4613)] = 133795, + [SMALL_STATE(4614)] = 133822, + [SMALL_STATE(4615)] = 133857, + [SMALL_STATE(4616)] = 133896, + [SMALL_STATE(4617)] = 133933, + [SMALL_STATE(4618)] = 133960, + [SMALL_STATE(4619)] = 133987, + [SMALL_STATE(4620)] = 134026, + [SMALL_STATE(4621)] = 134049, + [SMALL_STATE(4622)] = 134072, + [SMALL_STATE(4623)] = 134104, + [SMALL_STATE(4624)] = 134136, + [SMALL_STATE(4625)] = 134158, + [SMALL_STATE(4626)] = 134198, + [SMALL_STATE(4627)] = 134230, + [SMALL_STATE(4628)] = 134262, + [SMALL_STATE(4629)] = 134294, + [SMALL_STATE(4630)] = 134318, + [SMALL_STATE(4631)] = 134350, + [SMALL_STATE(4632)] = 134380, + [SMALL_STATE(4633)] = 134402, + [SMALL_STATE(4634)] = 134438, + [SMALL_STATE(4635)] = 134478, + [SMALL_STATE(4636)] = 134502, + [SMALL_STATE(4637)] = 134534, + [SMALL_STATE(4638)] = 134556, + [SMALL_STATE(4639)] = 134596, + [SMALL_STATE(4640)] = 134618, + [SMALL_STATE(4641)] = 134650, + [SMALL_STATE(4642)] = 134672, + [SMALL_STATE(4643)] = 134704, + [SMALL_STATE(4644)] = 134734, + [SMALL_STATE(4645)] = 134768, + [SMALL_STATE(4646)] = 134800, + [SMALL_STATE(4647)] = 134832, + [SMALL_STATE(4648)] = 134864, + [SMALL_STATE(4649)] = 134896, + [SMALL_STATE(4650)] = 134938, + [SMALL_STATE(4651)] = 134970, + [SMALL_STATE(4652)] = 135008, + [SMALL_STATE(4653)] = 135048, + [SMALL_STATE(4654)] = 135080, + [SMALL_STATE(4655)] = 135102, + [SMALL_STATE(4656)] = 135140, + [SMALL_STATE(4657)] = 135178, + [SMALL_STATE(4658)] = 135218, + [SMALL_STATE(4659)] = 135240, + [SMALL_STATE(4660)] = 135282, + [SMALL_STATE(4661)] = 135316, + [SMALL_STATE(4662)] = 135354, + [SMALL_STATE(4663)] = 135384, + [SMALL_STATE(4664)] = 135426, + [SMALL_STATE(4665)] = 135456, + [SMALL_STATE(4666)] = 135486, + [SMALL_STATE(4667)] = 135516, + [SMALL_STATE(4668)] = 135556, + [SMALL_STATE(4669)] = 135594, + [SMALL_STATE(4670)] = 135632, + [SMALL_STATE(4671)] = 135672, + [SMALL_STATE(4672)] = 135714, + [SMALL_STATE(4673)] = 135752, + [SMALL_STATE(4674)] = 135782, + [SMALL_STATE(4675)] = 135824, + [SMALL_STATE(4676)] = 135846, + [SMALL_STATE(4677)] = 135888, + [SMALL_STATE(4678)] = 135910, + [SMALL_STATE(4679)] = 135952, + [SMALL_STATE(4680)] = 135974, + [SMALL_STATE(4681)] = 136016, + [SMALL_STATE(4682)] = 136038, + [SMALL_STATE(4683)] = 136060, + [SMALL_STATE(4684)] = 136100, + [SMALL_STATE(4685)] = 136134, + [SMALL_STATE(4686)] = 136156, + [SMALL_STATE(4687)] = 136180, + [SMALL_STATE(4688)] = 136210, + [SMALL_STATE(4689)] = 136240, + [SMALL_STATE(4690)] = 136270, + [SMALL_STATE(4691)] = 136296, + [SMALL_STATE(4692)] = 136318, + [SMALL_STATE(4693)] = 136340, + [SMALL_STATE(4694)] = 136366, + [SMALL_STATE(4695)] = 136392, + [SMALL_STATE(4696)] = 136418, + [SMALL_STATE(4697)] = 136452, + [SMALL_STATE(4698)] = 136482, + [SMALL_STATE(4699)] = 136504, + [SMALL_STATE(4700)] = 136533, + [SMALL_STATE(4701)] = 136554, + [SMALL_STATE(4702)] = 136575, + [SMALL_STATE(4703)] = 136604, + [SMALL_STATE(4704)] = 136643, + [SMALL_STATE(4705)] = 136672, + [SMALL_STATE(4706)] = 136693, + [SMALL_STATE(4707)] = 136724, + [SMALL_STATE(4708)] = 136757, + [SMALL_STATE(4709)] = 136786, + [SMALL_STATE(4710)] = 136825, + [SMALL_STATE(4711)] = 136854, + [SMALL_STATE(4712)] = 136893, + [SMALL_STATE(4713)] = 136932, + [SMALL_STATE(4714)] = 136961, + [SMALL_STATE(4715)] = 136990, + [SMALL_STATE(4716)] = 137021, + [SMALL_STATE(4717)] = 137050, + [SMALL_STATE(4718)] = 137079, + [SMALL_STATE(4719)] = 137102, + [SMALL_STATE(4720)] = 137131, + [SMALL_STATE(4721)] = 137160, + [SMALL_STATE(4722)] = 137189, + [SMALL_STATE(4723)] = 137210, + [SMALL_STATE(4724)] = 137239, + [SMALL_STATE(4725)] = 137268, + [SMALL_STATE(4726)] = 137307, + [SMALL_STATE(4727)] = 137336, + [SMALL_STATE(4728)] = 137365, + [SMALL_STATE(4729)] = 137394, + [SMALL_STATE(4730)] = 137415, + [SMALL_STATE(4731)] = 137454, + [SMALL_STATE(4732)] = 137483, + [SMALL_STATE(4733)] = 137504, + [SMALL_STATE(4734)] = 137525, + [SMALL_STATE(4735)] = 137554, + [SMALL_STATE(4736)] = 137583, + [SMALL_STATE(4737)] = 137622, + [SMALL_STATE(4738)] = 137651, + [SMALL_STATE(4739)] = 137690, + [SMALL_STATE(4740)] = 137719, + [SMALL_STATE(4741)] = 137748, + [SMALL_STATE(4742)] = 137779, + [SMALL_STATE(4743)] = 137808, + [SMALL_STATE(4744)] = 137837, + [SMALL_STATE(4745)] = 137866, + [SMALL_STATE(4746)] = 137895, + [SMALL_STATE(4747)] = 137924, + [SMALL_STATE(4748)] = 137963, + [SMALL_STATE(4749)] = 138002, + [SMALL_STATE(4750)] = 138033, + [SMALL_STATE(4751)] = 138062, + [SMALL_STATE(4752)] = 138093, + [SMALL_STATE(4753)] = 138132, + [SMALL_STATE(4754)] = 138171, + [SMALL_STATE(4755)] = 138200, + [SMALL_STATE(4756)] = 138221, + [SMALL_STATE(4757)] = 138242, + [SMALL_STATE(4758)] = 138273, + [SMALL_STATE(4759)] = 138312, + [SMALL_STATE(4760)] = 138341, + [SMALL_STATE(4761)] = 138372, + [SMALL_STATE(4762)] = 138401, + [SMALL_STATE(4763)] = 138440, + [SMALL_STATE(4764)] = 138469, + [SMALL_STATE(4765)] = 138498, + [SMALL_STATE(4766)] = 138527, + [SMALL_STATE(4767)] = 138566, + [SMALL_STATE(4768)] = 138597, + [SMALL_STATE(4769)] = 138626, + [SMALL_STATE(4770)] = 138655, + [SMALL_STATE(4771)] = 138684, + [SMALL_STATE(4772)] = 138715, + [SMALL_STATE(4773)] = 138754, + [SMALL_STATE(4774)] = 138783, + [SMALL_STATE(4775)] = 138812, + [SMALL_STATE(4776)] = 138841, + [SMALL_STATE(4777)] = 138880, + [SMALL_STATE(4778)] = 138911, + [SMALL_STATE(4779)] = 138950, + [SMALL_STATE(4780)] = 138981, + [SMALL_STATE(4781)] = 139020, + [SMALL_STATE(4782)] = 139049, + [SMALL_STATE(4783)] = 139070, + [SMALL_STATE(4784)] = 139101, + [SMALL_STATE(4785)] = 139130, + [SMALL_STATE(4786)] = 139159, + [SMALL_STATE(4787)] = 139188, + [SMALL_STATE(4788)] = 139209, + [SMALL_STATE(4789)] = 139238, + [SMALL_STATE(4790)] = 139267, + [SMALL_STATE(4791)] = 139296, + [SMALL_STATE(4792)] = 139327, + [SMALL_STATE(4793)] = 139356, + [SMALL_STATE(4794)] = 139395, + [SMALL_STATE(4795)] = 139426, + [SMALL_STATE(4796)] = 139457, + [SMALL_STATE(4797)] = 139496, + [SMALL_STATE(4798)] = 139525, + [SMALL_STATE(4799)] = 139556, + [SMALL_STATE(4800)] = 139577, + [SMALL_STATE(4801)] = 139616, + [SMALL_STATE(4802)] = 139645, + [SMALL_STATE(4803)] = 139674, + [SMALL_STATE(4804)] = 139705, + [SMALL_STATE(4805)] = 139734, + [SMALL_STATE(4806)] = 139765, + [SMALL_STATE(4807)] = 139794, + [SMALL_STATE(4808)] = 139825, + [SMALL_STATE(4809)] = 139854, + [SMALL_STATE(4810)] = 139893, + [SMALL_STATE(4811)] = 139914, + [SMALL_STATE(4812)] = 139943, + [SMALL_STATE(4813)] = 139972, + [SMALL_STATE(4814)] = 140001, + [SMALL_STATE(4815)] = 140030, + [SMALL_STATE(4816)] = 140063, + [SMALL_STATE(4817)] = 140092, + [SMALL_STATE(4818)] = 140121, + [SMALL_STATE(4819)] = 140152, + [SMALL_STATE(4820)] = 140181, + [SMALL_STATE(4821)] = 140220, + [SMALL_STATE(4822)] = 140251, + [SMALL_STATE(4823)] = 140282, + [SMALL_STATE(4824)] = 140311, + [SMALL_STATE(4825)] = 140342, + [SMALL_STATE(4826)] = 140363, + [SMALL_STATE(4827)] = 140384, + [SMALL_STATE(4828)] = 140415, + [SMALL_STATE(4829)] = 140454, + [SMALL_STATE(4830)] = 140477, + [SMALL_STATE(4831)] = 140507, + [SMALL_STATE(4832)] = 140539, + [SMALL_STATE(4833)] = 140563, + [SMALL_STATE(4834)] = 140591, + [SMALL_STATE(4835)] = 140621, + [SMALL_STATE(4836)] = 140651, + [SMALL_STATE(4837)] = 140685, + [SMALL_STATE(4838)] = 140719, + [SMALL_STATE(4839)] = 140747, + [SMALL_STATE(4840)] = 140777, + [SMALL_STATE(4841)] = 140807, + [SMALL_STATE(4842)] = 140835, + [SMALL_STATE(4843)] = 140859, + [SMALL_STATE(4844)] = 140887, + [SMALL_STATE(4845)] = 140917, + [SMALL_STATE(4846)] = 140947, + [SMALL_STATE(4847)] = 140975, + [SMALL_STATE(4848)] = 141005, + [SMALL_STATE(4849)] = 141035, + [SMALL_STATE(4850)] = 141065, + [SMALL_STATE(4851)] = 141099, + [SMALL_STATE(4852)] = 141129, + [SMALL_STATE(4853)] = 141159, + [SMALL_STATE(4854)] = 141183, + [SMALL_STATE(4855)] = 141211, + [SMALL_STATE(4856)] = 141241, + [SMALL_STATE(4857)] = 141273, + [SMALL_STATE(4858)] = 141303, + [SMALL_STATE(4859)] = 141333, + [SMALL_STATE(4860)] = 141363, + [SMALL_STATE(4861)] = 141393, + [SMALL_STATE(4862)] = 141425, + [SMALL_STATE(4863)] = 141453, + [SMALL_STATE(4864)] = 141483, + [SMALL_STATE(4865)] = 141511, + [SMALL_STATE(4866)] = 141545, + [SMALL_STATE(4867)] = 141569, + [SMALL_STATE(4868)] = 141599, + [SMALL_STATE(4869)] = 141629, + [SMALL_STATE(4870)] = 141659, + [SMALL_STATE(4871)] = 141679, + [SMALL_STATE(4872)] = 141711, + [SMALL_STATE(4873)] = 141741, + [SMALL_STATE(4874)] = 141771, + [SMALL_STATE(4875)] = 141801, + [SMALL_STATE(4876)] = 141831, + [SMALL_STATE(4877)] = 141849, + [SMALL_STATE(4878)] = 141879, + [SMALL_STATE(4879)] = 141907, + [SMALL_STATE(4880)] = 141937, + [SMALL_STATE(4881)] = 141967, + [SMALL_STATE(4882)] = 141997, + [SMALL_STATE(4883)] = 142027, + [SMALL_STATE(4884)] = 142061, + [SMALL_STATE(4885)] = 142089, + [SMALL_STATE(4886)] = 142121, + [SMALL_STATE(4887)] = 142149, + [SMALL_STATE(4888)] = 142179, + [SMALL_STATE(4889)] = 142209, + [SMALL_STATE(4890)] = 142239, + [SMALL_STATE(4891)] = 142269, + [SMALL_STATE(4892)] = 142301, + [SMALL_STATE(4893)] = 142333, + [SMALL_STATE(4894)] = 142361, + [SMALL_STATE(4895)] = 142389, + [SMALL_STATE(4896)] = 142423, + [SMALL_STATE(4897)] = 142455, + [SMALL_STATE(4898)] = 142489, + [SMALL_STATE(4899)] = 142521, + [SMALL_STATE(4900)] = 142549, + [SMALL_STATE(4901)] = 142579, + [SMALL_STATE(4902)] = 142609, + [SMALL_STATE(4903)] = 142639, + [SMALL_STATE(4904)] = 142673, + [SMALL_STATE(4905)] = 142703, + [SMALL_STATE(4906)] = 142722, + [SMALL_STATE(4907)] = 142745, + [SMALL_STATE(4908)] = 142776, + [SMALL_STATE(4909)] = 142801, + [SMALL_STATE(4910)] = 142826, + [SMALL_STATE(4911)] = 142845, + [SMALL_STATE(4912)] = 142876, + [SMALL_STATE(4913)] = 142905, + [SMALL_STATE(4914)] = 142924, + [SMALL_STATE(4915)] = 142953, + [SMALL_STATE(4916)] = 142978, + [SMALL_STATE(4917)] = 142997, + [SMALL_STATE(4918)] = 143026, + [SMALL_STATE(4919)] = 143055, + [SMALL_STATE(4920)] = 143074, + [SMALL_STATE(4921)] = 143103, + [SMALL_STATE(4922)] = 143132, + [SMALL_STATE(4923)] = 143155, + [SMALL_STATE(4924)] = 143174, + [SMALL_STATE(4925)] = 143203, + [SMALL_STATE(4926)] = 143232, + [SMALL_STATE(4927)] = 143261, + [SMALL_STATE(4928)] = 143286, + [SMALL_STATE(4929)] = 143307, + [SMALL_STATE(4930)] = 143332, + [SMALL_STATE(4931)] = 143361, + [SMALL_STATE(4932)] = 143390, + [SMALL_STATE(4933)] = 143413, + [SMALL_STATE(4934)] = 143444, + [SMALL_STATE(4935)] = 143473, + [SMALL_STATE(4936)] = 143498, + [SMALL_STATE(4937)] = 143517, + [SMALL_STATE(4938)] = 143536, + [SMALL_STATE(4939)] = 143555, + [SMALL_STATE(4940)] = 143578, + [SMALL_STATE(4941)] = 143607, + [SMALL_STATE(4942)] = 143638, + [SMALL_STATE(4943)] = 143657, + [SMALL_STATE(4944)] = 143686, + [SMALL_STATE(4945)] = 143709, + [SMALL_STATE(4946)] = 143730, + [SMALL_STATE(4947)] = 143749, + [SMALL_STATE(4948)] = 143780, + [SMALL_STATE(4949)] = 143799, + [SMALL_STATE(4950)] = 143824, + [SMALL_STATE(4951)] = 143849, + [SMALL_STATE(4952)] = 143868, + [SMALL_STATE(4953)] = 143897, + [SMALL_STATE(4954)] = 143926, + [SMALL_STATE(4955)] = 143955, + [SMALL_STATE(4956)] = 143984, + [SMALL_STATE(4957)] = 144009, + [SMALL_STATE(4958)] = 144028, + [SMALL_STATE(4959)] = 144047, + [SMALL_STATE(4960)] = 144076, + [SMALL_STATE(4961)] = 144105, + [SMALL_STATE(4962)] = 144130, + [SMALL_STATE(4963)] = 144159, + [SMALL_STATE(4964)] = 144188, + [SMALL_STATE(4965)] = 144217, + [SMALL_STATE(4966)] = 144246, + [SMALL_STATE(4967)] = 144267, + [SMALL_STATE(4968)] = 144284, + [SMALL_STATE(4969)] = 144301, + [SMALL_STATE(4970)] = 144322, + [SMALL_STATE(4971)] = 144351, + [SMALL_STATE(4972)] = 144380, + [SMALL_STATE(4973)] = 144397, + [SMALL_STATE(4974)] = 144426, + [SMALL_STATE(4975)] = 144455, + [SMALL_STATE(4976)] = 144472, + [SMALL_STATE(4977)] = 144489, + [SMALL_STATE(4978)] = 144514, + [SMALL_STATE(4979)] = 144531, + [SMALL_STATE(4980)] = 144560, + [SMALL_STATE(4981)] = 144589, + [SMALL_STATE(4982)] = 144618, + [SMALL_STATE(4983)] = 144639, + [SMALL_STATE(4984)] = 144658, + [SMALL_STATE(4985)] = 144681, + [SMALL_STATE(4986)] = 144710, + [SMALL_STATE(4987)] = 144739, + [SMALL_STATE(4988)] = 144770, + [SMALL_STATE(4989)] = 144801, + [SMALL_STATE(4990)] = 144824, + [SMALL_STATE(4991)] = 144853, + [SMALL_STATE(4992)] = 144874, + [SMALL_STATE(4993)] = 144897, + [SMALL_STATE(4994)] = 144926, + [SMALL_STATE(4995)] = 144955, + [SMALL_STATE(4996)] = 144980, + [SMALL_STATE(4997)] = 145003, + [SMALL_STATE(4998)] = 145024, + [SMALL_STATE(4999)] = 145043, + [SMALL_STATE(5000)] = 145068, + [SMALL_STATE(5001)] = 145093, + [SMALL_STATE(5002)] = 145122, + [SMALL_STATE(5003)] = 145150, + [SMALL_STATE(5004)] = 145178, + [SMALL_STATE(5005)] = 145200, + [SMALL_STATE(5006)] = 145216, + [SMALL_STATE(5007)] = 145238, + [SMALL_STATE(5008)] = 145264, + [SMALL_STATE(5009)] = 145294, + [SMALL_STATE(5010)] = 145324, + [SMALL_STATE(5011)] = 145340, + [SMALL_STATE(5012)] = 145356, + [SMALL_STATE(5013)] = 145380, + [SMALL_STATE(5014)] = 145410, + [SMALL_STATE(5015)] = 145430, + [SMALL_STATE(5016)] = 145460, + [SMALL_STATE(5017)] = 145478, + [SMALL_STATE(5018)] = 145496, + [SMALL_STATE(5019)] = 145524, + [SMALL_STATE(5020)] = 145556, + [SMALL_STATE(5021)] = 145582, + [SMALL_STATE(5022)] = 145610, + [SMALL_STATE(5023)] = 145640, + [SMALL_STATE(5024)] = 145664, + [SMALL_STATE(5025)] = 145686, + [SMALL_STATE(5026)] = 145718, + [SMALL_STATE(5027)] = 145734, + [SMALL_STATE(5028)] = 145752, + [SMALL_STATE(5029)] = 145780, + [SMALL_STATE(5030)] = 145808, + [SMALL_STATE(5031)] = 145840, + [SMALL_STATE(5032)] = 145858, + [SMALL_STATE(5033)] = 145880, + [SMALL_STATE(5034)] = 145904, + [SMALL_STATE(5035)] = 145932, + [SMALL_STATE(5036)] = 145950, + [SMALL_STATE(5037)] = 145980, + [SMALL_STATE(5038)] = 146008, + [SMALL_STATE(5039)] = 146040, + [SMALL_STATE(5040)] = 146062, + [SMALL_STATE(5041)] = 146084, + [SMALL_STATE(5042)] = 146114, + [SMALL_STATE(5043)] = 146142, + [SMALL_STATE(5044)] = 146160, + [SMALL_STATE(5045)] = 146192, + [SMALL_STATE(5046)] = 146218, + [SMALL_STATE(5047)] = 146234, + [SMALL_STATE(5048)] = 146250, + [SMALL_STATE(5049)] = 146278, + [SMALL_STATE(5050)] = 146308, + [SMALL_STATE(5051)] = 146336, + [SMALL_STATE(5052)] = 146360, + [SMALL_STATE(5053)] = 146388, + [SMALL_STATE(5054)] = 146418, + [SMALL_STATE(5055)] = 146446, + [SMALL_STATE(5056)] = 146474, + [SMALL_STATE(5057)] = 146496, + [SMALL_STATE(5058)] = 146524, + [SMALL_STATE(5059)] = 146540, + [SMALL_STATE(5060)] = 146570, + [SMALL_STATE(5061)] = 146588, + [SMALL_STATE(5062)] = 146616, + [SMALL_STATE(5063)] = 146642, + [SMALL_STATE(5064)] = 146670, + [SMALL_STATE(5065)] = 146688, + [SMALL_STATE(5066)] = 146704, + [SMALL_STATE(5067)] = 146720, + [SMALL_STATE(5068)] = 146750, + [SMALL_STATE(5069)] = 146780, + [SMALL_STATE(5070)] = 146812, + [SMALL_STATE(5071)] = 146842, + [SMALL_STATE(5072)] = 146872, + [SMALL_STATE(5073)] = 146904, + [SMALL_STATE(5074)] = 146928, + [SMALL_STATE(5075)] = 146952, + [SMALL_STATE(5076)] = 146978, + [SMALL_STATE(5077)] = 147010, + [SMALL_STATE(5078)] = 147034, + [SMALL_STATE(5079)] = 147062, + [SMALL_STATE(5080)] = 147090, + [SMALL_STATE(5081)] = 147114, + [SMALL_STATE(5082)] = 147140, + [SMALL_STATE(5083)] = 147156, + [SMALL_STATE(5084)] = 147174, + [SMALL_STATE(5085)] = 147198, + [SMALL_STATE(5086)] = 147228, + [SMALL_STATE(5087)] = 147248, + [SMALL_STATE(5088)] = 147268, + [SMALL_STATE(5089)] = 147286, + [SMALL_STATE(5090)] = 147310, + [SMALL_STATE(5091)] = 147334, + [SMALL_STATE(5092)] = 147352, + [SMALL_STATE(5093)] = 147382, + [SMALL_STATE(5094)] = 147410, + [SMALL_STATE(5095)] = 147428, + [SMALL_STATE(5096)] = 147452, + [SMALL_STATE(5097)] = 147482, + [SMALL_STATE(5098)] = 147507, + [SMALL_STATE(5099)] = 147530, + [SMALL_STATE(5100)] = 147559, + [SMALL_STATE(5101)] = 147584, + [SMALL_STATE(5102)] = 147607, + [SMALL_STATE(5103)] = 147634, + [SMALL_STATE(5104)] = 147657, + [SMALL_STATE(5105)] = 147676, + [SMALL_STATE(5106)] = 147705, + [SMALL_STATE(5107)] = 147734, + [SMALL_STATE(5108)] = 147761, + [SMALL_STATE(5109)] = 147784, + [SMALL_STATE(5110)] = 147803, + [SMALL_STATE(5111)] = 147826, + [SMALL_STATE(5112)] = 147847, + [SMALL_STATE(5113)] = 147876, + [SMALL_STATE(5114)] = 147903, + [SMALL_STATE(5115)] = 147924, + [SMALL_STATE(5116)] = 147945, + [SMALL_STATE(5117)] = 147974, + [SMALL_STATE(5118)] = 148001, + [SMALL_STATE(5119)] = 148020, + [SMALL_STATE(5120)] = 148049, + [SMALL_STATE(5121)] = 148068, + [SMALL_STATE(5122)] = 148085, + [SMALL_STATE(5123)] = 148114, + [SMALL_STATE(5124)] = 148143, + [SMALL_STATE(5125)] = 148170, + [SMALL_STATE(5126)] = 148199, + [SMALL_STATE(5127)] = 148228, + [SMALL_STATE(5128)] = 148257, + [SMALL_STATE(5129)] = 148280, + [SMALL_STATE(5130)] = 148303, + [SMALL_STATE(5131)] = 148332, + [SMALL_STATE(5132)] = 148361, + [SMALL_STATE(5133)] = 148376, + [SMALL_STATE(5134)] = 148399, + [SMALL_STATE(5135)] = 148428, + [SMALL_STATE(5136)] = 148449, + [SMALL_STATE(5137)] = 148472, + [SMALL_STATE(5138)] = 148501, + [SMALL_STATE(5139)] = 148524, + [SMALL_STATE(5140)] = 148553, + [SMALL_STATE(5141)] = 148580, + [SMALL_STATE(5142)] = 148603, + [SMALL_STATE(5143)] = 148618, + [SMALL_STATE(5144)] = 148647, + [SMALL_STATE(5145)] = 148676, + [SMALL_STATE(5146)] = 148703, + [SMALL_STATE(5147)] = 148726, + [SMALL_STATE(5148)] = 148755, + [SMALL_STATE(5149)] = 148784, + [SMALL_STATE(5150)] = 148809, + [SMALL_STATE(5151)] = 148832, + [SMALL_STATE(5152)] = 148861, + [SMALL_STATE(5153)] = 148890, + [SMALL_STATE(5154)] = 148913, + [SMALL_STATE(5155)] = 148940, + [SMALL_STATE(5156)] = 148963, + [SMALL_STATE(5157)] = 148984, + [SMALL_STATE(5158)] = 149013, + [SMALL_STATE(5159)] = 149042, + [SMALL_STATE(5160)] = 149069, + [SMALL_STATE(5161)] = 149096, + [SMALL_STATE(5162)] = 149123, + [SMALL_STATE(5163)] = 149152, + [SMALL_STATE(5164)] = 149181, + [SMALL_STATE(5165)] = 149202, + [SMALL_STATE(5166)] = 149223, + [SMALL_STATE(5167)] = 149252, + [SMALL_STATE(5168)] = 149271, + [SMALL_STATE(5169)] = 149300, + [SMALL_STATE(5170)] = 149327, + [SMALL_STATE(5171)] = 149342, + [SMALL_STATE(5172)] = 149365, + [SMALL_STATE(5173)] = 149388, + [SMALL_STATE(5174)] = 149417, + [SMALL_STATE(5175)] = 149440, + [SMALL_STATE(5176)] = 149465, + [SMALL_STATE(5177)] = 149494, + [SMALL_STATE(5178)] = 149513, + [SMALL_STATE(5179)] = 149542, + [SMALL_STATE(5180)] = 149563, + [SMALL_STATE(5181)] = 149592, + [SMALL_STATE(5182)] = 149621, + [SMALL_STATE(5183)] = 149650, + [SMALL_STATE(5184)] = 149679, + [SMALL_STATE(5185)] = 149708, + [SMALL_STATE(5186)] = 149733, + [SMALL_STATE(5187)] = 149756, + [SMALL_STATE(5188)] = 149785, + [SMALL_STATE(5189)] = 149808, + [SMALL_STATE(5190)] = 149837, + [SMALL_STATE(5191)] = 149858, + [SMALL_STATE(5192)] = 149879, + [SMALL_STATE(5193)] = 149908, + [SMALL_STATE(5194)] = 149937, + [SMALL_STATE(5195)] = 149960, + [SMALL_STATE(5196)] = 149989, + [SMALL_STATE(5197)] = 150018, + [SMALL_STATE(5198)] = 150039, + [SMALL_STATE(5199)] = 150068, + [SMALL_STATE(5200)] = 150091, + [SMALL_STATE(5201)] = 150112, + [SMALL_STATE(5202)] = 150135, + [SMALL_STATE(5203)] = 150158, + [SMALL_STATE(5204)] = 150187, + [SMALL_STATE(5205)] = 150214, + [SMALL_STATE(5206)] = 150235, + [SMALL_STATE(5207)] = 150250, + [SMALL_STATE(5208)] = 150279, + [SMALL_STATE(5209)] = 150308, + [SMALL_STATE(5210)] = 150329, + [SMALL_STATE(5211)] = 150358, + [SMALL_STATE(5212)] = 150377, + [SMALL_STATE(5213)] = 150400, + [SMALL_STATE(5214)] = 150421, + [SMALL_STATE(5215)] = 150440, + [SMALL_STATE(5216)] = 150457, + [SMALL_STATE(5217)] = 150486, + [SMALL_STATE(5218)] = 150509, + [SMALL_STATE(5219)] = 150536, + [SMALL_STATE(5220)] = 150557, + [SMALL_STATE(5221)] = 150586, + [SMALL_STATE(5222)] = 150607, + [SMALL_STATE(5223)] = 150628, + [SMALL_STATE(5224)] = 150647, + [SMALL_STATE(5225)] = 150664, + [SMALL_STATE(5226)] = 150685, + [SMALL_STATE(5227)] = 150708, + [SMALL_STATE(5228)] = 150729, + [SMALL_STATE(5229)] = 150748, + [SMALL_STATE(5230)] = 150765, + [SMALL_STATE(5231)] = 150788, + [SMALL_STATE(5232)] = 150817, + [SMALL_STATE(5233)] = 150840, + [SMALL_STATE(5234)] = 150861, + [SMALL_STATE(5235)] = 150890, + [SMALL_STATE(5236)] = 150913, + [SMALL_STATE(5237)] = 150936, + [SMALL_STATE(5238)] = 150959, + [SMALL_STATE(5239)] = 150982, + [SMALL_STATE(5240)] = 151003, + [SMALL_STATE(5241)] = 151030, + [SMALL_STATE(5242)] = 151045, + [SMALL_STATE(5243)] = 151066, + [SMALL_STATE(5244)] = 151081, + [SMALL_STATE(5245)] = 151100, + [SMALL_STATE(5246)] = 151119, + [SMALL_STATE(5247)] = 151146, + [SMALL_STATE(5248)] = 151175, + [SMALL_STATE(5249)] = 151198, + [SMALL_STATE(5250)] = 151221, + [SMALL_STATE(5251)] = 151247, + [SMALL_STATE(5252)] = 151271, + [SMALL_STATE(5253)] = 151295, + [SMALL_STATE(5254)] = 151319, + [SMALL_STATE(5255)] = 151333, + [SMALL_STATE(5256)] = 151355, + [SMALL_STATE(5257)] = 151381, + [SMALL_STATE(5258)] = 151407, + [SMALL_STATE(5259)] = 151425, + [SMALL_STATE(5260)] = 151451, + [SMALL_STATE(5261)] = 151469, + [SMALL_STATE(5262)] = 151495, + [SMALL_STATE(5263)] = 151519, + [SMALL_STATE(5264)] = 151537, + [SMALL_STATE(5265)] = 151563, + [SMALL_STATE(5266)] = 151589, + [SMALL_STATE(5267)] = 151615, + [SMALL_STATE(5268)] = 151641, + [SMALL_STATE(5269)] = 151665, + [SMALL_STATE(5270)] = 151689, + [SMALL_STATE(5271)] = 151713, + [SMALL_STATE(5272)] = 151739, + [SMALL_STATE(5273)] = 151765, + [SMALL_STATE(5274)] = 151789, + [SMALL_STATE(5275)] = 151815, + [SMALL_STATE(5276)] = 151841, + [SMALL_STATE(5277)] = 151867, + [SMALL_STATE(5278)] = 151885, + [SMALL_STATE(5279)] = 151909, + [SMALL_STATE(5280)] = 151933, + [SMALL_STATE(5281)] = 151959, + [SMALL_STATE(5282)] = 151983, + [SMALL_STATE(5283)] = 152007, + [SMALL_STATE(5284)] = 152033, + [SMALL_STATE(5285)] = 152057, + [SMALL_STATE(5286)] = 152081, + [SMALL_STATE(5287)] = 152099, + [SMALL_STATE(5288)] = 152123, + [SMALL_STATE(5289)] = 152149, + [SMALL_STATE(5290)] = 152175, + [SMALL_STATE(5291)] = 152201, + [SMALL_STATE(5292)] = 152227, + [SMALL_STATE(5293)] = 152253, + [SMALL_STATE(5294)] = 152279, + [SMALL_STATE(5295)] = 152299, + [SMALL_STATE(5296)] = 152325, + [SMALL_STATE(5297)] = 152349, + [SMALL_STATE(5298)] = 152375, + [SMALL_STATE(5299)] = 152401, + [SMALL_STATE(5300)] = 152423, + [SMALL_STATE(5301)] = 152449, + [SMALL_STATE(5302)] = 152475, + [SMALL_STATE(5303)] = 152499, + [SMALL_STATE(5304)] = 152521, + [SMALL_STATE(5305)] = 152539, + [SMALL_STATE(5306)] = 152565, + [SMALL_STATE(5307)] = 152589, + [SMALL_STATE(5308)] = 152615, + [SMALL_STATE(5309)] = 152641, + [SMALL_STATE(5310)] = 152661, + [SMALL_STATE(5311)] = 152687, + [SMALL_STATE(5312)] = 152713, + [SMALL_STATE(5313)] = 152727, + [SMALL_STATE(5314)] = 152753, + [SMALL_STATE(5315)] = 152779, + [SMALL_STATE(5316)] = 152805, + [SMALL_STATE(5317)] = 152829, + [SMALL_STATE(5318)] = 152847, + [SMALL_STATE(5319)] = 152871, + [SMALL_STATE(5320)] = 152895, + [SMALL_STATE(5321)] = 152919, + [SMALL_STATE(5322)] = 152943, + [SMALL_STATE(5323)] = 152969, + [SMALL_STATE(5324)] = 152995, + [SMALL_STATE(5325)] = 153021, + [SMALL_STATE(5326)] = 153047, + [SMALL_STATE(5327)] = 153073, + [SMALL_STATE(5328)] = 153089, + [SMALL_STATE(5329)] = 153109, + [SMALL_STATE(5330)] = 153135, + [SMALL_STATE(5331)] = 153161, + [SMALL_STATE(5332)] = 153185, + [SMALL_STATE(5333)] = 153209, + [SMALL_STATE(5334)] = 153235, + [SMALL_STATE(5335)] = 153259, + [SMALL_STATE(5336)] = 153283, + [SMALL_STATE(5337)] = 153309, + [SMALL_STATE(5338)] = 153335, + [SMALL_STATE(5339)] = 153361, + [SMALL_STATE(5340)] = 153387, + [SMALL_STATE(5341)] = 153413, + [SMALL_STATE(5342)] = 153437, + [SMALL_STATE(5343)] = 153463, + [SMALL_STATE(5344)] = 153489, + [SMALL_STATE(5345)] = 153515, + [SMALL_STATE(5346)] = 153541, + [SMALL_STATE(5347)] = 153565, + [SMALL_STATE(5348)] = 153589, + [SMALL_STATE(5349)] = 153613, + [SMALL_STATE(5350)] = 153637, + [SMALL_STATE(5351)] = 153663, + [SMALL_STATE(5352)] = 153689, + [SMALL_STATE(5353)] = 153715, + [SMALL_STATE(5354)] = 153733, + [SMALL_STATE(5355)] = 153759, + [SMALL_STATE(5356)] = 153781, + [SMALL_STATE(5357)] = 153805, + [SMALL_STATE(5358)] = 153831, + [SMALL_STATE(5359)] = 153857, + [SMALL_STATE(5360)] = 153881, + [SMALL_STATE(5361)] = 153905, + [SMALL_STATE(5362)] = 153931, + [SMALL_STATE(5363)] = 153957, + [SMALL_STATE(5364)] = 153981, + [SMALL_STATE(5365)] = 154005, + [SMALL_STATE(5366)] = 154029, + [SMALL_STATE(5367)] = 154055, + [SMALL_STATE(5368)] = 154079, + [SMALL_STATE(5369)] = 154103, + [SMALL_STATE(5370)] = 154127, + [SMALL_STATE(5371)] = 154151, + [SMALL_STATE(5372)] = 154177, + [SMALL_STATE(5373)] = 154203, + [SMALL_STATE(5374)] = 154229, + [SMALL_STATE(5375)] = 154255, + [SMALL_STATE(5376)] = 154281, + [SMALL_STATE(5377)] = 154307, + [SMALL_STATE(5378)] = 154331, + [SMALL_STATE(5379)] = 154357, + [SMALL_STATE(5380)] = 154381, + [SMALL_STATE(5381)] = 154399, + [SMALL_STATE(5382)] = 154425, + [SMALL_STATE(5383)] = 154451, + [SMALL_STATE(5384)] = 154477, + [SMALL_STATE(5385)] = 154503, + [SMALL_STATE(5386)] = 154529, + [SMALL_STATE(5387)] = 154553, + [SMALL_STATE(5388)] = 154579, + [SMALL_STATE(5389)] = 154605, + [SMALL_STATE(5390)] = 154629, + [SMALL_STATE(5391)] = 154653, + [SMALL_STATE(5392)] = 154679, + [SMALL_STATE(5393)] = 154705, + [SMALL_STATE(5394)] = 154731, + [SMALL_STATE(5395)] = 154757, + [SMALL_STATE(5396)] = 154781, + [SMALL_STATE(5397)] = 154799, + [SMALL_STATE(5398)] = 154823, + [SMALL_STATE(5399)] = 154847, + [SMALL_STATE(5400)] = 154871, + [SMALL_STATE(5401)] = 154895, + [SMALL_STATE(5402)] = 154919, + [SMALL_STATE(5403)] = 154945, + [SMALL_STATE(5404)] = 154969, + [SMALL_STATE(5405)] = 154995, + [SMALL_STATE(5406)] = 155019, + [SMALL_STATE(5407)] = 155037, + [SMALL_STATE(5408)] = 155063, + [SMALL_STATE(5409)] = 155087, + [SMALL_STATE(5410)] = 155105, + [SMALL_STATE(5411)] = 155127, + [SMALL_STATE(5412)] = 155143, + [SMALL_STATE(5413)] = 155169, + [SMALL_STATE(5414)] = 155195, + [SMALL_STATE(5415)] = 155221, + [SMALL_STATE(5416)] = 155235, + [SMALL_STATE(5417)] = 155261, + [SMALL_STATE(5418)] = 155287, + [SMALL_STATE(5419)] = 155313, + [SMALL_STATE(5420)] = 155339, + [SMALL_STATE(5421)] = 155365, + [SMALL_STATE(5422)] = 155389, + [SMALL_STATE(5423)] = 155411, + [SMALL_STATE(5424)] = 155429, + [SMALL_STATE(5425)] = 155455, + [SMALL_STATE(5426)] = 155481, + [SMALL_STATE(5427)] = 155507, + [SMALL_STATE(5428)] = 155531, + [SMALL_STATE(5429)] = 155555, + [SMALL_STATE(5430)] = 155579, + [SMALL_STATE(5431)] = 155605, + [SMALL_STATE(5432)] = 155631, + [SMALL_STATE(5433)] = 155657, + [SMALL_STATE(5434)] = 155681, + [SMALL_STATE(5435)] = 155705, + [SMALL_STATE(5436)] = 155729, + [SMALL_STATE(5437)] = 155753, + [SMALL_STATE(5438)] = 155777, + [SMALL_STATE(5439)] = 155803, + [SMALL_STATE(5440)] = 155820, + [SMALL_STATE(5441)] = 155841, + [SMALL_STATE(5442)] = 155858, + [SMALL_STATE(5443)] = 155875, + [SMALL_STATE(5444)] = 155896, + [SMALL_STATE(5445)] = 155913, + [SMALL_STATE(5446)] = 155936, + [SMALL_STATE(5447)] = 155957, + [SMALL_STATE(5448)] = 155978, + [SMALL_STATE(5449)] = 155999, + [SMALL_STATE(5450)] = 156016, + [SMALL_STATE(5451)] = 156037, + [SMALL_STATE(5452)] = 156052, + [SMALL_STATE(5453)] = 156073, + [SMALL_STATE(5454)] = 156096, + [SMALL_STATE(5455)] = 156113, + [SMALL_STATE(5456)] = 156128, + [SMALL_STATE(5457)] = 156145, + [SMALL_STATE(5458)] = 156162, + [SMALL_STATE(5459)] = 156183, + [SMALL_STATE(5460)] = 156206, + [SMALL_STATE(5461)] = 156223, + [SMALL_STATE(5462)] = 156244, + [SMALL_STATE(5463)] = 156257, + [SMALL_STATE(5464)] = 156272, + [SMALL_STATE(5465)] = 156289, + [SMALL_STATE(5466)] = 156312, + [SMALL_STATE(5467)] = 156333, + [SMALL_STATE(5468)] = 156354, + [SMALL_STATE(5469)] = 156367, + [SMALL_STATE(5470)] = 156388, + [SMALL_STATE(5471)] = 156405, + [SMALL_STATE(5472)] = 156426, + [SMALL_STATE(5473)] = 156443, + [SMALL_STATE(5474)] = 156466, + [SMALL_STATE(5475)] = 156489, + [SMALL_STATE(5476)] = 156512, + [SMALL_STATE(5477)] = 156533, + [SMALL_STATE(5478)] = 156554, + [SMALL_STATE(5479)] = 156569, + [SMALL_STATE(5480)] = 156586, + [SMALL_STATE(5481)] = 156609, + [SMALL_STATE(5482)] = 156632, + [SMALL_STATE(5483)] = 156653, + [SMALL_STATE(5484)] = 156676, + [SMALL_STATE(5485)] = 156693, + [SMALL_STATE(5486)] = 156714, + [SMALL_STATE(5487)] = 156731, + [SMALL_STATE(5488)] = 156752, + [SMALL_STATE(5489)] = 156775, + [SMALL_STATE(5490)] = 156792, + [SMALL_STATE(5491)] = 156809, + [SMALL_STATE(5492)] = 156830, + [SMALL_STATE(5493)] = 156847, + [SMALL_STATE(5494)] = 156870, + [SMALL_STATE(5495)] = 156885, + [SMALL_STATE(5496)] = 156906, + [SMALL_STATE(5497)] = 156923, + [SMALL_STATE(5498)] = 156946, + [SMALL_STATE(5499)] = 156959, + [SMALL_STATE(5500)] = 156982, + [SMALL_STATE(5501)] = 157003, + [SMALL_STATE(5502)] = 157016, + [SMALL_STATE(5503)] = 157033, + [SMALL_STATE(5504)] = 157046, + [SMALL_STATE(5505)] = 157059, + [SMALL_STATE(5506)] = 157076, + [SMALL_STATE(5507)] = 157099, + [SMALL_STATE(5508)] = 157120, + [SMALL_STATE(5509)] = 157137, + [SMALL_STATE(5510)] = 157158, + [SMALL_STATE(5511)] = 157171, + [SMALL_STATE(5512)] = 157186, + [SMALL_STATE(5513)] = 157205, + [SMALL_STATE(5514)] = 157226, + [SMALL_STATE(5515)] = 157239, + [SMALL_STATE(5516)] = 157262, + [SMALL_STATE(5517)] = 157283, + [SMALL_STATE(5518)] = 157304, + [SMALL_STATE(5519)] = 157325, + [SMALL_STATE(5520)] = 157342, + [SMALL_STATE(5521)] = 157363, + [SMALL_STATE(5522)] = 157386, + [SMALL_STATE(5523)] = 157401, + [SMALL_STATE(5524)] = 157418, + [SMALL_STATE(5525)] = 157435, + [SMALL_STATE(5526)] = 157458, + [SMALL_STATE(5527)] = 157473, + [SMALL_STATE(5528)] = 157496, + [SMALL_STATE(5529)] = 157513, + [SMALL_STATE(5530)] = 157536, + [SMALL_STATE(5531)] = 157557, + [SMALL_STATE(5532)] = 157570, + [SMALL_STATE(5533)] = 157591, + [SMALL_STATE(5534)] = 157604, + [SMALL_STATE(5535)] = 157627, + [SMALL_STATE(5536)] = 157650, + [SMALL_STATE(5537)] = 157663, + [SMALL_STATE(5538)] = 157684, + [SMALL_STATE(5539)] = 157705, + [SMALL_STATE(5540)] = 157722, + [SMALL_STATE(5541)] = 157743, + [SMALL_STATE(5542)] = 157760, + [SMALL_STATE(5543)] = 157779, + [SMALL_STATE(5544)] = 157796, + [SMALL_STATE(5545)] = 157811, + [SMALL_STATE(5546)] = 157832, + [SMALL_STATE(5547)] = 157849, + [SMALL_STATE(5548)] = 157870, + [SMALL_STATE(5549)] = 157883, + [SMALL_STATE(5550)] = 157906, + [SMALL_STATE(5551)] = 157919, + [SMALL_STATE(5552)] = 157942, + [SMALL_STATE(5553)] = 157963, + [SMALL_STATE(5554)] = 157980, + [SMALL_STATE(5555)] = 158001, + [SMALL_STATE(5556)] = 158022, + [SMALL_STATE(5557)] = 158043, + [SMALL_STATE(5558)] = 158060, + [SMALL_STATE(5559)] = 158081, + [SMALL_STATE(5560)] = 158102, + [SMALL_STATE(5561)] = 158123, + [SMALL_STATE(5562)] = 158136, + [SMALL_STATE(5563)] = 158157, + [SMALL_STATE(5564)] = 158180, + [SMALL_STATE(5565)] = 158197, + [SMALL_STATE(5566)] = 158218, + [SMALL_STATE(5567)] = 158235, + [SMALL_STATE(5568)] = 158252, + [SMALL_STATE(5569)] = 158269, + [SMALL_STATE(5570)] = 158284, + [SMALL_STATE(5571)] = 158305, + [SMALL_STATE(5572)] = 158328, + [SMALL_STATE(5573)] = 158345, + [SMALL_STATE(5574)] = 158362, + [SMALL_STATE(5575)] = 158385, + [SMALL_STATE(5576)] = 158408, + [SMALL_STATE(5577)] = 158425, + [SMALL_STATE(5578)] = 158446, + [SMALL_STATE(5579)] = 158463, + [SMALL_STATE(5580)] = 158480, + [SMALL_STATE(5581)] = 158501, + [SMALL_STATE(5582)] = 158522, + [SMALL_STATE(5583)] = 158545, + [SMALL_STATE(5584)] = 158568, + [SMALL_STATE(5585)] = 158585, + [SMALL_STATE(5586)] = 158606, + [SMALL_STATE(5587)] = 158629, + [SMALL_STATE(5588)] = 158650, + [SMALL_STATE(5589)] = 158671, + [SMALL_STATE(5590)] = 158688, + [SMALL_STATE(5591)] = 158709, + [SMALL_STATE(5592)] = 158728, + [SMALL_STATE(5593)] = 158740, + [SMALL_STATE(5594)] = 158752, + [SMALL_STATE(5595)] = 158772, + [SMALL_STATE(5596)] = 158784, + [SMALL_STATE(5597)] = 158804, + [SMALL_STATE(5598)] = 158824, + [SMALL_STATE(5599)] = 158836, + [SMALL_STATE(5600)] = 158848, + [SMALL_STATE(5601)] = 158864, + [SMALL_STATE(5602)] = 158878, + [SMALL_STATE(5603)] = 158894, + [SMALL_STATE(5604)] = 158914, + [SMALL_STATE(5605)] = 158934, + [SMALL_STATE(5606)] = 158948, + [SMALL_STATE(5607)] = 158964, + [SMALL_STATE(5608)] = 158976, + [SMALL_STATE(5609)] = 158996, + [SMALL_STATE(5610)] = 159014, + [SMALL_STATE(5611)] = 159034, + [SMALL_STATE(5612)] = 159054, + [SMALL_STATE(5613)] = 159074, + [SMALL_STATE(5614)] = 159092, + [SMALL_STATE(5615)] = 159110, + [SMALL_STATE(5616)] = 159130, + [SMALL_STATE(5617)] = 159150, + [SMALL_STATE(5618)] = 159170, + [SMALL_STATE(5619)] = 159188, + [SMALL_STATE(5620)] = 159208, + [SMALL_STATE(5621)] = 159228, + [SMALL_STATE(5622)] = 159240, + [SMALL_STATE(5623)] = 159256, + [SMALL_STATE(5624)] = 159276, + [SMALL_STATE(5625)] = 159296, + [SMALL_STATE(5626)] = 159314, + [SMALL_STATE(5627)] = 159334, + [SMALL_STATE(5628)] = 159354, + [SMALL_STATE(5629)] = 159374, + [SMALL_STATE(5630)] = 159394, + [SMALL_STATE(5631)] = 159412, + [SMALL_STATE(5632)] = 159432, + [SMALL_STATE(5633)] = 159450, + [SMALL_STATE(5634)] = 159462, + [SMALL_STATE(5635)] = 159482, + [SMALL_STATE(5636)] = 159494, + [SMALL_STATE(5637)] = 159510, + [SMALL_STATE(5638)] = 159530, + [SMALL_STATE(5639)] = 159548, + [SMALL_STATE(5640)] = 159560, + [SMALL_STATE(5641)] = 159572, + [SMALL_STATE(5642)] = 159584, + [SMALL_STATE(5643)] = 159600, + [SMALL_STATE(5644)] = 159612, + [SMALL_STATE(5645)] = 159624, + [SMALL_STATE(5646)] = 159636, + [SMALL_STATE(5647)] = 159648, + [SMALL_STATE(5648)] = 159668, + [SMALL_STATE(5649)] = 159680, + [SMALL_STATE(5650)] = 159692, + [SMALL_STATE(5651)] = 159704, + [SMALL_STATE(5652)] = 159716, + [SMALL_STATE(5653)] = 159728, + [SMALL_STATE(5654)] = 159740, + [SMALL_STATE(5655)] = 159756, + [SMALL_STATE(5656)] = 159776, + [SMALL_STATE(5657)] = 159788, + [SMALL_STATE(5658)] = 159808, + [SMALL_STATE(5659)] = 159820, + [SMALL_STATE(5660)] = 159832, + [SMALL_STATE(5661)] = 159850, + [SMALL_STATE(5662)] = 159862, + [SMALL_STATE(5663)] = 159882, + [SMALL_STATE(5664)] = 159902, + [SMALL_STATE(5665)] = 159920, + [SMALL_STATE(5666)] = 159932, + [SMALL_STATE(5667)] = 159944, + [SMALL_STATE(5668)] = 159960, + [SMALL_STATE(5669)] = 159972, + [SMALL_STATE(5670)] = 159984, + [SMALL_STATE(5671)] = 159996, + [SMALL_STATE(5672)] = 160016, + [SMALL_STATE(5673)] = 160036, + [SMALL_STATE(5674)] = 160056, + [SMALL_STATE(5675)] = 160076, + [SMALL_STATE(5676)] = 160094, + [SMALL_STATE(5677)] = 160108, + [SMALL_STATE(5678)] = 160128, + [SMALL_STATE(5679)] = 160148, + [SMALL_STATE(5680)] = 160168, + [SMALL_STATE(5681)] = 160188, + [SMALL_STATE(5682)] = 160204, + [SMALL_STATE(5683)] = 160224, + [SMALL_STATE(5684)] = 160244, + [SMALL_STATE(5685)] = 160264, + [SMALL_STATE(5686)] = 160284, + [SMALL_STATE(5687)] = 160296, + [SMALL_STATE(5688)] = 160308, + [SMALL_STATE(5689)] = 160324, + [SMALL_STATE(5690)] = 160336, + [SMALL_STATE(5691)] = 160352, + [SMALL_STATE(5692)] = 160370, + [SMALL_STATE(5693)] = 160390, + [SMALL_STATE(5694)] = 160410, + [SMALL_STATE(5695)] = 160430, + [SMALL_STATE(5696)] = 160446, + [SMALL_STATE(5697)] = 160466, + [SMALL_STATE(5698)] = 160478, + [SMALL_STATE(5699)] = 160498, + [SMALL_STATE(5700)] = 160518, + [SMALL_STATE(5701)] = 160538, + [SMALL_STATE(5702)] = 160558, + [SMALL_STATE(5703)] = 160578, + [SMALL_STATE(5704)] = 160598, + [SMALL_STATE(5705)] = 160618, + [SMALL_STATE(5706)] = 160638, + [SMALL_STATE(5707)] = 160658, + [SMALL_STATE(5708)] = 160678, + [SMALL_STATE(5709)] = 160692, + [SMALL_STATE(5710)] = 160708, + [SMALL_STATE(5711)] = 160728, + [SMALL_STATE(5712)] = 160740, + [SMALL_STATE(5713)] = 160758, + [SMALL_STATE(5714)] = 160770, + [SMALL_STATE(5715)] = 160790, + [SMALL_STATE(5716)] = 160810, + [SMALL_STATE(5717)] = 160830, + [SMALL_STATE(5718)] = 160850, + [SMALL_STATE(5719)] = 160870, + [SMALL_STATE(5720)] = 160890, + [SMALL_STATE(5721)] = 160910, + [SMALL_STATE(5722)] = 160922, + [SMALL_STATE(5723)] = 160942, + [SMALL_STATE(5724)] = 160962, + [SMALL_STATE(5725)] = 160982, + [SMALL_STATE(5726)] = 161002, + [SMALL_STATE(5727)] = 161014, + [SMALL_STATE(5728)] = 161034, + [SMALL_STATE(5729)] = 161050, + [SMALL_STATE(5730)] = 161070, + [SMALL_STATE(5731)] = 161090, + [SMALL_STATE(5732)] = 161102, + [SMALL_STATE(5733)] = 161122, + [SMALL_STATE(5734)] = 161142, + [SMALL_STATE(5735)] = 161154, + [SMALL_STATE(5736)] = 161174, + [SMALL_STATE(5737)] = 161194, + [SMALL_STATE(5738)] = 161214, + [SMALL_STATE(5739)] = 161230, + [SMALL_STATE(5740)] = 161250, + [SMALL_STATE(5741)] = 161270, + [SMALL_STATE(5742)] = 161290, + [SMALL_STATE(5743)] = 161310, + [SMALL_STATE(5744)] = 161330, + [SMALL_STATE(5745)] = 161348, + [SMALL_STATE(5746)] = 161368, + [SMALL_STATE(5747)] = 161388, + [SMALL_STATE(5748)] = 161408, + [SMALL_STATE(5749)] = 161428, + [SMALL_STATE(5750)] = 161448, + [SMALL_STATE(5751)] = 161468, + [SMALL_STATE(5752)] = 161484, + [SMALL_STATE(5753)] = 161498, + [SMALL_STATE(5754)] = 161514, + [SMALL_STATE(5755)] = 161534, + [SMALL_STATE(5756)] = 161554, + [SMALL_STATE(5757)] = 161568, + [SMALL_STATE(5758)] = 161580, + [SMALL_STATE(5759)] = 161600, + [SMALL_STATE(5760)] = 161620, + [SMALL_STATE(5761)] = 161636, + [SMALL_STATE(5762)] = 161656, + [SMALL_STATE(5763)] = 161672, + [SMALL_STATE(5764)] = 161692, + [SMALL_STATE(5765)] = 161710, + [SMALL_STATE(5766)] = 161730, + [SMALL_STATE(5767)] = 161748, + [SMALL_STATE(5768)] = 161768, + [SMALL_STATE(5769)] = 161788, + [SMALL_STATE(5770)] = 161804, + [SMALL_STATE(5771)] = 161824, + [SMALL_STATE(5772)] = 161844, + [SMALL_STATE(5773)] = 161858, + [SMALL_STATE(5774)] = 161878, + [SMALL_STATE(5775)] = 161894, + [SMALL_STATE(5776)] = 161914, + [SMALL_STATE(5777)] = 161930, + [SMALL_STATE(5778)] = 161950, + [SMALL_STATE(5779)] = 161970, + [SMALL_STATE(5780)] = 161988, + [SMALL_STATE(5781)] = 162008, + [SMALL_STATE(5782)] = 162028, + [SMALL_STATE(5783)] = 162048, + [SMALL_STATE(5784)] = 162068, + [SMALL_STATE(5785)] = 162088, + [SMALL_STATE(5786)] = 162104, + [SMALL_STATE(5787)] = 162116, + [SMALL_STATE(5788)] = 162136, + [SMALL_STATE(5789)] = 162152, + [SMALL_STATE(5790)] = 162168, + [SMALL_STATE(5791)] = 162180, + [SMALL_STATE(5792)] = 162200, + [SMALL_STATE(5793)] = 162220, + [SMALL_STATE(5794)] = 162240, + [SMALL_STATE(5795)] = 162256, + [SMALL_STATE(5796)] = 162268, + [SMALL_STATE(5797)] = 162288, + [SMALL_STATE(5798)] = 162304, + [SMALL_STATE(5799)] = 162316, + [SMALL_STATE(5800)] = 162336, + [SMALL_STATE(5801)] = 162356, + [SMALL_STATE(5802)] = 162368, + [SMALL_STATE(5803)] = 162388, + [SMALL_STATE(5804)] = 162400, + [SMALL_STATE(5805)] = 162418, + [SMALL_STATE(5806)] = 162438, + [SMALL_STATE(5807)] = 162458, + [SMALL_STATE(5808)] = 162478, + [SMALL_STATE(5809)] = 162498, + [SMALL_STATE(5810)] = 162518, + [SMALL_STATE(5811)] = 162536, + [SMALL_STATE(5812)] = 162556, + [SMALL_STATE(5813)] = 162568, + [SMALL_STATE(5814)] = 162580, + [SMALL_STATE(5815)] = 162592, + [SMALL_STATE(5816)] = 162604, + [SMALL_STATE(5817)] = 162616, + [SMALL_STATE(5818)] = 162628, + [SMALL_STATE(5819)] = 162640, + [SMALL_STATE(5820)] = 162652, + [SMALL_STATE(5821)] = 162664, + [SMALL_STATE(5822)] = 162684, + [SMALL_STATE(5823)] = 162702, + [SMALL_STATE(5824)] = 162722, + [SMALL_STATE(5825)] = 162742, + [SMALL_STATE(5826)] = 162762, + [SMALL_STATE(5827)] = 162782, + [SMALL_STATE(5828)] = 162802, + [SMALL_STATE(5829)] = 162818, + [SMALL_STATE(5830)] = 162830, + [SMALL_STATE(5831)] = 162848, + [SMALL_STATE(5832)] = 162868, + [SMALL_STATE(5833)] = 162888, + [SMALL_STATE(5834)] = 162908, + [SMALL_STATE(5835)] = 162928, + [SMALL_STATE(5836)] = 162940, + [SMALL_STATE(5837)] = 162958, + [SMALL_STATE(5838)] = 162978, + [SMALL_STATE(5839)] = 162990, + [SMALL_STATE(5840)] = 163001, + [SMALL_STATE(5841)] = 163012, + [SMALL_STATE(5842)] = 163029, + [SMALL_STATE(5843)] = 163040, + [SMALL_STATE(5844)] = 163053, + [SMALL_STATE(5845)] = 163064, + [SMALL_STATE(5846)] = 163075, + [SMALL_STATE(5847)] = 163090, + [SMALL_STATE(5848)] = 163105, + [SMALL_STATE(5849)] = 163116, + [SMALL_STATE(5850)] = 163133, + [SMALL_STATE(5851)] = 163148, + [SMALL_STATE(5852)] = 163159, + [SMALL_STATE(5853)] = 163170, + [SMALL_STATE(5854)] = 163185, + [SMALL_STATE(5855)] = 163196, + [SMALL_STATE(5856)] = 163207, + [SMALL_STATE(5857)] = 163218, + [SMALL_STATE(5858)] = 163229, + [SMALL_STATE(5859)] = 163246, + [SMALL_STATE(5860)] = 163257, + [SMALL_STATE(5861)] = 163268, + [SMALL_STATE(5862)] = 163279, + [SMALL_STATE(5863)] = 163290, + [SMALL_STATE(5864)] = 163301, + [SMALL_STATE(5865)] = 163318, + [SMALL_STATE(5866)] = 163329, + [SMALL_STATE(5867)] = 163340, + [SMALL_STATE(5868)] = 163355, + [SMALL_STATE(5869)] = 163370, + [SMALL_STATE(5870)] = 163381, + [SMALL_STATE(5871)] = 163392, + [SMALL_STATE(5872)] = 163403, + [SMALL_STATE(5873)] = 163414, + [SMALL_STATE(5874)] = 163425, + [SMALL_STATE(5875)] = 163436, + [SMALL_STATE(5876)] = 163447, + [SMALL_STATE(5877)] = 163458, + [SMALL_STATE(5878)] = 163469, + [SMALL_STATE(5879)] = 163480, + [SMALL_STATE(5880)] = 163491, + [SMALL_STATE(5881)] = 163508, + [SMALL_STATE(5882)] = 163519, + [SMALL_STATE(5883)] = 163530, + [SMALL_STATE(5884)] = 163545, + [SMALL_STATE(5885)] = 163556, + [SMALL_STATE(5886)] = 163573, + [SMALL_STATE(5887)] = 163588, + [SMALL_STATE(5888)] = 163601, + [SMALL_STATE(5889)] = 163618, + [SMALL_STATE(5890)] = 163635, + [SMALL_STATE(5891)] = 163646, + [SMALL_STATE(5892)] = 163661, + [SMALL_STATE(5893)] = 163678, + [SMALL_STATE(5894)] = 163693, + [SMALL_STATE(5895)] = 163710, + [SMALL_STATE(5896)] = 163727, + [SMALL_STATE(5897)] = 163744, + [SMALL_STATE(5898)] = 163755, + [SMALL_STATE(5899)] = 163772, + [SMALL_STATE(5900)] = 163787, + [SMALL_STATE(5901)] = 163804, + [SMALL_STATE(5902)] = 163815, + [SMALL_STATE(5903)] = 163830, + [SMALL_STATE(5904)] = 163845, + [SMALL_STATE(5905)] = 163856, + [SMALL_STATE(5906)] = 163867, + [SMALL_STATE(5907)] = 163878, + [SMALL_STATE(5908)] = 163889, + [SMALL_STATE(5909)] = 163900, + [SMALL_STATE(5910)] = 163911, + [SMALL_STATE(5911)] = 163928, + [SMALL_STATE(5912)] = 163939, + [SMALL_STATE(5913)] = 163950, + [SMALL_STATE(5914)] = 163961, + [SMALL_STATE(5915)] = 163978, + [SMALL_STATE(5916)] = 163989, + [SMALL_STATE(5917)] = 164000, + [SMALL_STATE(5918)] = 164017, + [SMALL_STATE(5919)] = 164034, + [SMALL_STATE(5920)] = 164049, + [SMALL_STATE(5921)] = 164066, + [SMALL_STATE(5922)] = 164077, + [SMALL_STATE(5923)] = 164092, + [SMALL_STATE(5924)] = 164103, + [SMALL_STATE(5925)] = 164114, + [SMALL_STATE(5926)] = 164125, + [SMALL_STATE(5927)] = 164136, + [SMALL_STATE(5928)] = 164147, + [SMALL_STATE(5929)] = 164158, + [SMALL_STATE(5930)] = 164175, + [SMALL_STATE(5931)] = 164192, + [SMALL_STATE(5932)] = 164209, + [SMALL_STATE(5933)] = 164220, + [SMALL_STATE(5934)] = 164231, + [SMALL_STATE(5935)] = 164242, + [SMALL_STATE(5936)] = 164253, + [SMALL_STATE(5937)] = 164264, + [SMALL_STATE(5938)] = 164275, + [SMALL_STATE(5939)] = 164286, + [SMALL_STATE(5940)] = 164297, + [SMALL_STATE(5941)] = 164314, + [SMALL_STATE(5942)] = 164325, + [SMALL_STATE(5943)] = 164342, + [SMALL_STATE(5944)] = 164357, + [SMALL_STATE(5945)] = 164372, + [SMALL_STATE(5946)] = 164383, + [SMALL_STATE(5947)] = 164396, + [SMALL_STATE(5948)] = 164411, + [SMALL_STATE(5949)] = 164428, + [SMALL_STATE(5950)] = 164443, + [SMALL_STATE(5951)] = 164454, + [SMALL_STATE(5952)] = 164465, + [SMALL_STATE(5953)] = 164476, + [SMALL_STATE(5954)] = 164493, + [SMALL_STATE(5955)] = 164504, + [SMALL_STATE(5956)] = 164521, + [SMALL_STATE(5957)] = 164538, + [SMALL_STATE(5958)] = 164551, + [SMALL_STATE(5959)] = 164568, + [SMALL_STATE(5960)] = 164583, + [SMALL_STATE(5961)] = 164600, + [SMALL_STATE(5962)] = 164611, + [SMALL_STATE(5963)] = 164626, + [SMALL_STATE(5964)] = 164641, + [SMALL_STATE(5965)] = 164658, + [SMALL_STATE(5966)] = 164669, + [SMALL_STATE(5967)] = 164686, + [SMALL_STATE(5968)] = 164697, + [SMALL_STATE(5969)] = 164714, + [SMALL_STATE(5970)] = 164731, + [SMALL_STATE(5971)] = 164742, + [SMALL_STATE(5972)] = 164759, + [SMALL_STATE(5973)] = 164776, + [SMALL_STATE(5974)] = 164787, + [SMALL_STATE(5975)] = 164804, + [SMALL_STATE(5976)] = 164815, + [SMALL_STATE(5977)] = 164830, + [SMALL_STATE(5978)] = 164847, + [SMALL_STATE(5979)] = 164864, + [SMALL_STATE(5980)] = 164877, + [SMALL_STATE(5981)] = 164894, + [SMALL_STATE(5982)] = 164909, + [SMALL_STATE(5983)] = 164920, + [SMALL_STATE(5984)] = 164935, + [SMALL_STATE(5985)] = 164952, + [SMALL_STATE(5986)] = 164967, + [SMALL_STATE(5987)] = 164984, + [SMALL_STATE(5988)] = 165001, + [SMALL_STATE(5989)] = 165018, + [SMALL_STATE(5990)] = 165029, + [SMALL_STATE(5991)] = 165040, + [SMALL_STATE(5992)] = 165057, + [SMALL_STATE(5993)] = 165068, + [SMALL_STATE(5994)] = 165079, + [SMALL_STATE(5995)] = 165090, + [SMALL_STATE(5996)] = 165105, + [SMALL_STATE(5997)] = 165116, + [SMALL_STATE(5998)] = 165127, + [SMALL_STATE(5999)] = 165138, + [SMALL_STATE(6000)] = 165149, + [SMALL_STATE(6001)] = 165164, + [SMALL_STATE(6002)] = 165181, + [SMALL_STATE(6003)] = 165192, + [SMALL_STATE(6004)] = 165203, + [SMALL_STATE(6005)] = 165220, + [SMALL_STATE(6006)] = 165237, + [SMALL_STATE(6007)] = 165254, + [SMALL_STATE(6008)] = 165265, + [SMALL_STATE(6009)] = 165276, + [SMALL_STATE(6010)] = 165291, + [SMALL_STATE(6011)] = 165306, + [SMALL_STATE(6012)] = 165321, + [SMALL_STATE(6013)] = 165336, + [SMALL_STATE(6014)] = 165347, + [SMALL_STATE(6015)] = 165358, + [SMALL_STATE(6016)] = 165369, + [SMALL_STATE(6017)] = 165386, + [SMALL_STATE(6018)] = 165401, + [SMALL_STATE(6019)] = 165412, + [SMALL_STATE(6020)] = 165423, + [SMALL_STATE(6021)] = 165438, + [SMALL_STATE(6022)] = 165453, + [SMALL_STATE(6023)] = 165468, + [SMALL_STATE(6024)] = 165483, + [SMALL_STATE(6025)] = 165497, + [SMALL_STATE(6026)] = 165511, + [SMALL_STATE(6027)] = 165525, + [SMALL_STATE(6028)] = 165539, + [SMALL_STATE(6029)] = 165553, + [SMALL_STATE(6030)] = 165567, + [SMALL_STATE(6031)] = 165577, + [SMALL_STATE(6032)] = 165591, + [SMALL_STATE(6033)] = 165605, + [SMALL_STATE(6034)] = 165619, + [SMALL_STATE(6035)] = 165633, + [SMALL_STATE(6036)] = 165647, + [SMALL_STATE(6037)] = 165661, + [SMALL_STATE(6038)] = 165675, + [SMALL_STATE(6039)] = 165689, + [SMALL_STATE(6040)] = 165703, + [SMALL_STATE(6041)] = 165717, + [SMALL_STATE(6042)] = 165731, + [SMALL_STATE(6043)] = 165745, + [SMALL_STATE(6044)] = 165759, + [SMALL_STATE(6045)] = 165773, + [SMALL_STATE(6046)] = 165787, + [SMALL_STATE(6047)] = 165801, + [SMALL_STATE(6048)] = 165815, + [SMALL_STATE(6049)] = 165829, + [SMALL_STATE(6050)] = 165843, + [SMALL_STATE(6051)] = 165857, + [SMALL_STATE(6052)] = 165871, + [SMALL_STATE(6053)] = 165883, + [SMALL_STATE(6054)] = 165897, + [SMALL_STATE(6055)] = 165909, + [SMALL_STATE(6056)] = 165923, + [SMALL_STATE(6057)] = 165937, + [SMALL_STATE(6058)] = 165951, + [SMALL_STATE(6059)] = 165963, + [SMALL_STATE(6060)] = 165977, + [SMALL_STATE(6061)] = 165991, + [SMALL_STATE(6062)] = 166005, + [SMALL_STATE(6063)] = 166019, + [SMALL_STATE(6064)] = 166033, + [SMALL_STATE(6065)] = 166047, + [SMALL_STATE(6066)] = 166061, + [SMALL_STATE(6067)] = 166075, + [SMALL_STATE(6068)] = 166089, + [SMALL_STATE(6069)] = 166103, + [SMALL_STATE(6070)] = 166117, + [SMALL_STATE(6071)] = 166131, + [SMALL_STATE(6072)] = 166145, + [SMALL_STATE(6073)] = 166159, + [SMALL_STATE(6074)] = 166173, + [SMALL_STATE(6075)] = 166187, + [SMALL_STATE(6076)] = 166201, + [SMALL_STATE(6077)] = 166215, + [SMALL_STATE(6078)] = 166229, + [SMALL_STATE(6079)] = 166243, + [SMALL_STATE(6080)] = 166257, + [SMALL_STATE(6081)] = 166271, + [SMALL_STATE(6082)] = 166285, + [SMALL_STATE(6083)] = 166299, + [SMALL_STATE(6084)] = 166313, + [SMALL_STATE(6085)] = 166327, + [SMALL_STATE(6086)] = 166341, + [SMALL_STATE(6087)] = 166351, + [SMALL_STATE(6088)] = 166365, + [SMALL_STATE(6089)] = 166379, + [SMALL_STATE(6090)] = 166393, + [SMALL_STATE(6091)] = 166407, + [SMALL_STATE(6092)] = 166421, + [SMALL_STATE(6093)] = 166435, + [SMALL_STATE(6094)] = 166449, + [SMALL_STATE(6095)] = 166463, + [SMALL_STATE(6096)] = 166477, + [SMALL_STATE(6097)] = 166491, + [SMALL_STATE(6098)] = 166505, + [SMALL_STATE(6099)] = 166519, + [SMALL_STATE(6100)] = 166533, + [SMALL_STATE(6101)] = 166547, + [SMALL_STATE(6102)] = 166559, + [SMALL_STATE(6103)] = 166573, + [SMALL_STATE(6104)] = 166587, + [SMALL_STATE(6105)] = 166599, + [SMALL_STATE(6106)] = 166613, + [SMALL_STATE(6107)] = 166627, + [SMALL_STATE(6108)] = 166641, + [SMALL_STATE(6109)] = 166655, + [SMALL_STATE(6110)] = 166669, + [SMALL_STATE(6111)] = 166683, + [SMALL_STATE(6112)] = 166697, + [SMALL_STATE(6113)] = 166709, + [SMALL_STATE(6114)] = 166723, + [SMALL_STATE(6115)] = 166737, + [SMALL_STATE(6116)] = 166751, + [SMALL_STATE(6117)] = 166765, + [SMALL_STATE(6118)] = 166779, + [SMALL_STATE(6119)] = 166793, + [SMALL_STATE(6120)] = 166807, + [SMALL_STATE(6121)] = 166821, + [SMALL_STATE(6122)] = 166835, + [SMALL_STATE(6123)] = 166849, + [SMALL_STATE(6124)] = 166863, + [SMALL_STATE(6125)] = 166877, + [SMALL_STATE(6126)] = 166891, + [SMALL_STATE(6127)] = 166905, + [SMALL_STATE(6128)] = 166919, + [SMALL_STATE(6129)] = 166933, + [SMALL_STATE(6130)] = 166947, + [SMALL_STATE(6131)] = 166961, + [SMALL_STATE(6132)] = 166975, + [SMALL_STATE(6133)] = 166989, + [SMALL_STATE(6134)] = 167003, + [SMALL_STATE(6135)] = 167017, + [SMALL_STATE(6136)] = 167031, + [SMALL_STATE(6137)] = 167045, + [SMALL_STATE(6138)] = 167059, + [SMALL_STATE(6139)] = 167073, + [SMALL_STATE(6140)] = 167087, + [SMALL_STATE(6141)] = 167101, + [SMALL_STATE(6142)] = 167111, + [SMALL_STATE(6143)] = 167125, + [SMALL_STATE(6144)] = 167139, + [SMALL_STATE(6145)] = 167153, + [SMALL_STATE(6146)] = 167167, + [SMALL_STATE(6147)] = 167181, + [SMALL_STATE(6148)] = 167195, + [SMALL_STATE(6149)] = 167209, + [SMALL_STATE(6150)] = 167223, + [SMALL_STATE(6151)] = 167237, + [SMALL_STATE(6152)] = 167251, + [SMALL_STATE(6153)] = 167265, + [SMALL_STATE(6154)] = 167279, + [SMALL_STATE(6155)] = 167293, + [SMALL_STATE(6156)] = 167307, + [SMALL_STATE(6157)] = 167321, + [SMALL_STATE(6158)] = 167335, + [SMALL_STATE(6159)] = 167349, + [SMALL_STATE(6160)] = 167363, + [SMALL_STATE(6161)] = 167377, + [SMALL_STATE(6162)] = 167391, + [SMALL_STATE(6163)] = 167405, + [SMALL_STATE(6164)] = 167419, + [SMALL_STATE(6165)] = 167433, + [SMALL_STATE(6166)] = 167445, + [SMALL_STATE(6167)] = 167459, + [SMALL_STATE(6168)] = 167473, + [SMALL_STATE(6169)] = 167487, + [SMALL_STATE(6170)] = 167501, + [SMALL_STATE(6171)] = 167515, + [SMALL_STATE(6172)] = 167529, + [SMALL_STATE(6173)] = 167543, + [SMALL_STATE(6174)] = 167557, + [SMALL_STATE(6175)] = 167571, + [SMALL_STATE(6176)] = 167585, + [SMALL_STATE(6177)] = 167599, + [SMALL_STATE(6178)] = 167613, + [SMALL_STATE(6179)] = 167627, + [SMALL_STATE(6180)] = 167641, + [SMALL_STATE(6181)] = 167655, + [SMALL_STATE(6182)] = 167669, + [SMALL_STATE(6183)] = 167683, + [SMALL_STATE(6184)] = 167697, + [SMALL_STATE(6185)] = 167711, + [SMALL_STATE(6186)] = 167725, + [SMALL_STATE(6187)] = 167739, + [SMALL_STATE(6188)] = 167753, + [SMALL_STATE(6189)] = 167767, + [SMALL_STATE(6190)] = 167781, + [SMALL_STATE(6191)] = 167795, + [SMALL_STATE(6192)] = 167809, + [SMALL_STATE(6193)] = 167823, + [SMALL_STATE(6194)] = 167837, + [SMALL_STATE(6195)] = 167851, + [SMALL_STATE(6196)] = 167865, + [SMALL_STATE(6197)] = 167879, + [SMALL_STATE(6198)] = 167893, + [SMALL_STATE(6199)] = 167907, + [SMALL_STATE(6200)] = 167917, + [SMALL_STATE(6201)] = 167931, + [SMALL_STATE(6202)] = 167945, + [SMALL_STATE(6203)] = 167959, + [SMALL_STATE(6204)] = 167973, + [SMALL_STATE(6205)] = 167987, + [SMALL_STATE(6206)] = 168001, + [SMALL_STATE(6207)] = 168015, + [SMALL_STATE(6208)] = 168029, + [SMALL_STATE(6209)] = 168043, + [SMALL_STATE(6210)] = 168057, + [SMALL_STATE(6211)] = 168071, + [SMALL_STATE(6212)] = 168085, + [SMALL_STATE(6213)] = 168099, + [SMALL_STATE(6214)] = 168113, + [SMALL_STATE(6215)] = 168127, + [SMALL_STATE(6216)] = 168141, + [SMALL_STATE(6217)] = 168155, + [SMALL_STATE(6218)] = 168165, + [SMALL_STATE(6219)] = 168179, + [SMALL_STATE(6220)] = 168193, + [SMALL_STATE(6221)] = 168207, + [SMALL_STATE(6222)] = 168221, + [SMALL_STATE(6223)] = 168235, + [SMALL_STATE(6224)] = 168249, + [SMALL_STATE(6225)] = 168263, + [SMALL_STATE(6226)] = 168277, + [SMALL_STATE(6227)] = 168291, + [SMALL_STATE(6228)] = 168305, + [SMALL_STATE(6229)] = 168319, + [SMALL_STATE(6230)] = 168333, + [SMALL_STATE(6231)] = 168347, + [SMALL_STATE(6232)] = 168361, + [SMALL_STATE(6233)] = 168375, + [SMALL_STATE(6234)] = 168389, + [SMALL_STATE(6235)] = 168403, + [SMALL_STATE(6236)] = 168417, + [SMALL_STATE(6237)] = 168431, + [SMALL_STATE(6238)] = 168445, + [SMALL_STATE(6239)] = 168459, + [SMALL_STATE(6240)] = 168473, + [SMALL_STATE(6241)] = 168487, + [SMALL_STATE(6242)] = 168499, + [SMALL_STATE(6243)] = 168511, + [SMALL_STATE(6244)] = 168525, + [SMALL_STATE(6245)] = 168537, + [SMALL_STATE(6246)] = 168551, + [SMALL_STATE(6247)] = 168565, + [SMALL_STATE(6248)] = 168575, + [SMALL_STATE(6249)] = 168587, + [SMALL_STATE(6250)] = 168601, + [SMALL_STATE(6251)] = 168615, + [SMALL_STATE(6252)] = 168629, + [SMALL_STATE(6253)] = 168643, + [SMALL_STATE(6254)] = 168657, + [SMALL_STATE(6255)] = 168671, + [SMALL_STATE(6256)] = 168685, + [SMALL_STATE(6257)] = 168699, + [SMALL_STATE(6258)] = 168713, + [SMALL_STATE(6259)] = 168723, + [SMALL_STATE(6260)] = 168737, + [SMALL_STATE(6261)] = 168751, + [SMALL_STATE(6262)] = 168765, + [SMALL_STATE(6263)] = 168779, + [SMALL_STATE(6264)] = 168793, + [SMALL_STATE(6265)] = 168803, + [SMALL_STATE(6266)] = 168817, + [SMALL_STATE(6267)] = 168831, + [SMALL_STATE(6268)] = 168845, + [SMALL_STATE(6269)] = 168859, + [SMALL_STATE(6270)] = 168873, + [SMALL_STATE(6271)] = 168887, + [SMALL_STATE(6272)] = 168901, + [SMALL_STATE(6273)] = 168915, + [SMALL_STATE(6274)] = 168929, + [SMALL_STATE(6275)] = 168943, + [SMALL_STATE(6276)] = 168957, + [SMALL_STATE(6277)] = 168971, + [SMALL_STATE(6278)] = 168985, + [SMALL_STATE(6279)] = 168997, + [SMALL_STATE(6280)] = 169011, + [SMALL_STATE(6281)] = 169025, + [SMALL_STATE(6282)] = 169039, + [SMALL_STATE(6283)] = 169053, + [SMALL_STATE(6284)] = 169067, + [SMALL_STATE(6285)] = 169081, + [SMALL_STATE(6286)] = 169095, + [SMALL_STATE(6287)] = 169109, + [SMALL_STATE(6288)] = 169123, + [SMALL_STATE(6289)] = 169133, + [SMALL_STATE(6290)] = 169147, + [SMALL_STATE(6291)] = 169161, + [SMALL_STATE(6292)] = 169175, + [SMALL_STATE(6293)] = 169189, + [SMALL_STATE(6294)] = 169203, + [SMALL_STATE(6295)] = 169217, + [SMALL_STATE(6296)] = 169231, + [SMALL_STATE(6297)] = 169245, + [SMALL_STATE(6298)] = 169259, + [SMALL_STATE(6299)] = 169273, + [SMALL_STATE(6300)] = 169287, + [SMALL_STATE(6301)] = 169301, + [SMALL_STATE(6302)] = 169315, + [SMALL_STATE(6303)] = 169329, + [SMALL_STATE(6304)] = 169343, + [SMALL_STATE(6305)] = 169357, + [SMALL_STATE(6306)] = 169371, + [SMALL_STATE(6307)] = 169385, + [SMALL_STATE(6308)] = 169397, + [SMALL_STATE(6309)] = 169411, + [SMALL_STATE(6310)] = 169425, + [SMALL_STATE(6311)] = 169439, + [SMALL_STATE(6312)] = 169453, + [SMALL_STATE(6313)] = 169467, + [SMALL_STATE(6314)] = 169481, + [SMALL_STATE(6315)] = 169495, + [SMALL_STATE(6316)] = 169509, + [SMALL_STATE(6317)] = 169523, + [SMALL_STATE(6318)] = 169533, + [SMALL_STATE(6319)] = 169547, + [SMALL_STATE(6320)] = 169561, + [SMALL_STATE(6321)] = 169575, + [SMALL_STATE(6322)] = 169589, + [SMALL_STATE(6323)] = 169603, + [SMALL_STATE(6324)] = 169617, + [SMALL_STATE(6325)] = 169631, + [SMALL_STATE(6326)] = 169645, + [SMALL_STATE(6327)] = 169659, + [SMALL_STATE(6328)] = 169673, + [SMALL_STATE(6329)] = 169687, + [SMALL_STATE(6330)] = 169697, + [SMALL_STATE(6331)] = 169711, + [SMALL_STATE(6332)] = 169725, + [SMALL_STATE(6333)] = 169739, + [SMALL_STATE(6334)] = 169753, + [SMALL_STATE(6335)] = 169767, + [SMALL_STATE(6336)] = 169781, + [SMALL_STATE(6337)] = 169795, + [SMALL_STATE(6338)] = 169809, + [SMALL_STATE(6339)] = 169823, + [SMALL_STATE(6340)] = 169837, + [SMALL_STATE(6341)] = 169851, + [SMALL_STATE(6342)] = 169865, + [SMALL_STATE(6343)] = 169879, + [SMALL_STATE(6344)] = 169893, + [SMALL_STATE(6345)] = 169907, + [SMALL_STATE(6346)] = 169921, + [SMALL_STATE(6347)] = 169935, + [SMALL_STATE(6348)] = 169949, + [SMALL_STATE(6349)] = 169963, + [SMALL_STATE(6350)] = 169977, + [SMALL_STATE(6351)] = 169991, + [SMALL_STATE(6352)] = 170005, + [SMALL_STATE(6353)] = 170019, + [SMALL_STATE(6354)] = 170033, + [SMALL_STATE(6355)] = 170047, + [SMALL_STATE(6356)] = 170061, + [SMALL_STATE(6357)] = 170075, + [SMALL_STATE(6358)] = 170089, + [SMALL_STATE(6359)] = 170103, + [SMALL_STATE(6360)] = 170117, + [SMALL_STATE(6361)] = 170129, + [SMALL_STATE(6362)] = 170143, + [SMALL_STATE(6363)] = 170157, + [SMALL_STATE(6364)] = 170171, + [SMALL_STATE(6365)] = 170185, + [SMALL_STATE(6366)] = 170199, + [SMALL_STATE(6367)] = 170213, + [SMALL_STATE(6368)] = 170227, + [SMALL_STATE(6369)] = 170241, + [SMALL_STATE(6370)] = 170255, + [SMALL_STATE(6371)] = 170269, + [SMALL_STATE(6372)] = 170283, + [SMALL_STATE(6373)] = 170297, + [SMALL_STATE(6374)] = 170311, + [SMALL_STATE(6375)] = 170325, + [SMALL_STATE(6376)] = 170339, + [SMALL_STATE(6377)] = 170353, + [SMALL_STATE(6378)] = 170367, + [SMALL_STATE(6379)] = 170381, + [SMALL_STATE(6380)] = 170395, + [SMALL_STATE(6381)] = 170409, + [SMALL_STATE(6382)] = 170423, + [SMALL_STATE(6383)] = 170437, + [SMALL_STATE(6384)] = 170451, + [SMALL_STATE(6385)] = 170465, + [SMALL_STATE(6386)] = 170477, + [SMALL_STATE(6387)] = 170489, + [SMALL_STATE(6388)] = 170503, + [SMALL_STATE(6389)] = 170517, + [SMALL_STATE(6390)] = 170531, + [SMALL_STATE(6391)] = 170545, + [SMALL_STATE(6392)] = 170559, + [SMALL_STATE(6393)] = 170573, + [SMALL_STATE(6394)] = 170587, + [SMALL_STATE(6395)] = 170601, + [SMALL_STATE(6396)] = 170615, + [SMALL_STATE(6397)] = 170629, + [SMALL_STATE(6398)] = 170643, + [SMALL_STATE(6399)] = 170657, + [SMALL_STATE(6400)] = 170671, + [SMALL_STATE(6401)] = 170685, + [SMALL_STATE(6402)] = 170699, + [SMALL_STATE(6403)] = 170713, + [SMALL_STATE(6404)] = 170727, + [SMALL_STATE(6405)] = 170741, + [SMALL_STATE(6406)] = 170755, + [SMALL_STATE(6407)] = 170765, + [SMALL_STATE(6408)] = 170779, + [SMALL_STATE(6409)] = 170793, + [SMALL_STATE(6410)] = 170807, + [SMALL_STATE(6411)] = 170821, + [SMALL_STATE(6412)] = 170835, + [SMALL_STATE(6413)] = 170849, + [SMALL_STATE(6414)] = 170863, + [SMALL_STATE(6415)] = 170877, + [SMALL_STATE(6416)] = 170891, + [SMALL_STATE(6417)] = 170905, + [SMALL_STATE(6418)] = 170919, + [SMALL_STATE(6419)] = 170933, + [SMALL_STATE(6420)] = 170947, + [SMALL_STATE(6421)] = 170961, + [SMALL_STATE(6422)] = 170975, + [SMALL_STATE(6423)] = 170989, + [SMALL_STATE(6424)] = 171003, + [SMALL_STATE(6425)] = 171017, + [SMALL_STATE(6426)] = 171031, + [SMALL_STATE(6427)] = 171045, + [SMALL_STATE(6428)] = 171059, + [SMALL_STATE(6429)] = 171071, + [SMALL_STATE(6430)] = 171085, + [SMALL_STATE(6431)] = 171097, + [SMALL_STATE(6432)] = 171111, + [SMALL_STATE(6433)] = 171125, + [SMALL_STATE(6434)] = 171139, + [SMALL_STATE(6435)] = 171153, + [SMALL_STATE(6436)] = 171167, + [SMALL_STATE(6437)] = 171181, + [SMALL_STATE(6438)] = 171195, + [SMALL_STATE(6439)] = 171209, + [SMALL_STATE(6440)] = 171223, + [SMALL_STATE(6441)] = 171237, + [SMALL_STATE(6442)] = 171251, + [SMALL_STATE(6443)] = 171265, + [SMALL_STATE(6444)] = 171279, + [SMALL_STATE(6445)] = 171293, + [SMALL_STATE(6446)] = 171307, + [SMALL_STATE(6447)] = 171321, + [SMALL_STATE(6448)] = 171335, + [SMALL_STATE(6449)] = 171349, + [SMALL_STATE(6450)] = 171363, + [SMALL_STATE(6451)] = 171377, + [SMALL_STATE(6452)] = 171391, + [SMALL_STATE(6453)] = 171405, + [SMALL_STATE(6454)] = 171419, + [SMALL_STATE(6455)] = 171433, + [SMALL_STATE(6456)] = 171447, + [SMALL_STATE(6457)] = 171461, + [SMALL_STATE(6458)] = 171475, + [SMALL_STATE(6459)] = 171489, + [SMALL_STATE(6460)] = 171503, + [SMALL_STATE(6461)] = 171517, + [SMALL_STATE(6462)] = 171531, + [SMALL_STATE(6463)] = 171545, + [SMALL_STATE(6464)] = 171559, + [SMALL_STATE(6465)] = 171573, + [SMALL_STATE(6466)] = 171587, + [SMALL_STATE(6467)] = 171601, + [SMALL_STATE(6468)] = 171615, + [SMALL_STATE(6469)] = 171629, + [SMALL_STATE(6470)] = 171643, + [SMALL_STATE(6471)] = 171657, + [SMALL_STATE(6472)] = 171671, + [SMALL_STATE(6473)] = 171685, + [SMALL_STATE(6474)] = 171699, + [SMALL_STATE(6475)] = 171713, + [SMALL_STATE(6476)] = 171727, + [SMALL_STATE(6477)] = 171741, + [SMALL_STATE(6478)] = 171755, + [SMALL_STATE(6479)] = 171769, + [SMALL_STATE(6480)] = 171783, + [SMALL_STATE(6481)] = 171797, + [SMALL_STATE(6482)] = 171811, + [SMALL_STATE(6483)] = 171825, + [SMALL_STATE(6484)] = 171839, + [SMALL_STATE(6485)] = 171853, + [SMALL_STATE(6486)] = 171867, + [SMALL_STATE(6487)] = 171881, + [SMALL_STATE(6488)] = 171895, + [SMALL_STATE(6489)] = 171907, + [SMALL_STATE(6490)] = 171921, + [SMALL_STATE(6491)] = 171935, + [SMALL_STATE(6492)] = 171949, + [SMALL_STATE(6493)] = 171963, + [SMALL_STATE(6494)] = 171977, + [SMALL_STATE(6495)] = 171991, + [SMALL_STATE(6496)] = 172003, + [SMALL_STATE(6497)] = 172017, + [SMALL_STATE(6498)] = 172031, + [SMALL_STATE(6499)] = 172045, + [SMALL_STATE(6500)] = 172057, + [SMALL_STATE(6501)] = 172071, + [SMALL_STATE(6502)] = 172085, + [SMALL_STATE(6503)] = 172099, + [SMALL_STATE(6504)] = 172113, + [SMALL_STATE(6505)] = 172127, + [SMALL_STATE(6506)] = 172139, + [SMALL_STATE(6507)] = 172153, + [SMALL_STATE(6508)] = 172167, + [SMALL_STATE(6509)] = 172181, + [SMALL_STATE(6510)] = 172195, + [SMALL_STATE(6511)] = 172209, + [SMALL_STATE(6512)] = 172223, + [SMALL_STATE(6513)] = 172237, + [SMALL_STATE(6514)] = 172251, + [SMALL_STATE(6515)] = 172265, + [SMALL_STATE(6516)] = 172279, + [SMALL_STATE(6517)] = 172293, + [SMALL_STATE(6518)] = 172307, + [SMALL_STATE(6519)] = 172321, + [SMALL_STATE(6520)] = 172335, + [SMALL_STATE(6521)] = 172349, + [SMALL_STATE(6522)] = 172363, + [SMALL_STATE(6523)] = 172377, + [SMALL_STATE(6524)] = 172391, + [SMALL_STATE(6525)] = 172405, + [SMALL_STATE(6526)] = 172419, + [SMALL_STATE(6527)] = 172433, + [SMALL_STATE(6528)] = 172447, + [SMALL_STATE(6529)] = 172461, + [SMALL_STATE(6530)] = 172475, + [SMALL_STATE(6531)] = 172489, + [SMALL_STATE(6532)] = 172499, + [SMALL_STATE(6533)] = 172513, + [SMALL_STATE(6534)] = 172527, + [SMALL_STATE(6535)] = 172541, + [SMALL_STATE(6536)] = 172555, + [SMALL_STATE(6537)] = 172569, + [SMALL_STATE(6538)] = 172583, + [SMALL_STATE(6539)] = 172597, + [SMALL_STATE(6540)] = 172611, + [SMALL_STATE(6541)] = 172625, + [SMALL_STATE(6542)] = 172639, + [SMALL_STATE(6543)] = 172651, + [SMALL_STATE(6544)] = 172663, + [SMALL_STATE(6545)] = 172677, + [SMALL_STATE(6546)] = 172691, + [SMALL_STATE(6547)] = 172705, + [SMALL_STATE(6548)] = 172719, + [SMALL_STATE(6549)] = 172733, + [SMALL_STATE(6550)] = 172747, + [SMALL_STATE(6551)] = 172761, + [SMALL_STATE(6552)] = 172775, + [SMALL_STATE(6553)] = 172787, + [SMALL_STATE(6554)] = 172799, + [SMALL_STATE(6555)] = 172813, + [SMALL_STATE(6556)] = 172827, + [SMALL_STATE(6557)] = 172841, + [SMALL_STATE(6558)] = 172855, + [SMALL_STATE(6559)] = 172869, + [SMALL_STATE(6560)] = 172883, + [SMALL_STATE(6561)] = 172897, + [SMALL_STATE(6562)] = 172911, + [SMALL_STATE(6563)] = 172925, + [SMALL_STATE(6564)] = 172939, + [SMALL_STATE(6565)] = 172953, + [SMALL_STATE(6566)] = 172967, + [SMALL_STATE(6567)] = 172979, + [SMALL_STATE(6568)] = 172993, + [SMALL_STATE(6569)] = 173007, + [SMALL_STATE(6570)] = 173021, + [SMALL_STATE(6571)] = 173035, + [SMALL_STATE(6572)] = 173049, + [SMALL_STATE(6573)] = 173063, + [SMALL_STATE(6574)] = 173077, + [SMALL_STATE(6575)] = 173091, + [SMALL_STATE(6576)] = 173105, + [SMALL_STATE(6577)] = 173119, + [SMALL_STATE(6578)] = 173133, + [SMALL_STATE(6579)] = 173145, + [SMALL_STATE(6580)] = 173159, + [SMALL_STATE(6581)] = 173173, + [SMALL_STATE(6582)] = 173187, + [SMALL_STATE(6583)] = 173199, + [SMALL_STATE(6584)] = 173213, + [SMALL_STATE(6585)] = 173227, + [SMALL_STATE(6586)] = 173241, + [SMALL_STATE(6587)] = 173255, + [SMALL_STATE(6588)] = 173269, + [SMALL_STATE(6589)] = 173283, + [SMALL_STATE(6590)] = 173297, + [SMALL_STATE(6591)] = 173311, + [SMALL_STATE(6592)] = 173325, + [SMALL_STATE(6593)] = 173339, + [SMALL_STATE(6594)] = 173353, + [SMALL_STATE(6595)] = 173363, + [SMALL_STATE(6596)] = 173373, + [SMALL_STATE(6597)] = 173387, + [SMALL_STATE(6598)] = 173401, + [SMALL_STATE(6599)] = 173415, + [SMALL_STATE(6600)] = 173427, + [SMALL_STATE(6601)] = 173441, + [SMALL_STATE(6602)] = 173455, + [SMALL_STATE(6603)] = 173469, + [SMALL_STATE(6604)] = 173483, + [SMALL_STATE(6605)] = 173497, + [SMALL_STATE(6606)] = 173511, + [SMALL_STATE(6607)] = 173525, + [SMALL_STATE(6608)] = 173539, + [SMALL_STATE(6609)] = 173553, + [SMALL_STATE(6610)] = 173567, + [SMALL_STATE(6611)] = 173577, + [SMALL_STATE(6612)] = 173591, + [SMALL_STATE(6613)] = 173605, + [SMALL_STATE(6614)] = 173619, + [SMALL_STATE(6615)] = 173633, + [SMALL_STATE(6616)] = 173647, + [SMALL_STATE(6617)] = 173659, + [SMALL_STATE(6618)] = 173673, + [SMALL_STATE(6619)] = 173687, + [SMALL_STATE(6620)] = 173701, + [SMALL_STATE(6621)] = 173715, + [SMALL_STATE(6622)] = 173729, + [SMALL_STATE(6623)] = 173743, + [SMALL_STATE(6624)] = 173757, + [SMALL_STATE(6625)] = 173771, + [SMALL_STATE(6626)] = 173785, + [SMALL_STATE(6627)] = 173799, + [SMALL_STATE(6628)] = 173813, + [SMALL_STATE(6629)] = 173827, + [SMALL_STATE(6630)] = 173841, + [SMALL_STATE(6631)] = 173855, + [SMALL_STATE(6632)] = 173869, + [SMALL_STATE(6633)] = 173883, + [SMALL_STATE(6634)] = 173897, + [SMALL_STATE(6635)] = 173911, + [SMALL_STATE(6636)] = 173925, + [SMALL_STATE(6637)] = 173939, + [SMALL_STATE(6638)] = 173953, + [SMALL_STATE(6639)] = 173962, + [SMALL_STATE(6640)] = 173973, + [SMALL_STATE(6641)] = 173984, + [SMALL_STATE(6642)] = 173995, + [SMALL_STATE(6643)] = 174006, + [SMALL_STATE(6644)] = 174017, + [SMALL_STATE(6645)] = 174028, + [SMALL_STATE(6646)] = 174039, + [SMALL_STATE(6647)] = 174048, + [SMALL_STATE(6648)] = 174059, + [SMALL_STATE(6649)] = 174068, + [SMALL_STATE(6650)] = 174079, + [SMALL_STATE(6651)] = 174088, + [SMALL_STATE(6652)] = 174099, + [SMALL_STATE(6653)] = 174110, + [SMALL_STATE(6654)] = 174119, + [SMALL_STATE(6655)] = 174128, + [SMALL_STATE(6656)] = 174139, + [SMALL_STATE(6657)] = 174150, + [SMALL_STATE(6658)] = 174159, + [SMALL_STATE(6659)] = 174170, + [SMALL_STATE(6660)] = 174179, + [SMALL_STATE(6661)] = 174188, + [SMALL_STATE(6662)] = 174197, + [SMALL_STATE(6663)] = 174208, + [SMALL_STATE(6664)] = 174217, + [SMALL_STATE(6665)] = 174226, + [SMALL_STATE(6666)] = 174237, + [SMALL_STATE(6667)] = 174246, + [SMALL_STATE(6668)] = 174257, + [SMALL_STATE(6669)] = 174268, + [SMALL_STATE(6670)] = 174277, + [SMALL_STATE(6671)] = 174286, + [SMALL_STATE(6672)] = 174295, + [SMALL_STATE(6673)] = 174304, + [SMALL_STATE(6674)] = 174315, + [SMALL_STATE(6675)] = 174326, + [SMALL_STATE(6676)] = 174337, + [SMALL_STATE(6677)] = 174348, + [SMALL_STATE(6678)] = 174357, + [SMALL_STATE(6679)] = 174368, + [SMALL_STATE(6680)] = 174379, + [SMALL_STATE(6681)] = 174390, + [SMALL_STATE(6682)] = 174401, + [SMALL_STATE(6683)] = 174412, + [SMALL_STATE(6684)] = 174421, + [SMALL_STATE(6685)] = 174430, + [SMALL_STATE(6686)] = 174441, + [SMALL_STATE(6687)] = 174452, + [SMALL_STATE(6688)] = 174463, + [SMALL_STATE(6689)] = 174472, + [SMALL_STATE(6690)] = 174483, + [SMALL_STATE(6691)] = 174492, + [SMALL_STATE(6692)] = 174501, + [SMALL_STATE(6693)] = 174512, + [SMALL_STATE(6694)] = 174523, + [SMALL_STATE(6695)] = 174534, + [SMALL_STATE(6696)] = 174545, + [SMALL_STATE(6697)] = 174554, + [SMALL_STATE(6698)] = 174563, + [SMALL_STATE(6699)] = 174574, + [SMALL_STATE(6700)] = 174585, + [SMALL_STATE(6701)] = 174596, + [SMALL_STATE(6702)] = 174607, + [SMALL_STATE(6703)] = 174616, + [SMALL_STATE(6704)] = 174625, + [SMALL_STATE(6705)] = 174636, + [SMALL_STATE(6706)] = 174647, + [SMALL_STATE(6707)] = 174656, + [SMALL_STATE(6708)] = 174665, + [SMALL_STATE(6709)] = 174676, + [SMALL_STATE(6710)] = 174687, + [SMALL_STATE(6711)] = 174698, + [SMALL_STATE(6712)] = 174709, + [SMALL_STATE(6713)] = 174720, + [SMALL_STATE(6714)] = 174731, + [SMALL_STATE(6715)] = 174740, + [SMALL_STATE(6716)] = 174751, + [SMALL_STATE(6717)] = 174762, + [SMALL_STATE(6718)] = 174773, + [SMALL_STATE(6719)] = 174784, + [SMALL_STATE(6720)] = 174795, + [SMALL_STATE(6721)] = 174806, + [SMALL_STATE(6722)] = 174817, + [SMALL_STATE(6723)] = 174826, + [SMALL_STATE(6724)] = 174837, + [SMALL_STATE(6725)] = 174848, + [SMALL_STATE(6726)] = 174857, + [SMALL_STATE(6727)] = 174866, + [SMALL_STATE(6728)] = 174875, + [SMALL_STATE(6729)] = 174884, + [SMALL_STATE(6730)] = 174895, + [SMALL_STATE(6731)] = 174906, + [SMALL_STATE(6732)] = 174917, + [SMALL_STATE(6733)] = 174926, + [SMALL_STATE(6734)] = 174937, + [SMALL_STATE(6735)] = 174948, + [SMALL_STATE(6736)] = 174957, + [SMALL_STATE(6737)] = 174966, + [SMALL_STATE(6738)] = 174975, + [SMALL_STATE(6739)] = 174984, + [SMALL_STATE(6740)] = 174993, + [SMALL_STATE(6741)] = 175002, + [SMALL_STATE(6742)] = 175013, + [SMALL_STATE(6743)] = 175024, + [SMALL_STATE(6744)] = 175035, + [SMALL_STATE(6745)] = 175046, + [SMALL_STATE(6746)] = 175057, + [SMALL_STATE(6747)] = 175068, + [SMALL_STATE(6748)] = 175079, + [SMALL_STATE(6749)] = 175090, + [SMALL_STATE(6750)] = 175101, + [SMALL_STATE(6751)] = 175112, + [SMALL_STATE(6752)] = 175121, + [SMALL_STATE(6753)] = 175132, + [SMALL_STATE(6754)] = 175143, + [SMALL_STATE(6755)] = 175154, + [SMALL_STATE(6756)] = 175163, + [SMALL_STATE(6757)] = 175174, + [SMALL_STATE(6758)] = 175183, + [SMALL_STATE(6759)] = 175194, + [SMALL_STATE(6760)] = 175205, + [SMALL_STATE(6761)] = 175216, + [SMALL_STATE(6762)] = 175227, + [SMALL_STATE(6763)] = 175238, + [SMALL_STATE(6764)] = 175249, + [SMALL_STATE(6765)] = 175260, + [SMALL_STATE(6766)] = 175271, + [SMALL_STATE(6767)] = 175282, + [SMALL_STATE(6768)] = 175291, + [SMALL_STATE(6769)] = 175302, + [SMALL_STATE(6770)] = 175313, + [SMALL_STATE(6771)] = 175324, + [SMALL_STATE(6772)] = 175333, + [SMALL_STATE(6773)] = 175344, + [SMALL_STATE(6774)] = 175353, + [SMALL_STATE(6775)] = 175364, + [SMALL_STATE(6776)] = 175375, + [SMALL_STATE(6777)] = 175386, + [SMALL_STATE(6778)] = 175395, + [SMALL_STATE(6779)] = 175406, + [SMALL_STATE(6780)] = 175415, + [SMALL_STATE(6781)] = 175426, + [SMALL_STATE(6782)] = 175437, + [SMALL_STATE(6783)] = 175448, + [SMALL_STATE(6784)] = 175459, + [SMALL_STATE(6785)] = 175468, + [SMALL_STATE(6786)] = 175477, + [SMALL_STATE(6787)] = 175488, + [SMALL_STATE(6788)] = 175499, + [SMALL_STATE(6789)] = 175510, + [SMALL_STATE(6790)] = 175521, + [SMALL_STATE(6791)] = 175532, + [SMALL_STATE(6792)] = 175543, + [SMALL_STATE(6793)] = 175552, + [SMALL_STATE(6794)] = 175563, + [SMALL_STATE(6795)] = 175572, + [SMALL_STATE(6796)] = 175583, + [SMALL_STATE(6797)] = 175594, + [SMALL_STATE(6798)] = 175605, + [SMALL_STATE(6799)] = 175616, + [SMALL_STATE(6800)] = 175627, + [SMALL_STATE(6801)] = 175638, + [SMALL_STATE(6802)] = 175649, + [SMALL_STATE(6803)] = 175660, + [SMALL_STATE(6804)] = 175669, + [SMALL_STATE(6805)] = 175680, + [SMALL_STATE(6806)] = 175691, + [SMALL_STATE(6807)] = 175702, + [SMALL_STATE(6808)] = 175713, + [SMALL_STATE(6809)] = 175724, + [SMALL_STATE(6810)] = 175735, + [SMALL_STATE(6811)] = 175744, + [SMALL_STATE(6812)] = 175753, + [SMALL_STATE(6813)] = 175762, + [SMALL_STATE(6814)] = 175773, + [SMALL_STATE(6815)] = 175784, + [SMALL_STATE(6816)] = 175795, + [SMALL_STATE(6817)] = 175806, + [SMALL_STATE(6818)] = 175817, + [SMALL_STATE(6819)] = 175828, + [SMALL_STATE(6820)] = 175837, + [SMALL_STATE(6821)] = 175848, + [SMALL_STATE(6822)] = 175859, + [SMALL_STATE(6823)] = 175868, + [SMALL_STATE(6824)] = 175879, + [SMALL_STATE(6825)] = 175890, + [SMALL_STATE(6826)] = 175899, + [SMALL_STATE(6827)] = 175910, + [SMALL_STATE(6828)] = 175921, + [SMALL_STATE(6829)] = 175932, + [SMALL_STATE(6830)] = 175941, + [SMALL_STATE(6831)] = 175952, + [SMALL_STATE(6832)] = 175961, + [SMALL_STATE(6833)] = 175970, + [SMALL_STATE(6834)] = 175979, + [SMALL_STATE(6835)] = 175988, + [SMALL_STATE(6836)] = 175997, + [SMALL_STATE(6837)] = 176006, + [SMALL_STATE(6838)] = 176015, + [SMALL_STATE(6839)] = 176024, + [SMALL_STATE(6840)] = 176035, + [SMALL_STATE(6841)] = 176044, + [SMALL_STATE(6842)] = 176053, + [SMALL_STATE(6843)] = 176062, + [SMALL_STATE(6844)] = 176073, + [SMALL_STATE(6845)] = 176082, + [SMALL_STATE(6846)] = 176091, + [SMALL_STATE(6847)] = 176100, + [SMALL_STATE(6848)] = 176111, + [SMALL_STATE(6849)] = 176120, + [SMALL_STATE(6850)] = 176131, + [SMALL_STATE(6851)] = 176142, + [SMALL_STATE(6852)] = 176153, + [SMALL_STATE(6853)] = 176164, + [SMALL_STATE(6854)] = 176175, + [SMALL_STATE(6855)] = 176184, + [SMALL_STATE(6856)] = 176193, + [SMALL_STATE(6857)] = 176202, + [SMALL_STATE(6858)] = 176213, + [SMALL_STATE(6859)] = 176224, + [SMALL_STATE(6860)] = 176233, + [SMALL_STATE(6861)] = 176242, + [SMALL_STATE(6862)] = 176253, + [SMALL_STATE(6863)] = 176262, + [SMALL_STATE(6864)] = 176271, + [SMALL_STATE(6865)] = 176282, + [SMALL_STATE(6866)] = 176293, + [SMALL_STATE(6867)] = 176302, + [SMALL_STATE(6868)] = 176313, + [SMALL_STATE(6869)] = 176324, + [SMALL_STATE(6870)] = 176335, + [SMALL_STATE(6871)] = 176344, + [SMALL_STATE(6872)] = 176355, + [SMALL_STATE(6873)] = 176364, + [SMALL_STATE(6874)] = 176375, + [SMALL_STATE(6875)] = 176384, + [SMALL_STATE(6876)] = 176395, + [SMALL_STATE(6877)] = 176404, + [SMALL_STATE(6878)] = 176415, + [SMALL_STATE(6879)] = 176424, + [SMALL_STATE(6880)] = 176433, + [SMALL_STATE(6881)] = 176444, + [SMALL_STATE(6882)] = 176453, + [SMALL_STATE(6883)] = 176464, + [SMALL_STATE(6884)] = 176473, + [SMALL_STATE(6885)] = 176482, + [SMALL_STATE(6886)] = 176493, + [SMALL_STATE(6887)] = 176502, + [SMALL_STATE(6888)] = 176511, + [SMALL_STATE(6889)] = 176522, + [SMALL_STATE(6890)] = 176531, + [SMALL_STATE(6891)] = 176542, + [SMALL_STATE(6892)] = 176553, + [SMALL_STATE(6893)] = 176562, + [SMALL_STATE(6894)] = 176573, + [SMALL_STATE(6895)] = 176582, + [SMALL_STATE(6896)] = 176593, + [SMALL_STATE(6897)] = 176604, + [SMALL_STATE(6898)] = 176615, + [SMALL_STATE(6899)] = 176626, + [SMALL_STATE(6900)] = 176637, + [SMALL_STATE(6901)] = 176648, + [SMALL_STATE(6902)] = 176657, + [SMALL_STATE(6903)] = 176668, + [SMALL_STATE(6904)] = 176679, + [SMALL_STATE(6905)] = 176690, + [SMALL_STATE(6906)] = 176701, + [SMALL_STATE(6907)] = 176712, + [SMALL_STATE(6908)] = 176721, + [SMALL_STATE(6909)] = 176732, + [SMALL_STATE(6910)] = 176743, + [SMALL_STATE(6911)] = 176751, + [SMALL_STATE(6912)] = 176759, + [SMALL_STATE(6913)] = 176767, + [SMALL_STATE(6914)] = 176775, + [SMALL_STATE(6915)] = 176783, + [SMALL_STATE(6916)] = 176791, + [SMALL_STATE(6917)] = 176799, + [SMALL_STATE(6918)] = 176807, + [SMALL_STATE(6919)] = 176815, + [SMALL_STATE(6920)] = 176823, + [SMALL_STATE(6921)] = 176831, + [SMALL_STATE(6922)] = 176839, + [SMALL_STATE(6923)] = 176847, + [SMALL_STATE(6924)] = 176855, + [SMALL_STATE(6925)] = 176863, + [SMALL_STATE(6926)] = 176871, + [SMALL_STATE(6927)] = 176879, + [SMALL_STATE(6928)] = 176887, + [SMALL_STATE(6929)] = 176895, + [SMALL_STATE(6930)] = 176903, + [SMALL_STATE(6931)] = 176911, + [SMALL_STATE(6932)] = 176919, + [SMALL_STATE(6933)] = 176927, + [SMALL_STATE(6934)] = 176935, + [SMALL_STATE(6935)] = 176943, + [SMALL_STATE(6936)] = 176951, + [SMALL_STATE(6937)] = 176959, + [SMALL_STATE(6938)] = 176967, + [SMALL_STATE(6939)] = 176975, + [SMALL_STATE(6940)] = 176983, + [SMALL_STATE(6941)] = 176991, + [SMALL_STATE(6942)] = 176999, + [SMALL_STATE(6943)] = 177007, + [SMALL_STATE(6944)] = 177015, + [SMALL_STATE(6945)] = 177023, + [SMALL_STATE(6946)] = 177031, + [SMALL_STATE(6947)] = 177039, + [SMALL_STATE(6948)] = 177047, + [SMALL_STATE(6949)] = 177055, + [SMALL_STATE(6950)] = 177063, + [SMALL_STATE(6951)] = 177071, + [SMALL_STATE(6952)] = 177079, + [SMALL_STATE(6953)] = 177087, + [SMALL_STATE(6954)] = 177095, + [SMALL_STATE(6955)] = 177103, + [SMALL_STATE(6956)] = 177111, + [SMALL_STATE(6957)] = 177119, + [SMALL_STATE(6958)] = 177127, + [SMALL_STATE(6959)] = 177135, + [SMALL_STATE(6960)] = 177143, + [SMALL_STATE(6961)] = 177151, + [SMALL_STATE(6962)] = 177159, + [SMALL_STATE(6963)] = 177167, + [SMALL_STATE(6964)] = 177175, + [SMALL_STATE(6965)] = 177183, + [SMALL_STATE(6966)] = 177191, + [SMALL_STATE(6967)] = 177199, + [SMALL_STATE(6968)] = 177207, + [SMALL_STATE(6969)] = 177215, + [SMALL_STATE(6970)] = 177223, + [SMALL_STATE(6971)] = 177231, + [SMALL_STATE(6972)] = 177239, + [SMALL_STATE(6973)] = 177247, + [SMALL_STATE(6974)] = 177255, + [SMALL_STATE(6975)] = 177263, + [SMALL_STATE(6976)] = 177271, + [SMALL_STATE(6977)] = 177279, + [SMALL_STATE(6978)] = 177287, + [SMALL_STATE(6979)] = 177295, + [SMALL_STATE(6980)] = 177303, + [SMALL_STATE(6981)] = 177311, + [SMALL_STATE(6982)] = 177319, + [SMALL_STATE(6983)] = 177327, + [SMALL_STATE(6984)] = 177335, + [SMALL_STATE(6985)] = 177343, + [SMALL_STATE(6986)] = 177351, + [SMALL_STATE(6987)] = 177359, + [SMALL_STATE(6988)] = 177367, + [SMALL_STATE(6989)] = 177375, + [SMALL_STATE(6990)] = 177383, + [SMALL_STATE(6991)] = 177391, + [SMALL_STATE(6992)] = 177399, + [SMALL_STATE(6993)] = 177407, + [SMALL_STATE(6994)] = 177415, + [SMALL_STATE(6995)] = 177423, + [SMALL_STATE(6996)] = 177431, + [SMALL_STATE(6997)] = 177439, + [SMALL_STATE(6998)] = 177447, + [SMALL_STATE(6999)] = 177455, + [SMALL_STATE(7000)] = 177463, + [SMALL_STATE(7001)] = 177471, + [SMALL_STATE(7002)] = 177479, + [SMALL_STATE(7003)] = 177487, + [SMALL_STATE(7004)] = 177495, + [SMALL_STATE(7005)] = 177503, + [SMALL_STATE(7006)] = 177511, + [SMALL_STATE(7007)] = 177519, + [SMALL_STATE(7008)] = 177527, + [SMALL_STATE(7009)] = 177535, + [SMALL_STATE(7010)] = 177543, + [SMALL_STATE(7011)] = 177551, + [SMALL_STATE(7012)] = 177559, + [SMALL_STATE(7013)] = 177567, + [SMALL_STATE(7014)] = 177575, + [SMALL_STATE(7015)] = 177583, + [SMALL_STATE(7016)] = 177591, + [SMALL_STATE(7017)] = 177599, + [SMALL_STATE(7018)] = 177607, + [SMALL_STATE(7019)] = 177615, + [SMALL_STATE(7020)] = 177623, + [SMALL_STATE(7021)] = 177631, + [SMALL_STATE(7022)] = 177639, + [SMALL_STATE(7023)] = 177647, + [SMALL_STATE(7024)] = 177655, + [SMALL_STATE(7025)] = 177663, + [SMALL_STATE(7026)] = 177671, + [SMALL_STATE(7027)] = 177679, + [SMALL_STATE(7028)] = 177687, + [SMALL_STATE(7029)] = 177695, + [SMALL_STATE(7030)] = 177703, + [SMALL_STATE(7031)] = 177711, + [SMALL_STATE(7032)] = 177719, + [SMALL_STATE(7033)] = 177727, + [SMALL_STATE(7034)] = 177735, + [SMALL_STATE(7035)] = 177743, + [SMALL_STATE(7036)] = 177751, + [SMALL_STATE(7037)] = 177759, + [SMALL_STATE(7038)] = 177767, + [SMALL_STATE(7039)] = 177775, + [SMALL_STATE(7040)] = 177783, + [SMALL_STATE(7041)] = 177791, + [SMALL_STATE(7042)] = 177799, + [SMALL_STATE(7043)] = 177807, + [SMALL_STATE(7044)] = 177815, + [SMALL_STATE(7045)] = 177823, + [SMALL_STATE(7046)] = 177831, + [SMALL_STATE(7047)] = 177839, + [SMALL_STATE(7048)] = 177847, + [SMALL_STATE(7049)] = 177855, + [SMALL_STATE(7050)] = 177863, + [SMALL_STATE(7051)] = 177871, + [SMALL_STATE(7052)] = 177879, + [SMALL_STATE(7053)] = 177887, + [SMALL_STATE(7054)] = 177895, + [SMALL_STATE(7055)] = 177903, + [SMALL_STATE(7056)] = 177911, + [SMALL_STATE(7057)] = 177919, + [SMALL_STATE(7058)] = 177927, + [SMALL_STATE(7059)] = 177935, + [SMALL_STATE(7060)] = 177943, + [SMALL_STATE(7061)] = 177951, + [SMALL_STATE(7062)] = 177959, + [SMALL_STATE(7063)] = 177967, + [SMALL_STATE(7064)] = 177975, + [SMALL_STATE(7065)] = 177983, + [SMALL_STATE(7066)] = 177991, + [SMALL_STATE(7067)] = 177999, + [SMALL_STATE(7068)] = 178007, + [SMALL_STATE(7069)] = 178015, + [SMALL_STATE(7070)] = 178023, + [SMALL_STATE(7071)] = 178031, + [SMALL_STATE(7072)] = 178039, + [SMALL_STATE(7073)] = 178047, + [SMALL_STATE(7074)] = 178055, + [SMALL_STATE(7075)] = 178063, + [SMALL_STATE(7076)] = 178071, + [SMALL_STATE(7077)] = 178079, + [SMALL_STATE(7078)] = 178087, + [SMALL_STATE(7079)] = 178095, + [SMALL_STATE(7080)] = 178103, + [SMALL_STATE(7081)] = 178111, + [SMALL_STATE(7082)] = 178119, + [SMALL_STATE(7083)] = 178127, + [SMALL_STATE(7084)] = 178135, + [SMALL_STATE(7085)] = 178143, + [SMALL_STATE(7086)] = 178151, + [SMALL_STATE(7087)] = 178159, + [SMALL_STATE(7088)] = 178167, + [SMALL_STATE(7089)] = 178175, + [SMALL_STATE(7090)] = 178183, + [SMALL_STATE(7091)] = 178191, + [SMALL_STATE(7092)] = 178199, + [SMALL_STATE(7093)] = 178207, + [SMALL_STATE(7094)] = 178215, + [SMALL_STATE(7095)] = 178223, + [SMALL_STATE(7096)] = 178231, + [SMALL_STATE(7097)] = 178239, + [SMALL_STATE(7098)] = 178247, + [SMALL_STATE(7099)] = 178255, + [SMALL_STATE(7100)] = 178263, + [SMALL_STATE(7101)] = 178271, + [SMALL_STATE(7102)] = 178279, + [SMALL_STATE(7103)] = 178287, + [SMALL_STATE(7104)] = 178295, + [SMALL_STATE(7105)] = 178303, + [SMALL_STATE(7106)] = 178311, + [SMALL_STATE(7107)] = 178319, + [SMALL_STATE(7108)] = 178327, + [SMALL_STATE(7109)] = 178335, + [SMALL_STATE(7110)] = 178343, + [SMALL_STATE(7111)] = 178351, + [SMALL_STATE(7112)] = 178359, + [SMALL_STATE(7113)] = 178367, + [SMALL_STATE(7114)] = 178375, + [SMALL_STATE(7115)] = 178383, + [SMALL_STATE(7116)] = 178391, + [SMALL_STATE(7117)] = 178399, + [SMALL_STATE(7118)] = 178407, + [SMALL_STATE(7119)] = 178415, + [SMALL_STATE(7120)] = 178423, + [SMALL_STATE(7121)] = 178431, + [SMALL_STATE(7122)] = 178439, + [SMALL_STATE(7123)] = 178447, + [SMALL_STATE(7124)] = 178455, + [SMALL_STATE(7125)] = 178463, + [SMALL_STATE(7126)] = 178471, + [SMALL_STATE(7127)] = 178479, + [SMALL_STATE(7128)] = 178487, + [SMALL_STATE(7129)] = 178495, + [SMALL_STATE(7130)] = 178503, + [SMALL_STATE(7131)] = 178511, + [SMALL_STATE(7132)] = 178519, + [SMALL_STATE(7133)] = 178527, + [SMALL_STATE(7134)] = 178535, + [SMALL_STATE(7135)] = 178543, + [SMALL_STATE(7136)] = 178551, + [SMALL_STATE(7137)] = 178559, + [SMALL_STATE(7138)] = 178567, + [SMALL_STATE(7139)] = 178575, + [SMALL_STATE(7140)] = 178583, + [SMALL_STATE(7141)] = 178591, + [SMALL_STATE(7142)] = 178599, + [SMALL_STATE(7143)] = 178607, + [SMALL_STATE(7144)] = 178615, + [SMALL_STATE(7145)] = 178623, + [SMALL_STATE(7146)] = 178631, + [SMALL_STATE(7147)] = 178639, + [SMALL_STATE(7148)] = 178647, + [SMALL_STATE(7149)] = 178655, + [SMALL_STATE(7150)] = 178663, + [SMALL_STATE(7151)] = 178671, + [SMALL_STATE(7152)] = 178679, + [SMALL_STATE(7153)] = 178687, + [SMALL_STATE(7154)] = 178695, + [SMALL_STATE(7155)] = 178703, + [SMALL_STATE(7156)] = 178711, + [SMALL_STATE(7157)] = 178719, + [SMALL_STATE(7158)] = 178727, + [SMALL_STATE(7159)] = 178735, + [SMALL_STATE(7160)] = 178743, + [SMALL_STATE(7161)] = 178751, + [SMALL_STATE(7162)] = 178759, + [SMALL_STATE(7163)] = 178767, + [SMALL_STATE(7164)] = 178775, + [SMALL_STATE(7165)] = 178783, + [SMALL_STATE(7166)] = 178791, + [SMALL_STATE(7167)] = 178799, + [SMALL_STATE(7168)] = 178807, + [SMALL_STATE(7169)] = 178815, + [SMALL_STATE(7170)] = 178823, + [SMALL_STATE(7171)] = 178831, + [SMALL_STATE(7172)] = 178839, + [SMALL_STATE(7173)] = 178847, + [SMALL_STATE(7174)] = 178855, + [SMALL_STATE(7175)] = 178863, + [SMALL_STATE(7176)] = 178871, + [SMALL_STATE(7177)] = 178879, + [SMALL_STATE(7178)] = 178887, + [SMALL_STATE(7179)] = 178895, + [SMALL_STATE(7180)] = 178903, + [SMALL_STATE(7181)] = 178911, + [SMALL_STATE(7182)] = 178919, + [SMALL_STATE(7183)] = 178927, + [SMALL_STATE(7184)] = 178935, + [SMALL_STATE(7185)] = 178943, + [SMALL_STATE(7186)] = 178951, + [SMALL_STATE(7187)] = 178959, + [SMALL_STATE(7188)] = 178967, + [SMALL_STATE(7189)] = 178975, + [SMALL_STATE(7190)] = 178983, + [SMALL_STATE(7191)] = 178991, + [SMALL_STATE(7192)] = 178999, + [SMALL_STATE(7193)] = 179007, + [SMALL_STATE(7194)] = 179015, + [SMALL_STATE(7195)] = 179023, + [SMALL_STATE(7196)] = 179031, + [SMALL_STATE(7197)] = 179039, + [SMALL_STATE(7198)] = 179047, + [SMALL_STATE(7199)] = 179055, + [SMALL_STATE(7200)] = 179063, + [SMALL_STATE(7201)] = 179071, + [SMALL_STATE(7202)] = 179079, + [SMALL_STATE(7203)] = 179087, + [SMALL_STATE(7204)] = 179095, + [SMALL_STATE(7205)] = 179103, + [SMALL_STATE(7206)] = 179111, + [SMALL_STATE(7207)] = 179119, + [SMALL_STATE(7208)] = 179127, + [SMALL_STATE(7209)] = 179135, + [SMALL_STATE(7210)] = 179143, + [SMALL_STATE(7211)] = 179151, + [SMALL_STATE(7212)] = 179159, + [SMALL_STATE(7213)] = 179167, + [SMALL_STATE(7214)] = 179175, + [SMALL_STATE(7215)] = 179183, + [SMALL_STATE(7216)] = 179191, + [SMALL_STATE(7217)] = 179199, + [SMALL_STATE(7218)] = 179207, + [SMALL_STATE(7219)] = 179215, + [SMALL_STATE(7220)] = 179223, + [SMALL_STATE(7221)] = 179231, + [SMALL_STATE(7222)] = 179239, + [SMALL_STATE(7223)] = 179247, + [SMALL_STATE(7224)] = 179255, + [SMALL_STATE(7225)] = 179263, + [SMALL_STATE(7226)] = 179271, + [SMALL_STATE(7227)] = 179279, + [SMALL_STATE(7228)] = 179287, + [SMALL_STATE(7229)] = 179295, + [SMALL_STATE(7230)] = 179303, + [SMALL_STATE(7231)] = 179311, + [SMALL_STATE(7232)] = 179319, + [SMALL_STATE(7233)] = 179327, + [SMALL_STATE(7234)] = 179335, + [SMALL_STATE(7235)] = 179343, + [SMALL_STATE(7236)] = 179351, + [SMALL_STATE(7237)] = 179359, + [SMALL_STATE(7238)] = 179367, + [SMALL_STATE(7239)] = 179375, + [SMALL_STATE(7240)] = 179383, + [SMALL_STATE(7241)] = 179391, + [SMALL_STATE(7242)] = 179399, + [SMALL_STATE(7243)] = 179407, + [SMALL_STATE(7244)] = 179415, + [SMALL_STATE(7245)] = 179423, + [SMALL_STATE(7246)] = 179431, + [SMALL_STATE(7247)] = 179439, + [SMALL_STATE(7248)] = 179447, + [SMALL_STATE(7249)] = 179455, + [SMALL_STATE(7250)] = 179463, + [SMALL_STATE(7251)] = 179471, + [SMALL_STATE(7252)] = 179479, + [SMALL_STATE(7253)] = 179487, + [SMALL_STATE(7254)] = 179495, + [SMALL_STATE(7255)] = 179503, + [SMALL_STATE(7256)] = 179511, + [SMALL_STATE(7257)] = 179519, + [SMALL_STATE(7258)] = 179527, + [SMALL_STATE(7259)] = 179535, + [SMALL_STATE(7260)] = 179543, + [SMALL_STATE(7261)] = 179551, + [SMALL_STATE(7262)] = 179559, + [SMALL_STATE(7263)] = 179567, + [SMALL_STATE(7264)] = 179575, + [SMALL_STATE(7265)] = 179583, + [SMALL_STATE(7266)] = 179591, + [SMALL_STATE(7267)] = 179599, + [SMALL_STATE(7268)] = 179607, + [SMALL_STATE(7269)] = 179615, + [SMALL_STATE(7270)] = 179623, + [SMALL_STATE(7271)] = 179631, + [SMALL_STATE(7272)] = 179639, + [SMALL_STATE(7273)] = 179647, + [SMALL_STATE(7274)] = 179655, + [SMALL_STATE(7275)] = 179663, + [SMALL_STATE(7276)] = 179671, + [SMALL_STATE(7277)] = 179679, + [SMALL_STATE(7278)] = 179687, + [SMALL_STATE(7279)] = 179695, + [SMALL_STATE(7280)] = 179703, + [SMALL_STATE(7281)] = 179711, + [SMALL_STATE(7282)] = 179719, + [SMALL_STATE(7283)] = 179727, + [SMALL_STATE(7284)] = 179735, + [SMALL_STATE(7285)] = 179743, + [SMALL_STATE(7286)] = 179751, + [SMALL_STATE(7287)] = 179759, + [SMALL_STATE(7288)] = 179767, + [SMALL_STATE(7289)] = 179775, + [SMALL_STATE(7290)] = 179783, + [SMALL_STATE(7291)] = 179791, + [SMALL_STATE(7292)] = 179799, + [SMALL_STATE(7293)] = 179807, + [SMALL_STATE(7294)] = 179815, + [SMALL_STATE(7295)] = 179823, + [SMALL_STATE(7296)] = 179831, + [SMALL_STATE(7297)] = 179839, + [SMALL_STATE(7298)] = 179847, + [SMALL_STATE(7299)] = 179855, + [SMALL_STATE(7300)] = 179863, + [SMALL_STATE(7301)] = 179871, + [SMALL_STATE(7302)] = 179879, + [SMALL_STATE(7303)] = 179887, + [SMALL_STATE(7304)] = 179895, + [SMALL_STATE(7305)] = 179903, + [SMALL_STATE(7306)] = 179911, + [SMALL_STATE(7307)] = 179919, + [SMALL_STATE(7308)] = 179927, + [SMALL_STATE(7309)] = 179935, + [SMALL_STATE(7310)] = 179943, + [SMALL_STATE(7311)] = 179951, + [SMALL_STATE(7312)] = 179959, + [SMALL_STATE(7313)] = 179967, + [SMALL_STATE(7314)] = 179975, + [SMALL_STATE(7315)] = 179983, + [SMALL_STATE(7316)] = 179991, + [SMALL_STATE(7317)] = 179999, + [SMALL_STATE(7318)] = 180007, + [SMALL_STATE(7319)] = 180015, + [SMALL_STATE(7320)] = 180023, + [SMALL_STATE(7321)] = 180031, + [SMALL_STATE(7322)] = 180039, + [SMALL_STATE(7323)] = 180047, + [SMALL_STATE(7324)] = 180055, + [SMALL_STATE(7325)] = 180063, + [SMALL_STATE(7326)] = 180071, + [SMALL_STATE(7327)] = 180079, + [SMALL_STATE(7328)] = 180087, + [SMALL_STATE(7329)] = 180095, + [SMALL_STATE(7330)] = 180103, + [SMALL_STATE(7331)] = 180111, + [SMALL_STATE(7332)] = 180119, + [SMALL_STATE(7333)] = 180127, + [SMALL_STATE(7334)] = 180135, + [SMALL_STATE(7335)] = 180143, + [SMALL_STATE(7336)] = 180151, + [SMALL_STATE(7337)] = 180159, + [SMALL_STATE(7338)] = 180167, + [SMALL_STATE(7339)] = 180175, + [SMALL_STATE(7340)] = 180183, + [SMALL_STATE(7341)] = 180191, + [SMALL_STATE(7342)] = 180199, + [SMALL_STATE(7343)] = 180207, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -354154,5932 +370875,6126 @@ 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(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(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), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5403), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2264), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(928), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6751), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6739), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6833), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2499), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6993), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1042), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7016), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7116), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6946), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4522), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6641), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6873), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2542), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6923), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6131), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2526), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7164), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7166), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7292), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6912), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7168), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7293), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2527), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2911), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(754), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2305), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(755), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2373), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1836), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4522), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), [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), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 76), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 76), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 135), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 135), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 163), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 163), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 136), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 136), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 105), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 105), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2007), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1486), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 66), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 66), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(1715), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 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(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), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(2011), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 103), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 103), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(2014), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(1854), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 86), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 86), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 86), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 86), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 150), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 150), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 150), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 150), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 57), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 57), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 109), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 109), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 67), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 67), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 64), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 64), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 70), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 70), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 5, 0, 67), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 5, 0, 67), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 145), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 145), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 64), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 64), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 95), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 95), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 185), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 185), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 76), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 76), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 116), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 116), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 151), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 151), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 59), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 59), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 159), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 159), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 160), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 160), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 161), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 161), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 162), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 162), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 85), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 85), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 86), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 86), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 76), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 76), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 155), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 155), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 171), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 171), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 172), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 172), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 173), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 173), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 174), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 174), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 175), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 175), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 177), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 177), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 85), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 85), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 178), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 178), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 127), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 127), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 179), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 179), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 154), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 154), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 180), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 180), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 155), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 155), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 181), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 181), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 182), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 182), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 183), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 183), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 184), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 184), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 59), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 59), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 186), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 186), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 187), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 187), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 188), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 188), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 198), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 198), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 199), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 199), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 200), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 200), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 201), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 201), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 202), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 202), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 203), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 203), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 205), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 205), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 206), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 206), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 127), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 127), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 207), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 207), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 154), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 154), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 208), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 208), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 85), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 85), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 155), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 155), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 209), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 209), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 182), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 182), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 210), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 210), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 211), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 211), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 212), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 212), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 213), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 213), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 214), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 214), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 215), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 215), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 57), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 57), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 221), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 221), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 222), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 222), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 223), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 223), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 224), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 224), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 226), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 226), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 227), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 227), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 154), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 154), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 228), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 228), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 229), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 229), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 155), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 155), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 230), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 230), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 182), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 182), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 231), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 231), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 127), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 127), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 232), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 232), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 233), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 233), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 234), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 234), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 235), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 235), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 236), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 236), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 237), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 237), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 241), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 241), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 243), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 243), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 244), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 244), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 245), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 245), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 182), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 182), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 246), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 246), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 247), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 247), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 248), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 248), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 249), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 249), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 250), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 250), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 253), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 253), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 254), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 254), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 85), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 85), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 55), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 55), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 57), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 57), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 55), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 55), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 85), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 85), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 126), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 126), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 86), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 86), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 127), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 127), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 150), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 150), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 126), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 126), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 127), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 127), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 94), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 94), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 176), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 176), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 150), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 150), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 204), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 204), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 176), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 176), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 225), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 225), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 242), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 242), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 252), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 252), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 59), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 59), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 117), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 117), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 118), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 118), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 85), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 85), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 128), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 128), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 129), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 129), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 127), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 127), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 130), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 130), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 131), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 131), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 132), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 132), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 133), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 133), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 143), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 143), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 144), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 144), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 146), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 146), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 147), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 147), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 148), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 148), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 49), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 49), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 85), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 85), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 152), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 152), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 127), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 127), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 153), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 153), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 154), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 154), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 59), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 59), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 78), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 78), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 79), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 79), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 220), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 220), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 169), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 169), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 170), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 170), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 4, 0, 76), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 4, 0, 76), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 167), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 167), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 137), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 137), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 138), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 138), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 139), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 139), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 76), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 76), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 142), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 142), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 46), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 46), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 7, 0, 137), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 7, 0, 137), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 166), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 166), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 46), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 46), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 106), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 106), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 107), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 107), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 109), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 109), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 110), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 110), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 112), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 112), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 195), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 195), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 196), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 196), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 197), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 197), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 113), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 113), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 65), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 65), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 68), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 68), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 70), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 70), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 72), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 72), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 74), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 74), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 57), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 57), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 102), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 102), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 73), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 73), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 77), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 77), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 73), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 73), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 65), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 65), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 114), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 114), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 115), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 115), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 104), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 104), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 58), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 58), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 92), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 92), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 58), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 58), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 92), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 92), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4651), + [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4515), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(7004), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4586), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(7011), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(7012), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(7329), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4879), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4345), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6924), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4584), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2496), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4534), + [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4426), + [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4595), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6981), + [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), + [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7301), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), + [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2547), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2560), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), + [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2561), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [4934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2574), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2584), + [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2585), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2587), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2591), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2595), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2604), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2608), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2614), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2618), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2621), + [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 2, 0, 0), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 2, 0, 0), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2624), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2630), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 1, 0, 0), + [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 1, 0, 0), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2633), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4849), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2637), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), + [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_integer_type, 3, 0, 0), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_integer_type, 3, 0, 0), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4858), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [5551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2269), + [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(7181), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2256), + [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2269), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2329), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2252), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2329), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4889), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [5603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2378), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2247), + [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2378), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4844), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2746), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 3, 0, 0), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 3, 0, 0), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2259), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2254), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2259), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2284), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2253), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2284), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2290), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2257), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2290), + [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), + [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2294), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2242), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2294), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2300), + [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2245), + [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2300), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2395), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2255), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2395), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2803), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2804), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2360), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2251), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2360), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), + [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat4, 2, 0, 0), SHIFT_REPEAT(2830), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat2, 2, 0, 0), SHIFT_REPEAT(2915), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_repeat3, 2, 0, 0), SHIFT_REPEAT(2916), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2419), + [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2248), + [5973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2419), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(2988), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4869), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2483), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2250), + [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2483), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1620), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 53), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 53), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1471), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), + [6060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2463), + [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2243), + [6071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2463), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2340), + [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2246), + [6080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2340), + [6083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1613), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2286), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2249), + [6102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2286), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1814), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1604), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1648), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1915), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1578), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1806), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1587), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1761), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1627), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1655), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1641), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4345), + [6412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4584), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2496), + [6421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4534), + [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4426), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4595), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_from_relation, 1, 0, 0), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_from_relation, 1, 0, 0), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(3656), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [6653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4651), + [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4515), + [6669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), + [6675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4586), + [6681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), + [6684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [6701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), + [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [6707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), + [6710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1922), + [6750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1437), + [6753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1768), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1751), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_from_loop, 5, 0, 111), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_from_loop, 7, 0, 168), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1427), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1597), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_loop, 3, 0, 26), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [6913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_loop_repeat1, 2, 0, 0), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [6962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [6974] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(7087), + [6978] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3651), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [6990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [6999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), + [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [7009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(7087), + [7059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3651), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(7087), + [7077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3651), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [7092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [7103] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(7087), + [7107] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3651), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [7113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(7087), + [7116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3651), + [7119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4633), + [7122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4468), + [7125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4584), + [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [7131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4534), + [7134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4426), + [7137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(4402), + [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [7146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(7087), + [7149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3651), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [7196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [7198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7318), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [7237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [7246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [7249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [7273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [7285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), + [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), + [7310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(7087), + [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3651), + [7334] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(7087), + [7338] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3651), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(7087), + [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3651), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(7087), + [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3651), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(7087), + [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3651), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [7372] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(7087), + [7376] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3651), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [7399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), + [7405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), + [7413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), + [7419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [7424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [7439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7098), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7236), + [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [7456] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3651), + [7460] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3651), + [7464] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3651), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [7475] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3651), + [7479] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3651), + [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7152), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [7488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4870), + [7491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4870), + [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7169), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [7508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7132), + [7511] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3651), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [7522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7249), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [7660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [7663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 84), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 124), + [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 124), SHIFT(3651), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 125), + [7721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 125), SHIFT(3651), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), SHIFT(3651), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 124), + [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 124), SHIFT(3651), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 56), + [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 56), SHIFT(3651), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 125), + [7743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 84), SHIFT(3651), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 54), + [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 54), SHIFT(3651), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 149), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 149), + [7755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 149), SHIFT(3651), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 125), SHIFT(3651), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 84), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 84), SHIFT(3651), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3651), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 56), + [7787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 56), SHIFT(3651), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 54), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 149), SHIFT(3651), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3651), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3651), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), + [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), SHIFT(3651), + [7834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3651), + [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3651), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(839), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [7849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3651), + [7852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 54), SHIFT(3651), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5027), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5027), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3651), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(4834), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [7958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7214), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [8065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4928), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [8074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1500), + [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_repeat1, 2, 0, 0), SHIFT_REPEAT(4991), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(2047), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_from_loop, 7, 0, 111), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 59), + [8158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 59), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1366), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1392), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_from_loop, 9, 0, 168), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1352), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7140), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [8489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(7238), + [8492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(7013), + [8577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2219), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), + [8625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [8641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(6939), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1794), + [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 51), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1327), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1244), + [8694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1415), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(2021), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1340), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(6958), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(7307), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 91), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 136), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), + [9141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), + [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 123), + [9169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 163), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [9217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), + [9236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), + [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 134), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 134), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 97), + [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 97), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), + [9293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), + [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 82), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [9348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(2028), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 96), + [9369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 96), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 85), + [9389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 90), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 62), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 62), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 135), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [9432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1377), + [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 191), + [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 53), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [9576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 164), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1402), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [9679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(5681), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [9779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [9810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [9813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [9815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 189), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [9901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 164), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 189), + [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [9907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 191), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_for_clause, 3, 0, 0), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2766), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [9964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), + [10031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(6189), + [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [10086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 103), SHIFT_REPEAT(2783), + [10108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 103), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_for_clause, 2, 0, 0), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1714), + [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [10181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [10277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1738), + [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 85), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [10366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [10371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [10382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 61), + [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 61), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [10450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [10490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [10511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6995), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), SHIFT_REPEAT(989), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [10590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6738), + [10593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [10626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_loop, 4, 0, 71), + [10657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(4421), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(6865), + [10665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [10677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), + [10680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [10682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [10685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [10687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4428), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [10734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 52), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [10793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_loop_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [10858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [10891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [10906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [11063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(6778), + [11066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [11106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [11192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [11253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [11276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(6059), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 51), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [11359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 88), SHIFT_REPEAT(7215), + [11362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 88), + [11364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 190), SHIFT_REPEAT(3097), + [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 190), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [11375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [11393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [11404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [11409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [11432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [11458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [11460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [11517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [11574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 64), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [11582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [11592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), + [11596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 238), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [11602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 165), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [11612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 239), + [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 240), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [11646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [11650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [11676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), + [11678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 216), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), + [11720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), + [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [11776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 217), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [11786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [11826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [11830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [11870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 251), + [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [11874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [11876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 164), + [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [11888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 192), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [11896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 193), + [11898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 194), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [11902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 89), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [11920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [11924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), + [11926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 218), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [11934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 219), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [12606] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [12614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [12700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), }; enum ts_external_scanner_symbol_identifiers { @@ -360186,11 +377101,11 @@ static const bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { }, [14] = { [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, }, [15] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_RPAREN] = true, }, [16] = { [ts_external_token_comment] = true, diff --git a/test/corpus/cython.txt b/test/corpus/cython.txt index e0c1b64..8ab4877 100644 --- a/test/corpus/cython.txt +++ b/test/corpus/cython.txt @@ -230,7 +230,7 @@ cpdef int fibonacci(int n): (identifier) (integer))) (for_statement - (comparison_operator + (for_in_loop (identifier) (call (identifier) @@ -1102,26 +1102,6 @@ cdef extern from *: (maybe_typed_name (int_type))))))))))) ===================================== -For-from loop with "by" argument -===================================== -for i from 0 <= i < 10 by 2: - print(i) ---- -(module - (for_statement - (identifier) - (comparison_operator - (integer) - (identifier) - (integer)) - (integer) - (block - (expression_statement - (call - (identifier) - (argument_list - (identifier))))))) -===================================== IF statement ===================================== IF True: @@ -1187,3 +1167,17 @@ c'literal' (string_start) (string_content) (string_end)))) +===================================== +Comma-separated expressions in for loops +===================================== +for b in False, True: + pass +--- +(module + (for_statement + (for_in_loop + (identifier) + (false) + (true)) + (block + (pass_statement)))) diff --git a/test/corpus/forfrom.txt b/test/corpus/forfrom.txt new file mode 100644 index 0000000..7f847c4 --- /dev/null +++ b/test/corpus/forfrom.txt @@ -0,0 +1,217 @@ +===================================== +Basic for from loop +===================================== +for i from 0 <= i < 10: + pass + + +--- +(module + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)) + (block + (pass_statement)))) +===================================== +For from loop with increment +===================================== +for c from 0 <= c < 10 by .5: + pass +--- +(module + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer) + (float)) + (block + (pass_statement)))) +===================================== +For from loop with identifier bound +===================================== +bound = 10 +step = 1 + +for i from 0 <= i < bound: + pass + +for i from 0 <= i < bound by step: + pass + +for i from 0 <= i < 5+5 by get_step(): + pass + +for i from k * 42 <= i <= j / 18: + pass +--- +(module + (expression_statement + (assignment + (identifier) + (integer))) + (expression_statement + (assignment + (identifier) + (integer))) + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (identifier)) + (block + (pass_statement))) + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (identifier) + (identifier)) + (block + (pass_statement))) + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (binary_operator + (integer) + (integer)) + (call + (identifier) + (argument_list))) + (block + (pass_statement))) + (for_statement + (for_from_loop + (identifier) + (binary_operator + (identifier) + (integer)) + (for_from_relation) + (identifier) + (for_from_relation) + (binary_operator + (identifier) + (integer))) + (block + (pass_statement)))) +===================================== +For from with decrement +===================================== +for k from 10 > k > 0: + pass +--- +(module + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)) + (block + (pass_statement)))) +===================================== +For from with leq bounds +===================================== +for i from 0 <= i <= n: + pass +--- +(module + (for_statement + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (identifier)) + (block + (pass_statement)))) +===================================== +For from comprehension +===================================== +b = list(range(10)) +[b[i] for i from 0 <= i < 5] +{b[i] for i from 0 <= i < 5} +{i:b[i] for i from 0 <= i < 5} +[b[i] for 0 <= i < 5] +--- +(module + (expression_statement + (assignment + (identifier) + (call + (identifier) + (argument_list + (call + (identifier) + (argument_list + (integer))))))) + (expression_statement + (list_comprehension + (subscript + (identifier) + (identifier)) + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)))) + (expression_statement + (set_comprehension + (subscript + (identifier) + (identifier)) + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)))) + (expression_statement + (dictionary_comprehension + (pair + (identifier) + (subscript + (identifier) + (identifier))) + (for_from_loop + (identifier) + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)))) + (expression_statement + (list_comprehension + (subscript + (identifier) + (identifier)) + (for_from_loop + (integer) + (for_from_relation) + (identifier) + (for_from_relation) + (integer)))))